/* ==========================================================================
   NACS Show 2026 - Exhibitor Card Grid Component
   Grid of exhibitor cards with name above logo image
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Section Container
   -------------------------------------------------------------------------- */
.exc {
    padding: 56px 80px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Grid Layout
   -------------------------------------------------------------------------- */
.exc__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* --------------------------------------------------------------------------
   Individual Card
   -------------------------------------------------------------------------- */
.exc__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 224px;
}

/* --------------------------------------------------------------------------
   Exhibitor Name
   -------------------------------------------------------------------------- */
.exc__name {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: #000000;
    text-align: center;
    width: 100%;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Logo Image
   -------------------------------------------------------------------------- */
.exc__image {
    width: 100%;
    height: 172px;
    position: relative;
    overflow: hidden;
}

.exc__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Mobile Styles (max-width: 768px)
   -------------------------------------------------------------------------- */
@media screen and (max-width: 768px) {
    .exc {
        padding: 0 20px;
    }

    .exc__grid {
        gap: 12px 20px;
    }

    .exc__card {
        width: calc(50% - 10px);
        gap: 16px;
    }

    .exc__name {
        font-size: 18px;
        line-height: 24px;
    }
}
