
.ccm-section-header {
    text-align: center;
    margin-bottom: 48px;
}

.ccm-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 0;
    color: var(--ccm-heading);
}

.ccm-section-header p {
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    color: var(--ccm-body);
}

/* ── Buttons ── */
.ccm-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-family: var(--ccm-font);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: opacity .2s;
    border: none;
}

.ccm-btn:hover { opacity: .88; }

.ccm-btn--accent {
    background: var(--ccm-primary);
    color: var(--ccm-white) !important;
}

.ccm-btn:disabled,
.ccm-btn[disabled] {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

.ccm-btn--full { width: 100%; text-align: center; }

.ccm-btn--outline {
    background: transparent;
    color: var(--ccm-secondary);
    border: 2px solid var(--ccm-secondary);
}

.ccm-empty-notice { text-align: center; color: var(--ccm-body); }

/* ── Header ── */
.ccm-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--ccm-white);
    border-bottom: 1px solid var(--ccm-border);
    transition: box-shadow .2s;
    padding: 0 80px;
}

.ccm-header--sticky {
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
}

.ccm-header__inner {
    display: flex;
    /* width: 1216px; */
    height: 64px;
    padding: 12px 0;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.ccm-header__logo {
    flex-shrink: 0;
    text-decoration: none;
}

.ccm-header__logo img {
    height: 68px;
    width: auto;
    display: block;
}

.ccm-header__logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--ccm-heading);
    letter-spacing: -.5px;
}

/* .ccm-nav { flex: 1; } */

.ccm-nav__list {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
    list-style-type: none;
    padding: 0;
}

.ccm-nav__list li a {
    display: block;
    padding: 8px 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ccm-body);
    text-decoration: none;
    border-radius: 4px;
    transition: color .15s, background .15s;
}

.ccm-nav__list li a:hover,
.ccm-nav__list li.current-menu-item > a {
    color: var(--ccm-primary);
    background: rgba(0,0,0,.04);
}

/* ── Dropdown submenu — desktop ─────────────────────────────────────────── */
.ccm-nav__list .menu-item-has-children {
    position: relative;
}

.ccm-submenu-toggle,
.ccm-nav__close {
    display: none;
}

.ccm-nav__list .menu-item-has-children > a::after,
.ccm-nav__list .menu-item-has-children > .ccm-nav-link-row > a::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px;
    transition: transform 0.2s;
}

.ccm-nav__list .menu-item-has-children:hover > a::after,
.ccm-nav__list .menu-item-has-children:hover > .ccm-nav-link-row > a::after {
    transform: rotate(-135deg);
    top: 2px;
}

.ccm-nav__list .sub-menu {
    display: none;
    position: absolute;
    top: calc(90% + 0px);
    left: 0;
    min-width: 200px;
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
    padding: 6px 0;
    list-style: none;
    z-index: 1000;
}

.ccm-nav__list .menu-item-has-children:hover > .sub-menu {
    display: block;
}

.ccm-nav__list .sub-menu li a {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 0;
    white-space: nowrap;
}

.ccm-nav__list .sub-menu li a:hover {
    background: rgba(0,0,0,.04);
    color: var(--ccm-primary);
}

/* ── Level 3: sub-submenu flies out to the right ── */
.ccm-nav__list .sub-menu .menu-item-has-children {
    position: relative;
}

.ccm-nav__list .sub-menu .menu-item-has-children > a::after,
.ccm-nav__list .sub-menu .menu-item-has-children > .ccm-nav-link-row > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    margin-left: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    transition: transform 0.2s;
}

.ccm-nav__list .sub-menu .sub-menu {
    top: 0;
    left: 100%;
    margin-left: 2px;
    border-radius: 8px;
}

.ccm-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.ccm-header__cta {
    padding: 10px 20px;
    font-size: 14px;
}

/* Hamburger */
.ccm-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.ccm-hamburger__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ccm-heading);
    border-radius: 2px;
    transition: transform .25s, opacity .25s;
}

.ccm-hamburger--open .ccm-hamburger__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.ccm-hamburger--open .ccm-hamburger__bar:nth-child(2) {
    opacity: 0;
}
.ccm-hamburger--open .ccm-hamburger__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero ── */
.ccm-hero {
    position: relative;
    min-height: 520px;
    background: var(--ccm-heading) center/cover no-repeat;
    display: flex;
    align-items: center;
}

.ccm-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.65);
    z-index: 1;
}

.ccm-hero__inner {
    position: relative;
    z-index: 2;
    padding-top: 80px;
    padding-bottom: 80px;
}

.ccm-hero__content {
    max-width: 600px;
}

.ccm-hero__heading {
    font-size: 52px;
    font-weight: 800;
    color: var(--ccm-white);
    line-height: 1.15;
    margin: 0 0 20px;
}

.ccm-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin: 0 0 36px;
    line-height: 1.65;
    max-width: 520px;
}

.ccm-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Stats ── */
.ccm-stats {
    padding: 48px 0;
    background: var(--ccm-primary);
    color: var(--ccm-white);
}

.ccm-stats__heading {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--ccm-white);
    margin: 0 0 32px;
}

.ccm-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.ccm-stat__value {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
    color: var(--ccm-primary);
}

.ccm-stat__label {
    font-size: 14px;
    color: rgba(255,255,255,.8);
}

/* ── Courses ── */
.ccm-courses {
    border: 0 solid var(--ccm-surface);
    background: var(--ccm-surface);
 }

/* Department filter tabs */
.ccm-courses__filter {
    display: flex;
    overflow: scroll;
    align-items: center;
    gap: 8px;
    margin-bottom: 32px;
}

.ccm-courses__filter::-webkit-scrollbar {
  display: none;
}

.ccm-courses__grid {
        display: flex;
        overflow: scroll;
        gap: 28px;
    }
    .ccm-courses__grid::-webkit-scrollbar {
        display: none;
    }

.ccm-course-card_link{
    text-decoration: none;
    display: contents;
}

.ccm-courses__filter-btn {
    padding: 8px 20px;
    border-radius: 999px;
    font-family: var(--ccm-font);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 1px solid var(--ccm-border);
    background: var(--ccm-white);
    color: var(--ccm-body);
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    white-space: nowrap;
}

.ccm-courses__filter-btn:hover {
    border-color: var(--ccm-heading);
    color: var(--ccm-heading);
}

.ccm-courses__filter-btn--active {
    background: var(--ccm-heading);
    border-color: var(--ccm-heading);
    color: var(--ccm-white);
}

.ccm-courses__filter-btn--active:hover {
    background: var(--ccm-heading);
    color: var(--ccm-white);
}

/* Hidden card (filtered out) — double-class for specificity over .ccm-course-card { display:flex } */
.ccm-course-card.ccm-course-card--hidden {
    display: none;
}

/* Department badge on card */

.ccm-course-card {
    border-radius: 12px;
    border: 1px solid var(--ccm-border);
    background: var(--ccm-white);
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
    display: flex;
    flex-direction: column;
    min-width: 300px;
    max-width: 300px;
}

.ccm-course-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.09);
    transform: translateY(-2px);
}

.ccm-course-card__img {
    height: 190px;
    overflow: hidden;
    background: var(--ccm-surface);
}

.ccm-course-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s;
}

.ccm-course-card:hover .ccm-course-card__img img {
    transform: scale(1.04);
}

.ccm-course-card__img--placeholder {
    background: linear-gradient(135deg, var(--ccm-secondary) 0%, var(--ccm-primary) 100%);
}

.ccm-course-card__body {
    padding: 20px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.ccm-course-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0;
    line-height: 1.3;
}

.ccm-course-card__desc {
    font-size: 14px;
    color: var(--ccm-body);
    line-height: 1.6;
    margin: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ccm-course-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--ccm-border);
}

.ccm-course-card__spec {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ccm-secondary);
    background: rgba(30,58,95,.1);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 8px;
    width: fit-content;
}

.ccm-course-card__duration {
    font-size: 14px;
    font-weight: 600;
    color: var(--ccm-primary);
}

.ccm-course-card__link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: var(--ccm-heading);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ccm-course-card__link:hover { color: var(--ccm-primary); }

.ccm-course-card__fees {
    border-top: 1px solid var(--ccm-border);
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ccm-fee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.ccm-fee-row__label { color: var(--ccm-body); }

.ccm-fee-row__amount {
    font-weight: 600;
    color: var(--ccm-secondary);
}

.ccm-course-card__subs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px solid var(--ccm-border);
    padding-top: 12px;
}

.ccm-sub-chip {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    background: rgba(30,58,95,.07);
    color: var(--ccm-secondary);
    text-decoration: none;
    transition: background .15s;
}

a.ccm-sub-chip:hover {
    background: rgba(30,58,95,.15);
}

.ccm-badge {
    display: inline-block;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 20px;
    font-weight: 600;
    width: fit-content;
}

.ccm-badge--engineering { background: rgba(30,58,95,.12); color: var(--ccm-secondary); }
.ccm-badge--management  { background: rgba(245,158,11,.15); color: #b45309; }
.ccm-badge--other       { background: rgba(0,0,0,.07); color: var(--ccm-body); }

/* ── Why us ── */
.ccm-why { padding: 80px 0; background: var(--ccm-white); }

.ccm-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ccm-why__card {
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 32px 28px;
    background: var(--ccm-white);
    border-radius: 12px;
    border: 0 solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
    /* transition: box-shadow .2s, transform .2s; */
}



.ccm-why__icon-box {
    width: 52px;
    height: 52px;
    background: rgba(249, 115, 22, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ccm-primary);
    margin-bottom: 20px;
}

.ccm-why__icon-emoji {
    font-size: 28px;
    line-height: 1;
}

.ccm-why__icon-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.ccm-why__title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--ccm-heading);
}

.ccm-why__desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ccm-body);
    margin: 0;
}

/* Dots hidden on desktop; shown inside the 768px media query below */
.ccm-why__dots { display: none; }

/* ── Enquiry / CTA ── */
.ccm-enquiry {
    padding: 80px 0;
    background: var(--ccm-surface);
}

.ccm-enquiry__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.ccm-enquiry__cta h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--ccm-white);
    line-height: 1.2;
    margin: 0 0 20px;
}

.ccm-enquiry__cta p {
    font-size: 16px;
    color: rgba(255,255,255,.8);
    line-height: 1.7;
    margin: 0 0 32px;
}

.ccm-btn--outline-light {
    background: transparent;
    color: var(--ccm-primary);
    border: 2px solid var(--ccm-primary);
    transition: border-color .2s, background .2s;
}


.ccm-enquiry__card {
    background: var(--ccm-white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,.2);
}

.ccm-enquiry__card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 24px;
}

.ccm-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ccm-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.ccm-form__field input,
.ccm-form__field select {
    width: 100%;
    padding: 12px 40px 12px 16px;
    border-radius: 8px;
    border: 1px solid var(--ccm-heading);
    color: var(--ccm-body);
    font-family: var(--ccm-font);
    font-size: 14px;
    outline: none;
    transition: border-color .2s;
}

.ccm-form__field select{
    background: var(--ccm-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23000' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 14px center;
    appearance: none;
    -webkit-appearance: none;
}

.ccm-form__field input:focus,
.ccm-form__field select:focus {
    border-color: var(--ccm-primary);
}

.ccm-form__field input::placeholder {
    color: #9ca3af;
}

/* Faded appearance when placeholder option is selected (select:required:invalid) */
.ccm-form__field select:required:invalid {
    color: #9ca3af;
}

/* Restore normal color once a real option is chosen */
.ccm-form__field select:required:valid {
    color: var(--ccm-heading);
}

/* Gray out the disabled placeholder in the dropdown list */
.ccm-form__field select option[disabled] {
    color: #9ca3af;
}

/* Phone field live hint */
.ccm-form__hint {
    display: none;
    font-size: 12px;
    margin-top: 5px;
    min-height: 16px;
    transition: color 0.15s;
}

.ccm-form__hint--warn {
    color: #f59e0b;
}

.ccm-form__hint--ok {
    color: #22c55e;
}

/* ── Placements ── */
.ccm-placements {background: var(--ccm-white); }

/* .ccm-container { padding-bottom: 80px; } */

.ccm-placement-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    text-align: center;
    margin-bottom: 56px;
}

.ccm-pstat__value {
    font-size: 44px;
    font-weight: 800;
    color: var(--ccm-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.ccm-pstat__label {
    font-size: 14px;
    color: var(--ccm-body);
    font-weight: 500;
}

.ccm-story-cards {
    display: flex;
    justify-content: space-between;
    overflow: scroll;
    gap: 24px;
}

.ccm-story-card {
    background: var(--ccm-white);
    border-radius: 12px;
    border: 1px solid var(--ccm-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    transition: box-shadow .2s;
    min-width: 250px;
}

.ccm-story-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

.ccm-story-card__photo {
    margin-bottom: 8px;
}

.ccm-story-card__photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.ccm-story-card__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccm-story-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ccm-heading);
}

.ccm-story-card__role {
    font-size: 13px;
    color: var(--ccm-body);
}

.ccm-story-card__batch {
    font-size: 12px;
    color: var(--ccm-primary);
    font-weight: 600;
}

.ccm-story-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-decoration: none;
    margin-top: 4px;
}

.ccm-logos-strip {
    overflow: hidden;
    padding: 24px 0;
}

.ccm-logos-track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: ccm-scroll 20s linear infinite;
    width: max-content;
}

.ccm-logos-strip:hover .ccm-logos-track {
    animation-play-state: paused;
}

.ccm-logo-item img {
    height: 70px;
    width: auto;
    transition: all .2s;
    display: block;
}


.ccm-logo-item--text {
    font-size: 15px;
    font-weight: 700;
    color: #9ca3af;
    white-space: nowrap;
    padding: 0 8px;
}

@keyframes ccm-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ── Testimonials ── */
.ccm-testimonials {background: var(--ccm-white); }

.ccm-testi__grid {
    display: flex;
    gap: 24px;
}

.ccm-testi-card {
    border-radius: 12px;
    border: 1px solid var(--ccm-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--ccm-white);
    transition: box-shadow .2s;
    width: 384px;
}

.ccm-testi-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.ccm-testi-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.ccm-testi-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.ccm-testi-card__photo--initials {
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccm-testi-card__name { font-size: 15px; font-weight: 700; color: var(--ccm-heading); }
.ccm-testi-card__batch { font-size: 12px; margin-top: 2px; color: var(--ccm-body); }
.ccm-testi-card__stars { font-size: 13px; margin-top: 4px; color: var(--ccm-primary); }
.ccm-testi-card__quote { font-size: 14px; line-height: 1.7; color: var(--ccm-body); margin: 0; }

/* Dots hidden on desktop; shown inside the 768px media query */
.ccm-testi__dots { display: none; }

/* ── Campus ── */
.ccm-campus { background: var(--ccm-surface); }

/* 5-image mosaic — img 1 large left, imgs 2-5 form a 2×2 on the right */
.ccm-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 12px;
    margin-bottom: 48px;
}

/* Slot 1: tall feature image spanning both rows in column 1 */
.ccm-gallery__item--1 {
    grid-column: 1;
    grid-row: 1 / 3;
}

/* Slots 2–5: fill the 2×2 on the right naturally */
.ccm-gallery__item--2 { grid-column: 2; grid-row: 1; }
.ccm-gallery__item--3 { grid-column: 3; grid-row: 1; }
.ccm-gallery__item--4 { grid-column: 2; grid-row: 2; }
.ccm-gallery__item--5 { grid-column: 3; grid-row: 2; }

.ccm-gallery__item img,
.ccm-gallery__item iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    border: none;
}

/* Placeholder shown when an image slot has no photo yet */
.ccm-gallery__placeholder {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ccm-secondary) 0%, var(--ccm-primary) 100%);
    opacity: 0.15;
}

.bottom_cta {
    display: none;
    justify-content: center;
    margin-top: 40px;
}

.bottom_cta .ccm-btn {
    padding: 16px 48px;
    font-size: 16px;
    border-radius: 8px;
    min-width: 200px;
}

/* ── Admission Process ── */
.ccm-admission {
    background: var(--ccm-white);
}

.ccm-admission__steps {
    display: flex;
    align-items: center;
}

.ccm-admission_step_wrapper{
    display: flex;
}

.ccm-admission__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
}

.ccm-admission__circle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.ccm-admission__circle {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

.ccm-admission__arrow {
    flex: 1;
    color: var(--ccm-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ccm-admission__title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 8px;
}

.ccm-admission__desc {
    font-size: 12px;
    color: var(--ccm-body);
    line-height: 1.5;
    margin: 0;
}

/* ── Footer ── */
.ccm-footer {
    background: var(--ccm-primary);
    color: rgba(255,255,255,.8);
    padding-top: 64px;
}

.ccm-footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.ccm-footer__logo {
    max-height: 68px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

.ccm-footer__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-white);
    margin: 0 0 4px;
}

.ccm-footer__accreditation {
    font-size: 12px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin: 0 0 16px;
}

.ccm-footer__address {
    font-size: 14px;
    line-height: 1.7;
    font-style: normal;
    margin: 0 0 12px;
}

.ccm-footer__contact {
    font-size: 14px;
    margin: 0 0 6px;
}

.ccm-footer__contact a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: color .15s;
}

.ccm-footer__contact a:hover { color: var(--ccm-white); }

.ccm-footer__social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.ccm-footer__social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 6px;
    transition: color .15s, border-color .15s, background .15s;
}

.ccm-footer__social-link:hover {
    color: var(--ccm-white);
    border-color: var(--ccm-primary);
    background: rgba(255,255,255,.05);
}

.ccm-footer__accordion-toggle{
    all: unset;
}

.ccm-footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ccm-white);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin: 0 0 16px;
}

.ccm-footer__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ccm-footer__links li a {
    font-size: 14px;
    color: rgba(255,255,255,.7);
    text-decoration: none;
    transition: color .15s;
}

.ccm-footer__links li a:hover { color: var(--ccm-white); }

.ccm-footer__about-text {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,.75);
    margin: 0;
}

.ccm-footer__map-link {
    font-size: 14px;
    color: var(--ccm-primary);
    text-decoration: none;
    transition: opacity .15s;
}

.ccm-footer__map-link:hover { opacity: .8; }

.ccm-footer__bottom {
    padding: 20px 0;
}

.ccm-footer__bottom p {
    font-size: 13px;
    color: rgba(255,255,255,.4);
    margin: 0;
    text-align: center;
}

@media (max-width: 1024px) {
    .ccm-why__grid,
    .ccm-courses__grid,
    .ccm-testi__grid,
    .ccm-story-cards { grid-template-columns: repeat(2, 1fr); }

    .ccm-admission__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }

    .ccm-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .ccm-header{
        padding: 0 20px;
    }
    .ccm-header__logo img {
    height: 60px;
}
.ccm-stats {
    padding: 48px 20px;
}
    .ccm-hero__heading { font-size: 36px; }

    .ccm-header__inner { height: 60px; }
    .ccm-hamburger { display: flex; }
    .ccm-header__cta { display: none; }

    /* ── Fullscreen mobile nav overlay ── */
    .ccm-nav {
        display: block;
        position: fixed;
        inset: 0;
        background: var(--ccm-white);
        z-index: 1100;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .3s ease;
        padding: 0;
    }
    .ccm-nav--open { transform: translateX(0); }
    .ccm-nav__list {
        flex-direction: column;
        gap: 0;
        padding: 0;
        margin: 0;
    }

    /* Close (X) button inside the overlay */
    .ccm-nav__close {
        display: flex !important;
        justify-content: flex-end;
        padding: 16px 20px;
    }
    .ccm-nav__close-btn {
        background: none;
        border: none;
        color: var(--ccm-heading);
        font-size: 28px;
        line-height: 1;
        cursor: pointer;
        padding: 4px 8px;
    }

    /* All nav links */
    .ccm-nav__list li {
        border-bottom: 1px solid var(--ccm-heading);
        position: relative;
        width: stretch;
    }
    .ccm-nav__list li:last-child {
        border-bottom: none;
    }

    .ccm-nav__list li a {
        display: block;
        padding: 16px 16px 16px 20px;
        color: var(--ccm-body);
        font-size: 15px;
        font-weight: 500;
        background: none;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .ccm-nav__list li a:hover { color: var(--ccm-primary); background: none; }
    .ccm-nav__list li.current-menu-item > a { color: var(--ccm-primary); }

    /* Level 2 */
    .ccm-nav__list .sub-menu {
        display: block;
        overflow: hidden;
        height: 0;
        transition: height .3s ease;
        position: static;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
    }
    .ccm-nav__list .sub-menu li a {
        padding-left: 36px;
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
        color: var(--ccm-body);
    }
    /* Level 3 */
    
    .ccm-nav__list .sub-menu .sub-menu li a { padding-left: 52px; font-size: 13px; }

    /* +/- toggle button */
    .ccm-nav__list .menu-item-has-children > a::after,
    .ccm-nav__list .menu-item-has-children > .ccm-nav-link-row > a::after { display: none; }
    .ccm-nav__list .sub-menu .menu-item-has-children > a::after,
    .ccm-nav__list .sub-menu .menu-item-has-children > .ccm-nav-link-row > a::after { display: none; }
    .ccm-nav__list .menu-item-has-children { position: static; }
    .ccm-nav-link-row {
        position: relative;
        display: flex;
        align-items: stretch;
    }
    .ccm-nav-link-row > a { flex: 1; padding-right: 16px; }
    .ccm-submenu-toggle {
        flex-shrink: 0;
        width: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: none;
        border: none;
        border-left: 1px solid rgba(255,255,255,.08);
        color: var(--ccm-heading);
        font-size: 20px;
        font-weight: 300;
        cursor: pointer;
    }

    .ccm-stats__heading { font-size: 22px; margin-bottom: 24px; }
    .ccm-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 11px 10px;
    }
    .ccm-stat {
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.10);
        background: rgba(255, 255, 255, 0.07);
        padding: 8px 16px;
    }
    .ccm-stat__value{
        font-size: 20px;
        font-weight: 600;
    }
    .ccm-stat__label{
        font-size: 10px;
        font-weight: 500;
    }

    .ccm-courses-parent{
        padding: 0;
    }

    .ccm-course-card__img{
        height: 100px;
    }

.ccm-course-card{
    min-width: 200px;
}

.ccm-course-card__body{
    padding: 15px 11px 11px;
    gap: 5px;
}
.ccm-course-card__title{
    font-size: 14px;
}
.ccm-course-card__desc{
    font-size: 12px;
}
.ccm-course-card__footer{
    margin: 0;
    padding: 0;
    border: none;
}
.ccm-course-card__duration, .ccm-course-card__link{
    font-size: 12px;
}

    .ccm-why__grid,
    .ccm-courses__grid,
    .ccm-story-cards { grid-template-columns: 1fr; }

    .ccm-placements .ccm-container{
        padding: 0;
    }

    .ccm-logo-item img {
        height: 35px;
    }

    .ccm-testi__grid {
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 4px 24px 8px;
        gap: 16px;
    }

    .ccm-testi__grid::-webkit-scrollbar { display: none; }

    .ccm-testi-card {
        max-width: 312px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 12px;
    }

    /* Dots — hidden on desktop, shown here */
    .ccm-testi__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 16px;
    }

    .ccm-testi__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--ccm-border);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s, width 0.2s, border-radius 0.2s;
        flex-shrink: 0;
    }

    .ccm-testi__dot--active {
        width: 20px;
        border-radius: 4px;
        background: var(--ccm-primary);
    }

    /* ── Admission Process — vertical timeline (mobile) ── */
    .ccm-admission__steps {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .ccm-admission__arrow { display: none; }

    .ccm-admission__step {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 0 0 14px 0;
        gap: 16px;
    }

    .ccm-admission__step--last { padding-bottom: 0; }

    /* Circle wrap: anchor for the connecting line */
    .ccm-admission__circle-wrap {
        position: relative;
        flex-shrink: 0;
        margin-bottom: 0;
        width: auto;
    }

    /* Vertical connecting line — runs from bottom of circle through padding */
    .ccm-admission__step:not(.ccm-admission__step--last) .ccm-admission__circle-wrap::after {
        content: '';
        position: absolute;
        left: 50%;
        top: 29px;
        transform: translateX(-50%);
        width: 2px;
        height: 50px;
        background: var(--ccm-border);
    }

    /* Step 1 — green + CSS checkmark */
    .ccm-admission__step--done .ccm-admission__circle {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .ccm-admission__step--done .ccm-admission__circle::after {
        content: '';
        position: absolute;
        width: 13px;
        height: 7px;
        /* border-left: 2.5px solid #fff;
        border-bottom: 2.5px solid #fff;
        transform: rotate(-45deg) translate(1px, 1px); */
    }

    /* Step 2 — accent (already default, just reinforce) */
    .ccm-admission__step--active .ccm-admission__circle {
        background: var(--ccm-primary);
        box-shadow: 0 4px 16px rgba(0,0,0,.15);
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    /* Steps 3+ — grey outline */
    .ccm-admission__step--pending .ccm-admission__circle {
        background: #f3f4f6;
        border: 2px solid #e5e7eb;
        box-shadow: none;
        color: #9ca3af;
        font-size: 12px;
        width: 28px;
        height: 28px;
    }

    .ccm-admission__title { margin-bottom: 4px; }
    .ccm-admission__desc  { font-size: 13px; }

    .ccm-enquiry__inner { grid-template-columns: 1fr; gap: 40px; padding: 0 20px;}
    .ccm-form__row { grid-template-columns: 1fr; }

    .ccm-placement-stats { 
        display: flex;
        gap: 8px; 
    }

    .ccm-why {
        padding: 30px 20px;
    }

    .ccm-why__grid {
        display: flex;
        overflow-x: scroll;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 20px 24px;
        gap: 12px;
    }

    .ccm-why__grid::-webkit-scrollbar {
        display: none;
    }

    .ccm-why__card {
        max-width: 264px;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    /* Scroll indicator dots — visible on mobile only */
    .ccm-why__dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
        margin-top: 12px;
    }

    .ccm-why__dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--ccm-border);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background 0.2s, width 0.2s, border-radius 0.2s;
        flex-shrink: 0;
    }

    .ccm-why__dot--active {
        width: 20px;
        border-radius: 4px;
        background: var(--ccm-primary);
    }

    .ccm-pstat{
        padding: 8px 18px;
        border-radius: 12px;
        background: rgba(12, 12, 12, 0.05);
    }

    .ccm-pstat__value {
        font-size: 18px;
        font-weight: 700;
    }
    .ccm-pstat__label {
        font-size: 9px;
        font-weight: 500;
    }

    /* Campus gallery — stack to 2-col on mobile */
    .ccm-gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
    }
    .bottom_cta{
        display: flex;
    }

    /* Slot 1 spans full width on mobile (top banner) */
    .ccm-gallery__item--1 { grid-column: 1 / 3; grid-row: 1; }
    .ccm-gallery__item--2 { grid-column: 1;     grid-row: 2; }
    .ccm-gallery__item--3 { grid-column: 2;     grid-row: 2; }
    .ccm-gallery__item--4 { grid-column: 1;     grid-row: 3; }
    .ccm-gallery__item--5 { grid-column: 2;     grid-row: 3; }


    /* ── Footer mobile accordion ── */
    .ccm-footer__inner { grid-template-columns: 1fr; gap: 0; padding: 0px 20px;}

    .ccm-footer__brand {
        padding-bottom: 28px;
        border-bottom: 1px solid rgba(255,255,255,.1);
        margin-bottom: 0;
    }

    /* Hide address/phone/email from brand column on mobile (shown in Contact Us accordion) */
    .ccm-footer__address,
    .ccm-footer__contact { display: none; }

    .ccm-footer__accordion-item {
        border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .ccm-footer__accordion-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        background: none;
        border: none;
        cursor: pointer;
        padding: 16px 0;
        color: inherit;
        text-align: left;
    }

    .ccm-footer__accordion-toggle .ccm-footer__col-title {
        margin: 0;
        font-size: 14px;
    }

    .ccm-footer__accordion-icon {
        position: relative;
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        border: 1px solid rgba(255,255,255,.3);
        border-radius: 4px;
    }

    /* Plus icon via pseudo-elements */
    .ccm-footer__accordion-icon::before,
    .ccm-footer__accordion-icon::after {
        content: '';
        position: absolute;
        background: rgba(255,255,255,.7);
        transition: opacity .2s, transform .2s;
    }
    .ccm-footer__accordion-icon::before {
        width: 10px; height: 1.5px;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }
    .ccm-footer__accordion-icon::after {
        width: 1.5px; height: 10px;
        top: 50%; left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Rotate vertical bar to 0 when open = becomes minus */
    .ccm-footer__accordion-toggle[aria-expanded="true"] .ccm-footer__accordion-icon::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }

    .ccm-footer__accordion-body {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .25s ease;
        overflow: hidden;
    }

    .ccm-footer__accordion-body > ul {
        min-height: 0;
        overflow: hidden;
        padding-bottom: 0;
        transition: padding-bottom .25s ease;
    }

    .ccm-footer__accordion-toggle[aria-expanded="true"] ~ .ccm-footer__accordion-body {
        grid-template-rows: 1fr;
    }

    .ccm-footer__accordion-toggle[aria-expanded="true"] ~ .ccm-footer__accordion-body > ul {
        padding-bottom: 20px;
    }

    /* On desktop the toggle button should look/behave like a normal heading */
    .ccm-footer__contact-text {
        font-size: 14px;
        color: rgba(255,255,255,.7);
        line-height: 1.6;
    }

    .ccm-section-header h2 { font-size: 28px; }

    .ccm-course-row { flex-direction: column; }
    .ccm-course-row__img { width: 100%; height: 220px; flex-shrink: 0; }

    .ccm-page-hero{
        padding: 20px !important;
    }
}

/* ── Courses Page ── */
.ccm-page-hero {
    background: var(--ccm-heading);
    padding: 56px 0 48px;
}

.ccm-page-hero__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--ccm-white);
    margin: 0 0 12px;
}

.ccm-page-hero__sub {
    font-size: 17px;
    color: rgba(255,255,255,.7);
    margin: 0;
    max-width: 560px;
}

.ccm-courses-listing { background: var(--ccm-surface); }

.ccm-courses-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ccm-course-row {
    display: flex;
    gap: 32px;
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 14px;
    overflow: hidden;
}

.ccm-course-row__img {
    width: 300px;
    flex-shrink: 0;
    position: relative;
}

.ccm-course-row__img img,
.ccm-course-row__img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ccm-course-row__img-placeholder {
    background: linear-gradient(135deg, var(--ccm-secondary) 0%, var(--ccm-primary) 100%);
    min-height: 220px;
}

.ccm-course-row__body {
    padding: 28px 28px 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.ccm-course-row__top { display: flex; align-items: center; gap: 10px; }

.ccm-course-row__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0;
    line-height: 1.2;
}

.ccm-course-row__desc {
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.65;
    margin: 0;
    white-space: pre-line;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ccm-course-row__meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--ccm-body);
}

.ccm-course-row__meta-item strong { color: var(--ccm-heading); }

.ccm-course-row__fees {
    background: var(--ccm-surface);
    border-radius: 8px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ccm-course-row__fees-label,
.ccm-course-row__subs-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--ccm-secondary);
    margin: 0 0 4px;
}

.ccm-course-row__subs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.ccm-course-row__cta { margin-top: 4px; }

/* ── Single Course Page ── */
.ccm-course-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
}

.ccm-course-hero__img,
.ccm-course-hero__img--placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ccm-course-hero__img--placeholder {
    background: linear-gradient(135deg, var(--ccm-secondary) 0%, var(--ccm-primary) 100%);
}

.ccm-course-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.18) 60%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding-bottom: 36px;
}

.ccm-course-hero__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--ccm-white);
    margin: 10px 0 8px;
    line-height: 1.15;
}

.ccm-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,.7);
}

.ccm-breadcrumb a {
    color: rgba(255,255,255,.7);
    text-decoration: none;
}

.ccm-breadcrumb a:hover { color: var(--ccm-white); }

.ccm-course-body { background: var(--ccm-surface); }

.ccm-course-body__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 32px;
    align-items: start;
}

.ccm-course-section {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px;
}

.ccm-course-specialisations{
      margin-top: 30px;
}

.ccm-course-section__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 16px;
}

.ccm-course-body__desc {
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.7;
    margin: 0;
}

.ccm-course-subs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.ccm-course-sub-card {
    border: 1px solid var(--ccm-border);
    border-radius: 8px;
    padding: 16px;
    background: var(--ccm-surface);
}

.ccm-course-sub-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 10px;
}

.ccm-course-fees-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--ccm-border);
    border-radius: 8px;
    overflow: hidden;
}

.ccm-fee-row--lg {
    padding: 12px 16px;
    border-bottom: 1px solid var(--ccm-border);
    font-size: 15px;
}

.ccm-fee-row--lg:last-child { border-bottom: none; }


.ccm-fee-row--total {
    background: transparent !important;
    padding-top: 14px;
}

.ccm-fee-row--total .ccm-fee-row__label {
    color: var(--ccm-secondary);
    font-weight: 700;
    font-size: 16px;
}

.ccm-fee-row--total .ccm-fee-row__amount {
    color: var(--ccm-secondary);
    font-weight: 700;
    font-size: 16px;
}



.ccm-course-overview-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ccm-course-overview-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.ccm-overview-label { color: var(--ccm-body); }

.ccm-overview-value {
    font-weight: 600;
    color: var(--ccm-heading);
}

@media (max-width: 768px) {
    .ccm-course-hero { height: 280px; }
    .ccm-course-hero__title { font-size: 26px; }
    .ccm-course-body__grid { grid-template-columns: 1fr; }
    .ccm-course-subs-grid { grid-template-columns: 1fr; }
    .ccm-course-sidebar-card { position: static; }
}

/* ── Course Stats Bar ── */
.ccm-course-stats-bar {
    background: var(--ccm-secondary);
    padding: 20px 0;
}

.ccm-course-stats-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.ccm-course-stat__value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--ccm-primary);
}

.ccm-course-stat__label {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.75);
    margin-top: 4px;
}

@media (max-width: 768px) {
    .ccm-course-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Specialisations Tab Switcher ── */
.ccm-specs-tabs { margin-top: 16px; }

.ccm-spec-tab-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ccm-spec-tab-label {
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid var(--ccm-border);
    font-size: 14px;
    font-weight: 500;
    color: var(--ccm-body);
    cursor: pointer;
    transition: background .15s, color .15s, border-color .15s;
}

.ccm-spec-tab-label:hover {
    border-color: var(--ccm-primary);
    color: var(--ccm-primary);
}

.ccm-spec-panel {
    display: none;
    background: var(--ccm-light);
    border-radius: 8px;
    padding: 0;
}

.more_details_link{
    color:  var(--ccm-primary);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
}

.ccm-spec-panel__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 10px;
}

.ccm-spec-panel__desc {
    color: var(--ccm-body);
    font-size: 15px;
    margin: 0 0 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ccm-spec-panel__meta {
    display: flex;
    gap: 24px;
    font-size: 14px;
    color: var(--ccm-body);
    margin-bottom: 8px;
}

/* ── What You'll Learn ── */
.ccm-learn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ccm-learn-chip {
    background: var(--ccm-surface);
    border: 1px solid var(--ccm-border);
    border-radius: 6px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ccm-heading);
}

/* ── Eligibility ── */
.ccm-eligibility {
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.8;
}

.ccm-eligibility p { margin: 0 0 12px; }

.ccm-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ccm-checklist li {
    padding-left: 26px;
    position: relative;
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.5;
}

.ccm-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--ccm-primary);
    font-weight: 700;
    font-size: 14px;
}

/* ── Placement Highlights ── */
.ccm-placement-highlights { background: var(--ccm-surface); }

.ccm-placement-highlights__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.ccm-placement-stat {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.ccm-placement-stat__value {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--ccm-primary);
}

.ccm-placement-stat__label {
    display: block;
    font-size: 14px;
    color: var(--ccm-body);
    margin-top: 6px;
}

.ccm-recruiters-heading {
    font-size: 16px;
    font-weight: 600;
    color: var(--ccm-heading);
    margin: 0 0 20px;
    text-align: center;
}

.ccm-recruiters-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.ccm-recruiter-logo {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 8px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 60px;
}

.ccm-recruiter-logo img {
    max-height: 36px;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: .7;
    transition: filter .2s, opacity .2s;
}

.ccm-recruiter-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.ccm-recruiter-logo__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccm-body);
}

@media (max-width: 768px) {
    .ccm-placement-highlights__stats { grid-template-columns: 1fr; }
}

/* ── Department Filter Tabs ── */
.ccm-dept-filter {
    background: var(--ccm-white);
    border-bottom: 1px solid var(--ccm-border);
}

.ccm-dept-filter__tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 16px 0;
    scrollbar-width: none;
}

.ccm-dept-filter__tabs::-webkit-scrollbar { display: none; }

.ccm-dept-tab {
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ccm-body);
    text-decoration: none;
    border: 1.5px solid var(--ccm-border);
    white-space: nowrap;
    transition: background .15s, color .15s, border-color .15s;
}

.ccm-dept-tab:hover,
.ccm-dept-tab--active {
    background: var(--ccm-primary);
    color: var(--ccm-white);
    border-color: var(--ccm-primary);
}

/* ── Faculty Grid & Cards ── */
.ccm-faculty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ccm-faculty-card {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow .2s, transform .2s;
}

.ccm-faculty-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    transform: translateY(-2px);
}

.ccm-faculty-card__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--ccm-surface);
}

.ccm-faculty-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccm-faculty-card__photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--ccm-surface), var(--ccm-border));
}

.ccm-faculty-card__body {
    padding: 16px;
}

.ccm-faculty-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 4px;
}

.ccm-faculty-card__desig {
    font-size: 13px;
    color: var(--ccm-body);
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .ccm-faculty-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .ccm-faculty-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── Faculty Detail Page ── */
.ccm-faculty-detail__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.ccm-faculty-detail__photo {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: var(--ccm-surface);
}

.ccm-faculty-detail__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccm-faculty-card__photo-placeholder--lg {
    height: 280px;
}

.ccm-faculty-detail__name {
    font-size: 32px;
    font-weight: 800;
    color: var(--ccm-heading);
    margin: 12px 0 8px;
}

.ccm-faculty-detail__desig {
    font-size: 17px;
    color: var(--ccm-body);
    margin: 0;
}

@media (max-width: 768px) {
    .ccm-faculty-detail__inner { grid-template-columns: 1fr; }
    .ccm-faculty-detail__photo { max-width: 200px; }
}

/* ── Dept Badge ── */
.ccm-badge--dept {
    background: var(--ccm-secondary);
    color: var(--ccm-white);
}

/* ── Enquiry form notices ── */
.ccm-form-notice {
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.ccm-form-notice--success {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    color: var(--ccm-body) !important;
}

.ccm-form-notice--error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

/* Desktop: undo accordion — always show bodies, hide toggle chrome */
@media (min-width: 769px) {
    .ccm-footer__accordion-toggle {
        pointer-events: none;
        cursor: default;
    }
    .ccm-footer__accordion-icon { display: none; }
    .ccm-footer__accordion-body {
        display: block !important;
        overflow: visible;
    }
}

/* ═══════════════════════════════════════════════════════════════
   COURSE PAGE REDESIGN — 2026-04-15
   ═══════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.ccm-course-hero {
    background: var(--ccm-secondary);
    padding: 48px 0 52px;
    position: relative;
    height: auto;
    overflow: visible;
}

.ccm-course-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.ccm-course-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(10, 17, 40, 0.68) 0%,
        rgba(10, 17, 40, 0.78) 100%
    );
}

.ccm-course-hero .ccm-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .ccm-course-hero__bg {
        background-position: center top;
    }
}

.ccm-course-hero .ccm-breadcrumb {
    margin-bottom: 20px;
}

.ccm-course-hero .ccm-breadcrumb,
.ccm-course-hero .ccm-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.ccm-course-hero .ccm-breadcrumb a:hover {
    color: var(--ccm-white);
}

.ccm-course-hero .ccm-course-hero__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--ccm-white);
    margin: 0 0 16px;
    line-height: 1.2;
}

.ccm-course-hero_CTAs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 20px;
}

.ccm-btn--hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 15px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.ccm-btn--hero-primary:hover { opacity: 0.88; }

.ccm-btn--hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: transparent;
    color: var(--ccm-white);
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid rgba(255,255,255,0.55);
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.2s, background 0.2s;
}

.ccm-btn--hero-outline:hover {
    border-color: var(--ccm-white);
    background: rgba(255,255,255,0.08);
}

.ccm-course-hero_other_details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    margin: 0 0 16px;
}

.ccm-hero-tag {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    font-weight: 500;
}

.ccm-hero-tag--accent {
    color: var(--ccm-primary);
    font-weight: 600;
}

.ccm-hero-tag + .ccm-hero-tag::before {
    content: '•';
    margin: 0 10px;
    color: rgba(255,255,255,0.4);
}

.ccm-course-hero .ccm-badge--dept {
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: 999px;
    display: inline-block;
}

@media (max-width: 768px) {
    .ccm-course-hero { padding: 32px 20px; }
    .ccm-course-hero .ccm-course-hero__title { font-size: 28px; }
}

/* ── Why This Program (sidebar box) ── */
.ccm-course-why-box {
    background: var(--ccm-secondary);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 20px 24px;
}

.ccm-course-why-box h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--ccm-white);
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ccm-course-why-box ul {
    margin: 0;
    padding-left: 18px;
}

.ccm-course-why-box li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 8px;
}

.ccm-course-why-box li:last-child { margin-bottom: 0; }

/* ── What You'll Learn (standalone dark section) ── */
.ccm-course-learn {
    background: var(--ccm-secondary);
    padding: 64px 0;
}

.ccm-section-header--light h2 {
    color: var(--ccm-white);
}

.ccm-section-header--light p {
    color: rgba(255, 255, 255, 0.65);
}

.ccm-learn-grid--dark {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ccm-learn-chip--dark {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ccm-white);
    display: block;
}

@media (max-width: 1024px) {
    .ccm-learn-grid--dark { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ccm-course-learn { padding: 40px 0; }
    .ccm-learn-grid--dark { grid-template-columns: 1fr; }
}

/* ── Fees & Scholarships ── */
.ccm-course-fees-section { background: var(--ccm-surface); }

.ccm-fees-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ccm-fees-grid__left{
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: var(--ccm-white);
    padding: 32px;
}

.ccm-fees-grid--single {
    grid-template-columns: 1fr;
    max-width: 560px;
}

.ccm-fees-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 20px;
}

.ccm-fees-grid__right {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px;
}

.ccm-scholarship-body {
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.7;
}

.ccm-scholarship-body p { margin: 0 0 10px; }
.ccm-scholarship-body p:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
    .ccm-fees-grid { grid-template-columns: 1fr; gap: 24px; }
    .ccm-fees-grid--single { max-width: 100%; }
}

/* ── Eligibility & Requirements ── */
.ccm-course-eligibility-section { background: var(--ccm-white); }

.ccm-eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.ccm-eligibility-col{
    padding: 32px;
    border-radius: 8px;
    border: 1px solid #E5E7EB;
    background: #FFF;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.10), 0 10px 15px 0 rgba(0, 0, 0, 0.10);
}

.ccm-eligibility-grid--single {
    grid-template-columns: 1fr;
    max-width: 620px;
}

.ccm-eligibility-col-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 16px;
}

@media (max-width: 768px) {
    .ccm-eligibility-grid { grid-template-columns: 1fr; gap: 24px; }
    .ccm-eligibility-grid--single { max-width: 100%; }
}

/* ── Placement Story Cards ── */
.ccm-placement-story-cards {
    display: flex;
    overflow: scroll;
    justify-content: space-between;
    gap: 24px;
    margin: 40px 0 48px;
}

.ccm-placement-story-card {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    min-width: 250px;
}

.ccm-placement-story-card__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.ccm-placement-story-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccm-placement-story-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--ccm-primary);
    color: var(--ccm-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.ccm-placement-story-card__name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ccm-heading);
}

.ccm-placement-story-card__role {
    font-size: 13px;
    color: var(--ccm-body);
    margin-top: 4px;
    line-height: 1.4;
}

.ccm-placement-story-card__batch {
    font-size: 12px;
    color: var(--ccm-primary);
    font-weight: 600;
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .ccm-placement-story-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ccm-placement-story-cards { grid-template-columns: 1fr; }
}

/* ── Stats Bar Polish ── */
.ccm-course-stats-bar {
    background: var(--ccm-white);
    border-bottom: 1px solid var(--ccm-border);
    padding: 0;
}

.ccm-course-stats-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.ccm-course-stat {
    padding: 24px 20px;
    border-right: 1px solid var(--ccm-border);
    text-align: center;
}

.ccm-course-stat:last-child { border-right: none; }

.ccm-course-stat__value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--ccm-primary);
    line-height: 1;
}

.ccm-course-stat__label {
    display: block;
    font-size: 13px;
    color: var(--ccm-body);
    margin-top: 6px;
}

@media (max-width: 768px) {
    .ccm-course-stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .ccm-course-stat { border-right: none; border-bottom: 1px solid var(--ccm-border); }
    .ccm-course-stat:nth-child(2n) { border-right: none; }
}

/* ── Testimonials Polish ── */

.ccm-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ccm-testimonial-card {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px;
}

.ccm-testimonial-card__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 16px;
}

.ccm-testimonial-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ccm-testimonial-card__quote {
    font-size: 15px;
    color: var(--ccm-body);
    line-height: 1.7;
    font-style: italic;
    margin: 0 0 16px;
}

.ccm-testimonial-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0;
}

.ccm-testimonial-card__desig {
    font-size: 13px;
    color: var(--ccm-body);
    margin: 3px 0 0;
}

@media (max-width: 1024px) {
    .ccm-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .ccm-testimonials__grid { grid-template-columns: 1fr; }
}

/* ── Admission Process Polish ── */
.ccm-admission { background: var(--ccm-white); }

.ccm-admission .ccm-container{
    padding: 0px;
}

.ccm-admission__steps {
    display: flex;
    align-items: center;
    gap: 0;
}

/* .ccm-admission__step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 16px;
} */

.ccm-admission__step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--ccm-primary);
    color: var(--ccm-white);
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
}


.ccm-admission__step-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 6px;
}

.ccm-admission__step-desc {
    font-size: 13px;
    color: var(--ccm-body);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .ccm-admission__steps { flex-direction: column; align-items: flex-start;}
    .ccm-admission__step::after { display: none; }
}

/* ── Expert Faculty Polish ── */
.ccm-faculty-section { background: var(--ccm-surface); }

/* ═══════════════════════════════════════════
   LANDING PAGE  (page-landing.php)
   ═══════════════════════════════════════════ */

/* ── LP Hero ── */

/* ── LP Stats Bar ── */
.lp-stats {
    background: var(--ccm-secondary);
    padding: 48px 0;
}

.lp-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.lp-stat {
    text-align: center;
    padding: 8px 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.lp-stat:last-child { border-right: none; }

.lp-stat__value {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: var(--ccm-primary);
    line-height: 1;
    margin-bottom: 8px;
}

.lp-stat__label {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
}

/* ── LP Programs ── */
.lp-programs { background: var(--ccm-white); }

.lp-programs__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.lp-program-card {
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s;
}

.lp-program-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.lp-program-card__img {
    height: 200px;
    overflow: hidden;
    background: var(--ccm-surface);
}

.lp-program-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.lp-program-card__img--placeholder {
    background: linear-gradient(135deg, var(--ccm-secondary) 0%, var(--ccm-primary) 100%);
}

.lp-program-card__body {
    padding: 24px;
}

.lp-program-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0 0 10px;
}

.lp-program-card__desc {
    font-size: 14px;
    color: var(--ccm-body);
    line-height: 1.6;
    margin: 0 0 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.lp-program-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4px;
}

.lp-program-card__seats {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccm-primary);
    background: rgba(249, 115, 22, 0.08);
    padding: 4px 10px;
    border-radius: 20px;
}

.lp-program-card__link {
    font-size: 14px;
    font-weight: 600;
    color: var(--ccm-secondary);
    text-decoration: none;
    transition: color .15s;
}

.lp-program-card__link:hover { color: var(--ccm-primary); }

/* ── LP Responsive ── */
@media (max-width: 1024px) {
    .lp-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .lp-hero__form-wrap { max-width: 480px; }
    .lp-programs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .lp-hero { padding: 48px 0; }
    .lp-hero__heading { font-size: 32px; }
    .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .lp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 20px; }
    .lp-stat:nth-child(2n) { border-right: none; }
    .lp-programs__grid { grid-template-columns: 1fr; }
    .lp-form .ccm-form__row { grid-template-columns: 1fr; }
    .lp-form-card { padding: 24px 20px; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── Hero ── */
.about-hero {
    background: #f7f8fa;
    text-align: center;
}

.about-hero__inner { max-width: 760px; margin: 0 auto; }

.about-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin-bottom: 16px;
}

.about-hero__intro {
    font-size: 17px;
    color: #555;
    line-height: 1.75;
}

/* ── Leadership ── */
.about-leadership { background: var(--ccm-white); }

.about-leadership__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.about-leader-card {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.about-leader-card__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 16px;
    border: 3px solid var(--ccm-primary);
}

.about-leader-card__photo--placeholder {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #e8eaf0;
    margin-bottom: 16px;
}

.about-leader-card__name {
    font-size: 17px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin-bottom: 4px;
}

.about-leader-card__designation {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 16px;
}

.about-leader-card__quote {
    font-size: 14px;
    color: #666;
    font-style: italic;
    line-height: 1.65;
    border-left: 3px solid var(--ccm-primary);
    padding-left: 14px;
    margin: 0;
    text-align: left;
}

/* ── Core Values ── */
.about-values { background: #f7f8fa; }

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-value-card {
    background: var(--ccm-white);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    border: 1px solid var(--ccm-border);
}

.about-value-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(var(--ccm-primary-rgb, 234,88,12), .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 16px;
}

.about-value-card__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin-bottom: 10px;
}

.about-value-card__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ── Approvals & Affiliations ── */
.about-approvals {
    background: var(--ccm-secondary);
}

.about-approvals .ccm-section-header--light h2 { color: var(--ccm-white); }
.about-approvals .ccm-section-header--light p  { color: rgba(255,255,255,.7); }

.about-approvals__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.about-approval-badge {
    border: 1.5px solid rgba(255,255,255,.35);
    border-radius: 8px;
    padding: 20px 28px;
    min-width: 130px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-approval-badge__logo {
    height: 52px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    display: block;
    margin: 0 auto 4px;
    filter: brightness(0) invert(1);
}

.about-approval-badge__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-white);
    display: block;
}

.about-approval-badge__desc {
    font-size: 12px;
    color: rgba(255,255,255,.65);
    display: block;
    line-height: 1.4;
}

/* ── Mandatory Disclosure ── */
.about-disclosure { background: var(--ccm-white); }

.about-disclosure__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.about-disclosure-card {
    background: var(--ccm-white);
    border: 1px solid var(--ccm-border);
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-disclosure-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(var(--ccm-primary-rgb, 234,88,12), .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 4px;
}

.about-disclosure-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ccm-secondary);
}

.about-disclosure-card__desc {
    font-size: 13px;
    color: #777;
    line-height: 1.5;
    flex: 1;
}

.about-disclosure-card__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-decoration: none;
    margin-top: 4px;
    transition: opacity .15s;
}

.about-disclosure-card__link:hover { opacity: .75; }

/* ── About Responsive ── */
@media (max-width: 1024px) {
    .about-values__grid { grid-template-columns: repeat(2, 1fr); }
    .about-disclosure__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .about-hero__title { font-size: 30px; }
    .about-leadership__grid { grid-template-columns: 1fr; }
    .about-values__grid { grid-template-columns: 1fr; }
    .about-disclosure__grid { grid-template-columns: 1fr; }
    .about-approvals__grid { gap: 12px; }
    .about-approval-badge { min-width: 100px; padding: 16px 20px; }
}

/* ── BLOG ── */
.ccm-blog-archive__header { margin-bottom: 40px; }
.ccm-blog-archive__title { font-size: 36px; font-weight: 700; color: var(--ccm-secondary); }

.ccm-blog-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ccm-blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ccm-blog-card__thumb img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.ccm-blog-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ccm-blog-card__meta { font-size: 13px; color: #6b7280; margin-bottom: 8px; }

.ccm-blog-card__title { font-size: 18px; font-weight: 600; margin-bottom: 12px; }
.ccm-blog-card__title a { color: var(--ccm-secondary); text-decoration: none; }
.ccm-blog-card__title a:hover { color: var(--ccm-primary); }

.ccm-blog-card__excerpt { 
    font-size: 14px; 
    color: #4b5563; 
    line-height: 1.6; 
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.ccm-blog-card__link {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-decoration: none;
}
.ccm-blog-card__link:hover { text-decoration: underline; }

.ccm-blog-pagination { margin-top: 48px; text-align: center; }
.ccm-blog-pagination .nav-links { display: flex; justify-content: center; gap: 8px; }
.ccm-blog-pagination a, .ccm-blog-pagination span {
    padding: 8px 14px; border: 1px solid #e5e7eb; border-radius: 6px;
    font-size: 14px; color: var(--ccm-secondary); text-decoration: none;
}
.ccm-blog-pagination .current { background: var(--ccm-primary); color: #fff; border-color: var(--ccm-primary); }

/* ── Single Post ── */
.ccm-post__header { margin-bottom: 32px; }
.ccm-post__title { font-size: 36px; font-weight: 700; color: var(--ccm-secondary); margin-bottom: 12px; }
.ccm-post__meta { font-size: 14px; color: #6b7280; }
.ccm-post__thumbnail { margin-bottom: 32px; }
.ccm-post__thumbnail img { width: 100%; max-height: 480px; object-fit: cover; border-radius: 12px; }
.ccm-post__content { font-size: 16px; line-height: 1.8; color: #374151; max-width: 760px; }
.ccm-post__content h2, .ccm-post__content h3 { color: var(--ccm-secondary); margin: 28px 0 12px; }
.ccm-post__footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid #e5e7eb; }
.ccm-post__back { font-size: 14px; font-weight: 600; color: var(--ccm-primary); text-decoration: none; }
.ccm-post__back:hover { text-decoration: underline; }

/* ── Blog Responsive ── */
@media (max-width: 1024px) {
    .ccm-blog-archive__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .ccm-blog-archive__grid { grid-template-columns: 1fr; }
    .ccm-blog-archive__title { font-size: 28px; }
    .ccm-post__title { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNER SINGLE PAGE  (single-ccm_partner.php + page-partner.php)
═══════════════════════════════════════════════════════════════════════════ */

.partner-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.partner-why__card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 24px;
}

.partner-why__icon {
    width: 52px;
    height: 52px;
    background: rgba(249, 115, 22, 0.10);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
    margin-bottom: 16px;
}

.partner-why__card-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin: 0 0 8px;
}

.partner-why__card-desc {
    font-size: 14px;
    color: var(--ccm-body);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .partner-why__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .partner-why__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   PARTNERS LISTING PAGE
═══════════════════════════════════════════════════════════════════════════ */

.partners-hero { background: var(--ccm-secondary); text-align: center; }
.partners-hero__title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff; margin: 0 0 12px; }
.partners-hero__sub { font-size: 18px; color: rgba(255,255,255,.75); margin: 0; }

.partners-listing { background: #f8fafc; }

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.partner-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: box-shadow .2s, transform .2s;
}
.partner-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

.partner-card__logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px 20px;
    min-height: 110px;
    border-bottom: 1px solid #f1f5f9;
}
.partner-card__logo { max-height: 64px; max-width: 180px; object-fit: contain; }
.partner-card__logo-fallback {
    font-size: 20px;
    font-weight: 700;
    color: var(--ccm-secondary);
    text-align: center;
}

.partner-card__body { padding: 20px 24px 12px; flex: 1; }
.partner-card__name { font-size: 18px; font-weight: 700; color: var(--ccm-secondary); margin: 0 0 6px; }
.partner-card__tagline { font-size: 14px; font-weight: 600; color: var(--ccm-primary); margin: 0 0 8px; }
.partner-card__intro { font-size: 14px; color: #6b7280; line-height: 1.55; margin: 0; }

.partner-card__cta {
    display: block;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ccm-primary);
    border-top: 1px solid #f1f5f9;
    text-align: right;
}

.partners-empty { text-align: center; color: #6b7280; font-size: 16px; padding: 48px 0; }

/* ── Partners Listing Responsive ── */
@media (max-width: 1024px) {
    .partners-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .partners-grid { grid-template-columns: 1fr; }
    .partners-hero__title { font-size: 28px; }
}

/* ============================================================
   HOMEPAGE — ABOUT US SECTION
   ============================================================ */

.hp-about { background: var(--ccm-surface); }

.hp-about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Media collage ── */
.hp-about__media-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
}

/* 1 item: full width, taller */
.hp-about__media-grid--1 {
    grid-template-columns: 1fr;
}

/* 2+ items: primary spans 2 rows */
.hp-about__media-item--primary { grid-row: span 2; }

/* 4 items: tighten row height slightly */
.hp-about__media-grid--4 { grid-auto-rows: 190px; }

.hp-about__media-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    background: #e5e7eb;
}
.hp-about__media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.hp-about__media-item:hover img { transform: scale(1.04); }

.hp-about__video-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.hp-about__video-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Video facade — click-to-play thumbnail overlay ── */
.ccm-video-facade {
    position: absolute;
    inset: 0;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ccm-video-facade img,
.ccm-video-facade__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .3s ease;
}
.ccm-video-facade__bg { background: #0f172a; }
.ccm-video-facade:hover img { transform: scale(1.04); }
.ccm-video-facade__play {
    position: relative;
    z-index: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 68px;
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    transition: transform .15s ease, opacity .15s ease;
}
.ccm-video-facade:hover .ccm-video-facade__play {
    transform: scale(1.1);
    opacity: .9;
}

/* ── Text column ── */
.hp-about__eyebrow,
[class*="__eyebrow"] {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.hp-about__heading {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    color: var(--ccm-secondary);
    line-height: 1.2;
    margin: 0 0 16px;
}
.hp-about__subheading {
    font-size: 17px;
    font-weight: 600;
    color: #374151;
    margin: 0 0 20px;
}
.hp-about__body {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 28px;
}
.hp-about__body p { margin: 0 0 14px; }
.hp-about__body p:last-child { margin-bottom: 0; }
.hp-about__cta { margin-top: 4px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .hp-about__inner { gap: 40px; }
    .hp-about__media-grid { grid-auto-rows: 160px; }
    .hp-about__media-grid--4 { grid-auto-rows: 160px; }
}
@media (max-width: 768px) {
    .hp-about__inner { grid-template-columns: 1fr; gap: 36px; }
    .hp-about__media  { order: 2; }
    .hp-about__text   { order: 1; }
    .hp-about__media-item--primary { grid-row: span 1; }
    .hp-about__media-grid { grid-auto-rows: 150px; }
    .hp-about__media-grid--1 { grid-auto-rows: 240px; }
}

/* ============================================================
   COURSE FAQ ACCORDION
   ============================================================ */

.ccm-course-faq { background: #f7f8fa; }

.ccm-course-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ccm-course-faq__toggle { display: none; }

.ccm-course-faq__item {
    background: var(--ccm-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.ccm-course-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ccm-secondary);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}
.ccm-course-faq__question:hover { background: #f7f8fa; }

/* Chevron icon — CSS-only */
.ccm-course-faq__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}
.ccm-course-faq__chevron::before,
.ccm-course-faq__chevron::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 11px;
    height: 2px;
    background: var(--ccm-primary);
    border-radius: 2px;
    transition: transform .25s;
}
.ccm-course-faq__chevron::before { left: 1px;  transform: translateY(-50%) rotate(45deg); }
.ccm-course-faq__chevron::after  { right: 1px; transform: translateY(-50%) rotate(-45deg); }

/* Collapsed answer */
.ccm-course-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}
.ccm-course-faq__answer p {
    margin: 0;
    padding: 0 24px 20px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

/* Checked state — open */
.ccm-course-faq__toggle:checked ~ .ccm-course-faq__question { color: var(--ccm-primary); }
.ccm-course-faq__toggle:checked ~ .ccm-course-faq__question .ccm-course-faq__chevron::before {
    transform: translateY(-50%) rotate(-45deg);
}
.ccm-course-faq__toggle:checked ~ .ccm-course-faq__question .ccm-course-faq__chevron::after {
    transform: translateY(-50%) rotate(45deg);
}
.ccm-course-faq__toggle:checked ~ .ccm-course-faq__answer {
    max-height: 600px;
}

@media (max-width: 768px) {
    .ccm-course-faq__question { font-size: 15px; padding: 16px 18px; }
    .ccm-course-faq__answer p { padding: 0 18px 16px; }
}

/* ============================================================
   CHAIRMAN'S MESSAGE PAGE
   ============================================================ */

.chairman-hero {
    background: var(--ccm-secondary);
    text-align: center;
}
.chairman-hero__inner { max-width: 760px; margin: 0 auto; }
.chairman-hero__title {
    font-size: 40px;
    font-weight: 800;
    color: var(--ccm-white);
    margin: 0 0 16px;
}
.chairman-hero__intro {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin: 0;
}

/* ── Single message section ── */
.chairman-msg { background: var(--ccm-white); }
.chairman-msg--alt { background: #f7f8fa; }

.chairman-msg__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 64px;
    align-items: start;
}
.chairman-msg--alt .chairman-msg__inner {
    direction: rtl;
}
.chairman-msg--alt .chairman-msg__inner > * {
    direction: ltr;
}

/* Photo column */
.chairman-msg__photo-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    aspect-ratio: 4 / 5;
    background: #e5e7eb;
}
.chairman-msg__photo-wrap--placeholder { background: #d1d5db; }
.chairman-msg__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.chairman-msg__identity { margin-top: 20px; text-align: center; }
.chairman-msg__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin: 0 0 4px;
}
.chairman-msg__designation {
    font-size: 14px;
    font-weight: 600;
    color: var(--ccm-primary);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin: 0;
}
.chairman-msg__signature {
    margin-top: 16px;
    max-height: 60px;
    max-width: 180px;
    object-fit: contain;
    opacity: .8;
}

/* Text column */
.chairman-msg__quote-mark {
    font-size: 80px;
    line-height: .8;
    color: var(--ccm-primary);
    font-family: Georgia, serif;
    margin-bottom: 8px;
    user-select: none;
}
.chairman-msg__message {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}
.chairman-msg__message p { margin: 0 0 18px; }
.chairman-msg__message p:last-child { margin-bottom: 0; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .chairman-msg__inner { grid-template-columns: 260px 1fr; gap: 40px; }
}
@media (max-width: 768px) {
    .chairman-hero__title { font-size: 28px; }
    .chairman-hero__intro { font-size: 16px; }
    .chairman-msg__inner {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }
    .chairman-msg--alt .chairman-msg__inner { direction: ltr; }
    .chairman-msg__photo-wrap { max-width: 260px; margin: 0 auto; }
    .chairman-msg__identity { text-align: center; }
    .chairman-msg__quote-mark { font-size: 56px; }
    .chairman-msg__message { font-size: 16px; }
}

/* ============================================================
   HOMEPAGE — SUCCESS STORIES
   ============================================================ */

.ccm-success { background: #f7f8fa; }

/* Auto-fill grid: videos/images fill columns naturally,
   Shorts (portrait) are narrower so 4 can fit per row */
.ccm-success__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

/* ── Story card base ── */
.ccm-story-card {
    background: var(--ccm-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    transition: box-shadow .2s, transform .2s;
}
.ccm-story-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,.1);
    transform: translateY(-3px);
}

/* ── Media wrapper ── */
.ccm-story-card__media {
    position: relative;
    width: 100%;
    background: #1a1a2e;
    overflow: hidden;
}

/* Landscape video / image — 16:9 */
.ccm-story-card--video .ccm-story-card__media,
.ccm-story-card:not(.ccm-story-card--short):not(.ccm-story-card--video) .ccm-story-card__media {
    padding-top: 56.25%;
}

/* Portrait Short — 9:16 */
.ccm-story-card--short .ccm-story-card__media {
    padding-top: 177.78%;
}

.ccm-story-card__media iframe,
.ccm-story-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
.ccm-story-card__media img { object-fit: cover; }


/* ── Card body ── */
.ccm-story-card__body {
    padding: 16px 18px 20px;
}
.ccm-story-card__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--ccm-secondary);
    margin: 0 0 6px;
    line-height: 1.35;
}
.ccm-story-card__desc {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0 0 10px;
}
.ccm-story-card__person {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}
.ccm-story-card__person-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ccm-secondary);
}
.ccm-story-card__person-role {
    font-size: 12px;
    color: var(--ccm-primary);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .ccm-success__grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 768px) {
    .ccm-success__grid { grid-template-columns: 1fr; gap: 16px; }
    /* Shorts show in a 2-column mini-grid on mobile */
    .ccm-story-card--short { display: inline-block; width: calc(50% - 8px); vertical-align: top; }
}

/* ============================================================
   HOMEPAGE — FAQ
   ============================================================ */

.hp-faq { background: var(--ccm-white); }

.hp-faq__list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hp-faq__toggle { display: none; }

.hp-faq__item {
    background: var(--ccm-white);
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.hp-faq__question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ccm-secondary);
    cursor: pointer;
    user-select: none;
    line-height: 1.4;
}
.hp-faq__question:hover { background: #f7f8fa; }

.hp-faq__chevron {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    position: relative;
}
.hp-faq__chevron::before,
.hp-faq__chevron::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 11px;
    height: 2px;
    background: var(--ccm-primary);
    border-radius: 2px;
    transition: transform .25s;
}
.hp-faq__chevron::before { left: 1px;  transform: translateY(-50%) rotate(45deg); }
.hp-faq__chevron::after  { right: 1px; transform: translateY(-50%) rotate(-45deg); }

.hp-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}
.hp-faq__answer p {
    margin: 0;
    padding: 0 24px 8px;
    font-size: 15px;
    color: #4b5563;
    line-height: 1.7;
}

.hp-faq__toggle:checked ~ .hp-faq__question { color: var(--ccm-primary); }
.hp-faq__toggle:checked ~ .hp-faq__question .hp-faq__chevron::before {
    transform: translateY(-50%) rotate(-45deg);
}
.hp-faq__toggle:checked ~ .hp-faq__question .hp-faq__chevron::after {
    transform: translateY(-50%) rotate(45deg);
}
.hp-faq__toggle:checked ~ .hp-faq__answer { max-height: 600px; }

@media (max-width: 768px) {
    .hp-faq__question { font-size: 15px; padding: 16px 18px; }
    .hp-faq__answer p { padding: 0 18px 8px; }
}

/* ============================================================
   HOMEPAGE — AFFILIATIONS & APPROVALS
   ============================================================ */

.hp-affil {
    background: #f7f8fa;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    padding: 36px 0;
}

.hp-affil__header {
    text-align: center;
    margin-bottom: 28px;
}

.hp-affil__heading {
    font-size: 20px;
    font-weight: 700;
    color: var(--ccm-heading);
    margin: 0;
    letter-spacing: -.01em;
}

/* ── Scrollable flex strip ── */
.hp-affil__scroll-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    /* Hide scrollbar visually but keep it functional */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE/Edge */
    /* Fade edges so it looks open-ended */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    padding: 8px 0 12px;
    cursor: grab;
}
.hp-affil__scroll-wrap::-webkit-scrollbar { display: none; }
.hp-affil__scroll-wrap:active { cursor: grabbing; }

.hp-affil__track {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 0 48px;
    /* Don't wrap — single horizontal row */
    flex-wrap: nowrap;
    width: max-content;
    min-width: 100%;
    /* Centre logos when they all fit without scrolling */
    justify-content: center;
}

.hp-affil__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    transition: transform .2s;
}
.hp-affil__item:hover { transform: translateY(-2px); }

.hp-affil__item img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: filter .25s, opacity .25s;
}


.hp-affil__name {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ccm-secondary);
    opacity: .5;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .hp-affil { padding: 24px 0; }
    .hp-affil__heading { font-size: 16px; }
    .hp-affil__track { gap: 32px; padding: 0 24px; justify-content: flex-start; }
    .hp-affil__item img { height: 44px; max-width: 90px; }
}

/* ============================================================
   CAMPUS LIFE PAGE  (page-campus-life.php)
   ============================================================ */

/* ── Hero ── */
.cl-hero {
    background: var(--ccm-secondary);
    text-align: center;
}
.cl-hero__inner { max-width: 780px; margin: 0 auto; }
.cl-hero__title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: var(--ccm-white);
    margin: 0 0 16px;
}
.cl-hero__intro {
    font-size: 18px;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
    margin: 0;
}

/* ── Sections ── */
.cl-section { background: var(--ccm-white); }
.cl-section--alt { background: #f7f8fa; }

.cl-section__header { margin-bottom: 20px; }

.cl-section__desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.75;
    max-width: 820px;
    margin: 0 auto 32px;
    text-align: center;
}

/* ── Media grid — shared ── */
.cl-media-grid {
    display: grid;
    gap: 16px;
}

/* figcaption */
.cl-media-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #e5e7eb;
    margin: 0;
}
.cl-media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.cl-media-item:hover img { transform: scale(1.04); }

.cl-media-item__video {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.cl-media-item__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.cl-media-item__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--ccm-white);
    background: linear-gradient(transparent, rgba(0,0,0,.55));
    line-height: 1.3;
}

/* ── Layout: Grid (3 equal columns) ── */
.cl-media-grid--grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
}

/* ── Layout: Mosaic (first item large, spans 2 rows + 2 cols) ── */
.cl-media-grid--mosaic {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
}
.cl-media-grid--mosaic .cl-media-item--primary {
    grid-column: span 2;
    grid-row: span 2;
}

/* ── Layout: Row (horizontal scroll strip) ── */
.cl-media-grid--row {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    grid-auto-rows: 220px;
    overflow-x: auto;
    grid-auto-flow: column;
    grid-template-columns: unset;
    display: flex;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 4px;
}
.cl-media-grid--row::-webkit-scrollbar { display: none; }
.cl-media-grid--row .cl-media-item {
    flex: 0 0 280px;
    height: 220px;
}
.cl-media-grid--row .cl-media-item img { height: 220px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cl-media-grid--grid   { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
    .cl-media-grid--mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
}
@media (max-width: 768px) {
    .cl-hero__title  { font-size: 26px; }
    .cl-hero__intro  { font-size: 16px; }
    .cl-media-grid--grid   { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .cl-media-grid--mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
    .cl-media-grid--mosaic .cl-media-item--primary { grid-column: 1; grid-row: 1; }
    .cl-media-grid--row .cl-media-item { flex: 0 0 240px; height: 180px; }
    .cl-section__desc { font-size: 15px; }
}
