/* ==========================================================================
   NACS Show 2026 - Simple Profile Card Component
   Clean card with square photo, eyebrow, name, and title
   Tokens: NACSShow2026Tokens.css
   ========================================================================== */

/* --------------------------------------------------------------------------
   Card Container
   -------------------------------------------------------------------------- */
.spc {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    border-radius: 4px;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Clickable Link Wrapper
   -------------------------------------------------------------------------- */
.spc__link {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease;
}

.spc__link:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

/* --------------------------------------------------------------------------
   Square Photo
   -------------------------------------------------------------------------- */
.spc__photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 4px 4px 0 0;
}

.spc__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Info Section
   -------------------------------------------------------------------------- */
.spc__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* --------------------------------------------------------------------------
   Eyebrow
   -------------------------------------------------------------------------- */
.spc__eyebrow {
    font-family: var(--nacs-font-gotham);
    font-weight: 400;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #000000;
}

/* --------------------------------------------------------------------------
   Person Name
   -------------------------------------------------------------------------- */
.spc__name {
    font-family: var(--nacs-font-gotham);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: capitalize;
    color: var(--nacs-color-navy, #00205B);
    margin: 0;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Person Title
   -------------------------------------------------------------------------- */
.spc__title {
    font-family: var(--nacs-font-gotham);
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0;
    color: #000000;
    margin: 0;
    width: 100%;
}
