/* ==========================================================================
   Contend Kids — Page Styles (Groups, Schedule, Activities, About)
   Prefix: ckp-
   ========================================================================== */

/* ---------- Base ---------- */
.ckp-page {
    font-family: 'Figtree', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    -webkit-font-smoothing: antialiased;
}

/* ---------- Nav (Yellow default) ---------- */
.ckp-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 52px;
    padding: 0 20px;
    background: #FFE81A;
    position: sticky;
    top: 0;
    z-index: 90;
}

.ckp-nav__back {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #1A1A6E;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.ckp-nav__title {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: #1A1A6E;
    letter-spacing: 0.5px;
}

/* Navy nav variant (About page) */
.ckp-nav--navy {
    background: #1A1A6E;
}

.ckp-nav__back--teal {
    color: #0FACB2;
}

.ckp-nav__title--white {
    color: #FFFFFF;
}

/* ==========================================================================
   GROUPS PAGE
   ========================================================================== */
.ckp-groups {
    background: #FFFFFF;
}

.ckp-groups__header {
    text-align: center;
    padding: 28px 20px 16px;
}

.ckp-groups__title {
    font-family: 'Lilita One', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #1A1A6E;
    margin: 0;
    line-height: 1.1;
}

.ckp-groups__highlight {
    background: #FFE81A;
    padding: 2px 10px;
    border-radius: 6px;
    display: inline-block;
}

.ckp-groups__subtitle {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: #1A1A6E;
    opacity: 0.6;
    margin: 8px 0 0;
}

.ckp-groups__cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 20px 20px;
    flex: 1;
}

.ckp-group-card {
    border-radius: 16px;
    padding: 24px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ckp-group-card--teal  { background: #0FACB2; }
.ckp-group-card--orange { background: #FF8C00; }
.ckp-group-card--purple { background: #60286C; }

.ckp-group-card__emoji {
    font-size: 28px;
    margin-bottom: 6px;
}

.ckp-group-card__age {
    font-family: 'Figtree', sans-serif;
    font-size: 18px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: 0.5px;
}

.ckp-group-card__name {
    font-family: 'Lilita One', cursive;
    font-size: 22px;
    color: #FFFFFF;
    margin-top: 2px;
}

.ckp-group-card__desc {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

/* ==========================================================================
   SCHEDULE PAGE
   ========================================================================== */
.ckp-schedule {
    background: #FFFFFF;
}

/* Now Banner */
.ckp-schedule__now {
    background: #FF3B7A;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    position: sticky;
    top: 52px;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 59, 122, 0.3);
}

.ckp-schedule__now-label {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
}

.ckp-schedule__now-session {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    flex: 1;
}

.ckp-schedule__now-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FFFFFF;
    animation: ckp-pulse 1.5s ease-in-out infinite;
}

@keyframes ckp-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Day Tabs */
.ckp-schedule__tabs {
    display: flex;
    padding: 16px 20px 0;
    gap: 0;
}

.ckp-schedule__tab {
    flex: 1;
    height: 44px;
    border: none;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: #666;
    background: #F0F0F0;
    cursor: pointer;
    letter-spacing: 1px;
}

.ckp-schedule__tab--first {
    border-radius: 10px 0 0 10px;
}

.ckp-schedule__tab--last {
    border-radius: 0 10px 10px 0;
}

.ckp-schedule__tab--active {
    background: #0FACB2;
    color: #FFFFFF;
}

/* Schedule List */
.ckp-schedule__list {
    padding: 8px 20px 20px;
}

.ckp-schedule__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #F0F0F0;
}

.ckp-schedule__item:last-child {
    border-bottom: none;
}

.ckp-schedule__time {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #999999;
    min-width: 36px;
    padding-top: 2px;
}

.ckp-schedule__detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.ckp-schedule__item-title {
    font-family: 'Figtree', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1A1A6E;
}

.ckp-schedule__item-sub {
    font-family: 'Figtree', sans-serif;
    font-size: 12.5px;
    color: #999999;
    line-height: 1.5;
}

/* Session labels */
.ckp-schedule__session-label {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3px;
    color: #1A1A6E;
    background: #F5F5F7;
    padding: 10px 20px;
    margin: 0 -20px;
}

.ckp-schedule__session-label--admin {
    background: #1A1A6E;
    color: #FFE81A;
}

.ckp-schedule__tab--admin {
    background: #1A1A6E;
    color: #FFE81A;
    border-color: #1A1A6E;
    border-radius: 8px 0 0 8px;
}

/* When FRI is visible, SAT loses left curve */
.ckp-schedule__tab--first.ckp-schedule__tab--no-left-curve {
    border-radius: 0;
}

/* Admin-only items */
.ckp-schedule__item--admin {
    background: #1A1A6E08;
    border-left: 3px solid #1A1A6E;
    border-radius: 0 10px 10px 0;
    margin: 4px -8px;
    padding: 14px 16px;
    border-bottom: none;
}

.ckp-schedule__item--admin .ckp-schedule__item-title {
    color: #1A1A6E;
}

.ckp-schedule__item--admin .ckp-schedule__item-sub {
    color: #1A1A6EAA;
}

.ckp-schedule__session-label--main {
    background: linear-gradient(135deg, #60286C, #1A1A6E);
    color: #FFE81A;
}

/* Badges */
.ckp-schedule__badge {
    font-family: 'Figtree', sans-serif;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 4px;
    color: #FFFFFF;
    flex-shrink: 0;
    align-self: center;
}

.ckp-schedule__badge--teal { background: #0FACB2; }
.ckp-schedule__badge--orange { background: #FF8C00; }
.ckp-schedule__badge--grey { background: #999999; }

/* Check-in/out items */
.ckp-schedule__item--checkin {
    background: #E8F8F8;
    border-radius: 10px;
    margin: 4px -8px;
    padding: 14px 16px;
    border-bottom: none;
}

.ckp-schedule__item--checkout {
    background: #FFF3E0;
    border-radius: 10px;
    margin: 4px -8px;
    padding: 14px 16px;
    border-bottom: none;
}

/* Break item */
.ckp-schedule__item--break {
    background: #F5F5F7;
    border-radius: 10px;
    margin: 8px -8px;
    padding: 14px 16px;
    border-bottom: none;
}

/* Main programme event */
.ckp-schedule__item--main {
    background: linear-gradient(135deg, #60286C08, #1A1A6E08);
    border-left: 3px solid #60286C;
    border-radius: 0 10px 10px 0;
    margin: 4px -8px;
    padding: 14px 16px;
    border-bottom: none;
}

.ckp-schedule__item--main .ckp-schedule__item-title {
    color: #60286C;
}

.ckp-schedule__item--main .ckp-schedule__item-sub {
    color: #60286CAA;
    line-height: 1.5;
}

/* Safe Zone banner */
.ckp-schedule__safezone {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    margin: 8px -8px;
    border-radius: 12px;
    background: #FFF8E1;
    border: 1px dashed #FFB300;
}

.ckp-schedule__safezone-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.ckp-schedule__safezone-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ckp-schedule__safezone-title {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: #B8860B;
    letter-spacing: 0.5px;
}

.ckp-schedule__safezone-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    color: #B8860BAA;
    line-height: 1.4;
}

/* Expandable items */
.ckp-schedule__item--expandable {
    cursor: pointer;
}

.ckp-schedule__expand-arrow {
    font-size: 14px;
    color: #999999;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.ckp-schedule__expand-content {
    padding: 0 0 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Age group cards */
.ckp-schedule__age-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px;
    border-radius: 14px;
    color: #FFFFFF;
}

.ckp-schedule__age-card--teal { background: #0FACB2; }
.ckp-schedule__age-card--orange { background: #FF8C00; }
.ckp-schedule__age-card--purple { background: #60286C; }

.ckp-schedule__age-label {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFFAA;
    text-transform: uppercase;
}

.ckp-schedule__age-title {
    font-family: 'Lilita One', cursive;
    font-size: 18px;
    color: #FFFFFF;
}

.ckp-schedule__age-ref {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #FFE81A;
    letter-spacing: 0.5px;
}

.ckp-schedule__age-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #FFFFFFCC;
    margin: 4px 0 0;
}

/* ==========================================================================
   FUN ZONE PAGE
   ========================================================================== */
.ckp-funzone {
    background: #FFFFFF;
}

.ckp-funzone__hero {
    background: linear-gradient(135deg, #1A1A6E 0%, #60286C 100%);
    padding: 28px 24px 20px;
    text-align: center;
}

.ckp-funzone__emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.ckp-funzone__title {
    font-family: 'Lilita One', cursive;
    font-size: 32px;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.05;
}

.ckp-funzone__sub {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    color: #FFFFFFAA;
    margin: 8px 0 0;
}

.ckp-funzone__tabs {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 12px 20px;
    position: sticky;
    top: 52px;
    z-index: 5;
    background: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
}

.ckp-funzone__tabs::-webkit-scrollbar { display: none; }

.ckp-funzone__tab {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    color: #999999;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.ckp-funzone__tab--active {
    background: #60286C;
    color: #FFFFFF;
    border-color: #60286C;
}

.ckp-funzone__game {
    padding: 20px;
    min-height: 400px;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.ckp-about {
    background: #FFE81A;
}

.ckp-about__header {
    text-align: center;
    padding: 32px 20px 16px;
}

.ckp-about__emoji {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.ckp-about__title {
    font-family: 'Lilita One', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #1A1A6E;
    margin: 0;
    line-height: 1.1;
    text-align: center;
}

.ckp-about__bar {
    width: 50px;
    height: 3px;
    background: #1A1A6E;
    margin: 14px auto 0;
    border-radius: 2px;
}

.ckp-about__body {
    padding: 20px 24px;
    flex: 1;
}

.ckp-about__body p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(26, 26, 110, 0.78);
    margin: 0 0 16px;
}

.ckp-about__body p:last-child {
    margin-bottom: 0;
}

.ckp-about__footer {
    text-align: center;
    padding: 24px 20px 32px;
}

.ckp-about__footer-text {
    font-family: 'Figtree', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: rgba(26, 26, 110, 0.44);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ==========================================================================
   SESSIONS PAGE
   ========================================================================== */

.ckp-sessions {
    background: #FFFFFF;
}

/* Session tabs */
.ckp-sessions__tabs {
    display: flex;
    padding: 12px 20px;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    position: sticky;
    top: 52px;
    z-index: 5;
    background: #FFFFFF;
    border-bottom: 1px solid #F0F0F0;
}

.ckp-sessions__tabs::-webkit-scrollbar { display: none; }

.ckp-sessions__tab {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 8px 14px;
    border-radius: 20px;
    border: 1px solid #E0E0E0;
    background: #FFFFFF;
    color: #999999;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.ckp-sessions__tab--active {
    background: #1A1A6E;
    color: #FFFFFF;
    border-color: #1A1A6E;
}

/* Notice modal */
.ckp-notice-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.ckp-notice-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}

.ckp-notice-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    width: calc(100% - 32px);
    max-width: 380px;
    background: #FFFFFF;
    border-radius: 20px;
    z-index: 201;
    display: flex;
    flex-direction: column;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.3s;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    overflow: hidden;
}

.ckp-notice-modal.is-open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.ckp-notice-modal__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 16px 0 0;
}

.ckp-notice-modal__header {
    text-align: center;
    padding: 14px 24px 10px;
}

.ckp-notice-modal__title {
    font-family: 'Lilita One', cursive;
    font-size: 22px;
    color: #1A1A6E;
}

.ckp-notice-modal__body {
    padding: 0 24px 8px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.ckp-notice-modal__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.ckp-notice-modal__num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #1A1A6E;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ckp-notice-modal__item p {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #555555;
    margin: 0;
}

.ckp-notice-modal__item a {
    color: #0FACB2;
    font-weight: 700;
    text-decoration: underline;
}

.ckp-notice-modal__item strong {
    color: #DC2626;
}

.ckp-notice-modal__btn {
    margin: 12px 24px 20px;
    padding: 14px;
    border-radius: 12px;
    background: #0FACB2;
    color: #FFFFFF;
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    text-align: center;
    transition: background 0.2s;
}

.ckp-notice-modal__btn:active {
    background: #0D8E93;
}

/* Session header */
.ckp-sessions__header {
    padding: 28px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ckp-sessions__header--pink { background: linear-gradient(135deg, #FF3B7A, #D42769); }
.ckp-sessions__header--orange { background: linear-gradient(135deg, #FF8C00, #E67600); }
.ckp-sessions__header--teal { background: linear-gradient(135deg, #0FACB2, #0D8E93); }
.ckp-sessions__header--purple { background: linear-gradient(135deg, #60286C, #3D1A45); }

.ckp-sessions__when {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFFFFFAA;
}

.ckp-sessions__title {
    font-family: 'Lilita One', cursive;
    font-size: 28px;
    color: #FFFFFF;
    margin: 0;
}

.ckp-sessions__main-badge {
    display: inline-block;
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FFE81A;
    background: #FFFFFF15;
    padding: 4px 12px;
    border-radius: 4px;
    width: fit-content;
    margin-top: 4px;
}

/* Content blocks */
.ckp-sessions__block {
    padding: 20px 24px;
    border-bottom: 1px solid #F0F0F0;
}

.ckp-sessions__block--subtle {
    background: #F9F9FB;
    padding: 14px 24px;
}

.ckp-sessions__block-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 10px;
}

.ckp-sessions__block-time {
    font-family: 'Figtree', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #0FACB2;
    letter-spacing: 1px;
}

.ckp-sessions__block-title {
    font-family: 'Lilita One', cursive;
    font-size: 20px;
    color: #1A1A6E;
    margin: 0;
}

.ckp-sessions__block-badge {
    font-family: 'Figtree', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #FFFFFF;
    background: #1A1A6E;
    padding: 3px 10px;
    border-radius: 4px;
    width: fit-content;
    letter-spacing: 1px;
}

.ckp-sessions__block-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 10px;
}

.ckp-sessions__block-desc:last-child {
    margin-bottom: 0;
}

.ckp-sessions__block-note {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: #FF8C00;
    background: #FFF8E1;
    padding: 10px 14px;
    border-radius: 8px;
    margin-top: 10px;
    border-left: 3px solid #FF8C00;
}

.ckp-sessions__age-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

/* Safe Zone block */
.ckp-sessions__safezone {
    padding: 20px 24px;
    background: #FFF8E1;
    border-top: 3px solid #FFB300;
}

.ckp-sessions__safezone-title {
    font-family: 'Lilita One', cursive;
    font-size: 18px;
    color: #B8860B;
    margin: 0 0 10px;
}

.ckp-sessions__safezone-desc {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #8B6914;
    margin: 0 0 10px;
}

.ckp-sessions__safezone-desc:last-child {
    margin-bottom: 0;
}

.ckp-sessions__safezone-note {
    font-family: 'Figtree', sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #B8860B;
    font-weight: 700;
    margin: 10px 0 0;
    font-style: italic;
}

/* ==========================================================================
   MEET THE TEAM
   ========================================================================== */

.ckp-team__intro {
    text-align: center;
    padding: 28px 20px 12px;
}

.ckp-team__heading {
    font-family: 'Lilita One', cursive;
    font-size: 32px;
    color: #fff;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.ckp-team__intro-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 10px;
}

.ckp-team__intro-dots span {
    border-radius: 50%;
    display: inline-block;
}

.ckp-team__desc {
    font-family: 'Figtree', sans-serif;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.ckp-team__list {
    padding: 8px 16px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ── Card ── */

.ckp-team__card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.ckp-team__card:active { transform: scale(0.97); }

/* When expanded, span full width */
.ckp-team__card.is-open {
    grid-column: 1 / -1;
}

/* ── Photo area ── */

.ckp-team__card-photo {
    width: 100%;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ckp-team__card-photo--pink { background: linear-gradient(160deg, #FF6B9D 0%, #FF3B7A 50%, #D42769 100%); }
.ckp-team__card-photo--teal { background: linear-gradient(160deg, #3DD6DB 0%, #0FACB2 50%, #0A8A8F 100%); }
.ckp-team__card-photo--orange { background: linear-gradient(160deg, #FFB347 0%, #FF8C00 50%, #E67600 100%); }
.ckp-team__card-photo--purple { background: linear-gradient(160deg, #9B4DCA 0%, #60286C 50%, #3D1A45 100%); }
.ckp-team__card-photo--yellow { background: linear-gradient(160deg, #FFF176 0%, #FFE81A 50%, #FFC107 100%); }

.ckp-team__card-initial {
    font-family: 'Lilita One', cursive;
    font-size: 64px;
    color: rgba(255,255,255,0.3);
    user-select: none;
}

.ckp-team__card-initial--dark {
    color: rgba(0,0,0,0.15);
}

.ckp-team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ── Label area ── */

.ckp-team__card-label {
    padding: 12px 12px 14px;
}

.ckp-team__name {
    font-family: 'Figtree', sans-serif;
    font-weight: 900;
    font-size: 16px;
    color: #1a1a1a;
    display: block;
    margin-bottom: 4px;
}

.ckp-team__role-pill {
    font-family: 'Figtree', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
    color: #fff;
}

.ckp-team__role-pill--pink { background: #FF3B7A; }
.ckp-team__role-pill--teal { background: #0FACB2; }
.ckp-team__role-pill--orange { background: #FF8C00; }
.ckp-team__role-pill--purple { background: #60286C; }
.ckp-team__role-pill--yellow { background: #FFC107; color: #1a1a1a; }

/* ── Expandable body ── */

.ckp-team__card-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.ckp-team__card.is-open .ckp-team__card-body {
    max-height: 900px;
}

.ckp-team__card-body-inner {
    padding: 0 14px 18px;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
    padding-top: 14px;
}

.ckp-team__card-body p {
    font-family: 'Figtree', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

/* ── Favourites ── */

.ckp-team__favs {
    margin-top: 12px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.ckp-team__fav {
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ckp-team__fav-icon {
    font-size: 16px;
    line-height: 1;
}

.ckp-team__fav-value {
    font-weight: 600;
    color: #555;
    font-size: 12px;
}
