/* =========================================
   สไตล์เฉพาะสำหรับหน้า "ประวัติวิทยาลัย"
   ========================================= */

/* แถบสีน้ำเงินหัวหน้ากระดาษ (Page Header) */
.page-header {
    background-color: var(--primary-blue, #003399);
    color: white;
    padding: 60px 0;
    text-align: center;
    background-image: linear-gradient(rgba(0, 51, 153, 0.9), rgba(0, 51, 153, 0.9)), url('../images/banner1.jpg');
    background-size: cover;
    background-position: center;
}

.page-header h2 {
    font-size: 2.5rem;
    margin: 0 0 15px 0;
    color: #ffcc00;
}

/* Breadcrumb (เส้นทางหน้าเว็บ) */
.breadcrumb {
    font-size: 0.95rem;
    font-weight: 300;
}
.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}
.breadcrumb a:hover { color: #ffcc00; }
.breadcrumb .current { color: #ffcc00; font-weight: 400; }

/* ส่วนเนื้อหาหลัก */
.about-section {
    padding: 60px 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-indent: 40px; /* ย่อหน้าบรรทัดแรก */
}

.about-text .section-title {
    color: var(--primary-blue, #003399);
    font-size: 1.8rem;
    margin: 0 0 20px 0;
    border-left: 5px solid #ffcc00;
    padding-left: 15px;
}

/* กล่องคำคมปรัชญา */
.quote {
    font-size: 1.4rem !important;
    font-style: italic;
    color: #003399 !important;
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #eee;
    text-indent: 0 !important;
}

/* รูปภาพประกอบ */
.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #888;
    margin-top: 15px;
    font-style: italic;
}

/* สำหรับจอมือถือ */
@media screen and (max-width: 768px) {
    .about-grid { grid-template-columns: 1fr; }
    .page-header h2 { font-size: 2rem; }
    .about-image { position: static; }
}