/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 22 2026 | 16:18:52 */
/* ==========================================
   NSA AUSTIN MEMBER DIRECTORY
   Large Square Photo Layout
   ========================================== */

.nsa-member-directory {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 65px 40px;
    max-width: 1120px;
    margin: 45px auto 60px;
    padding: 0 20px;
}


/* ------------------------------------------
   MEMBER
   ------------------------------------------ */

.nsa-member-card {
    text-align: center;
    padding: 0;
}


/* ------------------------------------------
   PHOTO
   ------------------------------------------ */

.nsa-member-photo {
    width: 100%;
    margin: 0 auto 20px;
    overflow: hidden;
    position: relative;
}

.nsa-member-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
    border-radius: 0;
    margin: 0;
    transition: transform 0.35s ease;
}


/* ------------------------------------------
   PHOTO HOVER
   ------------------------------------------ */

.nsa-member-card:hover .nsa-member-photo img {
    transform: scale(1.035);
}


/* ------------------------------------------
   MEMBER NAME
   ------------------------------------------ */

.nsa-member-name {
    margin: 0 0 9px;
    padding: 0;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 600;
}


/* ------------------------------------------
   LINKEDIN
   ------------------------------------------ */

.nsa-member-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}


/* LinkedIn "in" icon */

.nsa-member-linkedin::before {
    content: "in";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 21px;
    height: 21px;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    background: currentColor;
    color: #ffffff;
}


/* Arrow */

.nsa-member-linkedin::after {
    content: "→";
    font-size: 18px;
    margin-left: 1px;
}


/* LinkedIn hover */

.nsa-member-linkedin:hover {
    opacity: 0.7;
    text-decoration: none;
}


/* ------------------------------------------
   TABLET
   ------------------------------------------ */

@media (max-width: 900px) {

    .nsa-member-directory {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
        padding: 0 15px;
    }

}


/* ------------------------------------------
   MOBILE
   ------------------------------------------ */

@media (max-width: 600px) {

    .nsa-member-directory {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 0 20px;
    }

    .nsa-member-name {
        font-size: 20px;
    }

    .nsa-member-linkedin {
        font-size: 16px;
    }

}