/* -------------------------------------------------
   CAREER GUIDANCE UNIT SECTION (UPDATED STYLE)
---------------------------------------------------*/

.common-page {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
}

/* Title */
.cgu-title {
    text-align: center;
    font-size: 30px;
    font-weight: 700;
    color: #0A2A70;
    margin-bottom: 30px;
}

/* Section Block */
.cgu-block {
    margin-bottom: 40px;
}

/* Section Headings (same design as .section-title) */
.cgu-heading {
    font-size: 22px;
    color: #0a3d62;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 5px solid #0a3d62;
    padding-left: 10px;
}

/* Paragraphs */
.cgu-block p {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 12px;
}

/* Lists */
.cgu-list {
    list-style: disc;
    padding-left: 25px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.cgu-list li {
    margin-bottom: 6px;
    font-size: 16px;
    color: #333;
}

/* Staff Section (aligned with table-card style) */
.cgu-staff-title {
    font-size: 22px;
    color: #0a3d62;
    font-weight: 600;
    margin-bottom: 15px;
    border-left: 5px solid #0a3d62;
    padding-left: 10px;
}

/* Staff Grid */
.cgu-staff {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
    margin-top: 20px;
}

/* Staff Card */
.cgu-staff-card {
    background: #fff;
    border-left: 4px solid #0a3d62;
    padding: 20px 25px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cgu-staff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

.cgu-staff-card p {
    margin-bottom: 8px;
    font-size: 16px;
    color: #333;
}

/* Links */
.cgu-staff-card a {
    color: #0a2a70;
    font-weight: 600;
    text-decoration: none;
}

.cgu-staff-card a:hover {
    text-decoration: underline;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
    .cgu-title {
        font-size: 26px;
    }
    .cgu-heading,
    .cgu-staff-title {
        font-size: 20px;
    }
    .cgu-staff-card {
        padding: 18px;
    }
}
