/* ==========================================================================
   NACS Show 2026 - Circle Image Card Component
   Navy cards with circular images on dark gradient background
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container (dark gradient background)
   -------------------------------------------------------------------------- */
.cic {
    background: linear-gradient(180deg, #21243B 0%, #000000 100%);
    padding: 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Card Row (horizontal on desktop)
   -------------------------------------------------------------------------- */
.cic__row {
    display: flex;
    gap: 20px;
    align-items: stretch;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Individual Card
   -------------------------------------------------------------------------- */
.cic__card {
    flex: 1 0 0;
    min-width: 0;
    background: var(--nacs-color-navy, #00205B);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 4px;
    overflow: hidden;
    padding: 40px 24px;
}

/* Card Inner Content */
.cic__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    justify-content: center;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Circular Image
   -------------------------------------------------------------------------- */
.cic__image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.cic__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Header (Title + Subtitle)
   -------------------------------------------------------------------------- */
.cic__header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    text-align: center;
}

.cic__title {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
}

.cic__subtitle {
    font-family: var(--nacs-font-gotham);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Description
   -------------------------------------------------------------------------- */
.cic__desc {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    text-align: center;
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   CTA Button (Yellow Pill)
   -------------------------------------------------------------------------- */
.cic__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 56px;
    padding: 0 24px;
    background: var(--nacs-color-yellow, #FAE100);
    border-radius: 360px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}

.cic__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    text-decoration: none;
}

.cic__btn-text {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--nacs-color-navy, #00205B);
}

.cic__btn-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .cic {
        padding: 66px 20px;
    }

    .cic__row {
        flex-direction: column;
        gap: 24px;
    }

    .cic__card {
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .cic__title {
        font-size: 28px;
        line-height: 36px;
    }

    .cic__desc {
        font-size: 18px;
    }

    .cic__image {
        width: 150px;
        height: 150px;
    }
}
