/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Sep 22 2026 | 23:10:22 */
/* =========================================================
   NSA AUSTIN DIRECTORY PROFILE
   HEADSHOT UPLOAD / PROFILE CSS
   ========================================================= */


/* ---------------------------------------------------------
   HEADSHOT SECTION
   --------------------------------------------------------- */

.nsa-headshot-section {
    margin-bottom: 40px;
}


/* ---------------------------------------------------------
   HEADSHOT UPLOAD AREA
   --------------------------------------------------------- */

.nsa-headshot-upload-area {
    display: flex;
    align-items: center;
    gap: 35px;
    margin-top: 25px;
}


/* ---------------------------------------------------------
   HEADSHOT PREVIEW
   --------------------------------------------------------- */

.nsa-headshot-preview {
    width: 180px;
    height: 180px;
    flex: 0 0 180px;
    overflow: hidden;
    position: relative;
    background: #f5f6f7;
}


/* Actual uploaded/current image */

.nsa-headshot-preview img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
    padding: 0;
}


/* ---------------------------------------------------------
   EMPTY PHOTO PLACEHOLDER
   --------------------------------------------------------- */

.nsa-headshot-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;

    color: #777;
    background: #f5f6f7;
}


/* ---------------------------------------------------------
   CONTROLS BESIDE PHOTO
   --------------------------------------------------------- */

.nsa-headshot-controls {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


/* ---------------------------------------------------------
   HIDE NATIVE FILE INPUT
   --------------------------------------------------------- */

#nsa-headshot {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
    white-space: nowrap;

    border: 0;
}


/* ---------------------------------------------------------
   UPLOAD / REPLACE BUTTON
   --------------------------------------------------------- */

.nsa-headshot-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 13px 21px;

    cursor: pointer;

    font-size: 15px;
    line-height: 1.25;
    font-weight: 600;

    text-decoration: none;

    border: 1px solid currentColor;
    background: transparent;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


/* Hover */

.nsa-headshot-button:hover {
    opacity: 0.75;
    text-decoration: none;
}


/* Keyboard focus */

.nsa-headshot-button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   REMOVE HEADSHOT
   --------------------------------------------------------- */

.nsa-remove-headshot {
    display: flex;
    align-items: center;

    margin-top: 16px;

    font-size: 14px;
    line-height: 1.4;

    cursor: pointer;
}


/* Checkbox */

.nsa-remove-headshot input[type="checkbox"] {
    margin: 0 7px 0 0;

    width: 16px;
    height: 16px;

    cursor: pointer;
}


/* ---------------------------------------------------------
   HEADSHOT HELP TEXT
   --------------------------------------------------------- */

.nsa-headshot-help {
    margin: 12px 0 0;

    font-size: 13px;
    line-height: 1.5;

    color: #777;
}


/* Keep the second help paragraph a little tighter */

.nsa-headshot-help + .nsa-headshot-help {
    margin-top: 5px;
}


/* ---------------------------------------------------------
   SUCCESS MESSAGE
   --------------------------------------------------------- */

.nsa-profile-success {
    margin: 0 0 30px;

    padding: 15px 18px;

    font-size: 15px;
    line-height: 1.5;

    background: #f1f8f3;
    border-left: 4px solid #4a8f5c;
}


/* ---------------------------------------------------------
   ERROR MESSAGE
   --------------------------------------------------------- */

.nsa-profile-error {
    margin: 0 0 30px;

    padding: 15px 18px;

    font-size: 15px;
    line-height: 1.5;

    background: #fff5f5;
    border-left: 4px solid #b84a4a;
}


/* ---------------------------------------------------------
   PROFILE FORM — GENERAL
   --------------------------------------------------------- */

.nsa-directory-profile {
    max-width: 850px;
    margin: 0 auto;
}


/* Main heading */

.nsa-directory-profile h2 {
    margin-bottom: 12px;
}


/* Section headings */

.nsa-directory-profile .nsa-profile-section h3 {
    margin-top: 0;
    margin-bottom: 10px;
}


/* Intro */

.nsa-profile-intro {
    margin-bottom: 40px;
}


/* Field descriptions */

.nsa-field-description {
    margin-top: 0;
    margin-bottom: 22px;

    font-size: 15px;
    line-height: 1.6;
}


/* ---------------------------------------------------------
   PROFILE SECTIONS
   --------------------------------------------------------- */

.nsa-profile-section {
    margin-bottom: 45px;
}


/* ---------------------------------------------------------
   FORM LABELS
   --------------------------------------------------------- */

.nsa-directory-profile label {
    display: block;

    margin-bottom: 7px;

    font-size: 15px;
    line-height: 1.4;
    font-weight: 600;
}


/* Don't make the remove-headshot label look like a normal field label */

.nsa-directory-profile .nsa-remove-headshot {
    font-weight: 400;
}


/* ---------------------------------------------------------
   TEXT INPUTS / TEXTAREA / SELECT
   --------------------------------------------------------- */

.nsa-directory-profile input[type="text"],
.nsa-directory-profile input[type="url"],
.nsa-directory-profile textarea,
.nsa-directory-profile select {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    margin-bottom: 20px;

    font-size: 16px;
    line-height: 1.45;

    border: 1px solid #ccc;
    border-radius: 0;

    background: #fff;
}


/* Textarea */

.nsa-directory-profile textarea {
    min-height: 150px;
    resize: vertical;
}


/* Focus */

.nsa-directory-profile input[type="text"]:focus,
.nsa-directory-profile input[type="url"]:focus,
.nsa-directory-profile textarea:focus,
.nsa-directory-profile select:focus {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}


/* ---------------------------------------------------------
   DIRECTORY SELECT
   --------------------------------------------------------- */

.nsa-directory-choice select {
    max-width: 400px;
}


/* ---------------------------------------------------------
   SAVE BUTTON
   --------------------------------------------------------- */

.nsa-profile-submit {
    margin-top: 10px;
}


.nsa-profile-submit button {
    display: inline-block;

    padding: 14px 24px;

    border: 0;

    cursor: pointer;

    font-size: 16px;
    line-height: 1.3;
    font-weight: 600;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}


.nsa-profile-submit button:hover {
    opacity: 0.8;
}


/* Keyboard focus */

.nsa-profile-submit button:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 600px) {

    .nsa-headshot-upload-area {
        flex-direction: column;
        align-items: flex-start;
        gap: 22px;
    }


    .nsa-headshot-preview {
        width: 180px;
        height: 180px;
        flex: 0 0 180px;
    }


    .nsa-headshot-controls {
        width: 100%;
    }


    .nsa-headshot-button {
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
    }


    .nsa-directory-profile {
        width: 100%;
    }


    .nsa-profile-section {
        margin-bottom: 38px;
    }


    .nsa-directory-profile h2 {
        font-size: 28px;
    }


    .nsa-directory-profile .nsa-profile-section h3 {
        font-size: 22px;
    }

}


/* ---------------------------------------------------------
   VERY SMALL PHONES
   --------------------------------------------------------- */

@media (max-width: 400px) {

    .nsa-headshot-preview {
        width: 150px;
        height: 150px;
        flex-basis: 150px;
    }


    .nsa-headshot-button {
        width: 100%;
        text-align: center;
    }

}