.rush-intro:hover {
    box-shadow: none;
}
/* Styles for Rush Info page */

.rush-header-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 70vh;
    background-size: cover;
    background-position: center 55%;
    background-attachment: fixed; 
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding: 0 1rem;
}

.rush-header-section h1 {
    font-size: 3.2rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.rush-intro {
    /* Make intro a full-width, centered, minimal container (no boxed background) */
    margin-top: 2.2rem;
    padding: clamp(1rem, 3.5vw, 2.5rem) 6vw;
    background: none;
    border-radius: 0;
    max-width: none;
    box-shadow: none;
    text-align: center;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 1.6rem;
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
}


@keyframes pull-in {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.rush-big-title {
    font-size: clamp(1.9rem, 4.6vw, 3.6rem);
    font-weight: 600;
    text-align: center;
    margin: 0 auto 1.25rem auto;
    line-height: 1.05;
    max-width: 1200px;
}

.rush-description {
    font-size: clamp(1.05rem, 1.9vw, 1.45rem);
    text-align: center;
    margin: 0 auto 1.8rem auto;
    max-width: 1100px;
    line-height: 1.6;
}

.rush-purple-btn {
    display: inline-block;
    background: #6a1fae;
    color: #fff;
    border-radius: 14px;
    padding: 1rem 2.2rem;
    font-size: 1.25rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    margin-bottom: 2.2rem;
    transition: background 0.2s;
}

.rush-purple-btn:hover {
    background: #4d1580;
}

.rush-testimonials {
    /* Allow testimonials to take more horizontal space with smaller gutters */
    width: calc(100% - 6vw);
    max-width: 1400px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 3vw;
}

.rush-testimonial-row {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
    padding: 0.6rem 0;
}


.rush-testimonial-row.reverse {
    flex-direction: row-reverse;
}

.rush-testimonial-row.no-bg {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0.8rem 0;
}

.rush-testimonial-img {
    flex: 0 0 clamp(160px, 18vw, 320px);
    display: flex;
    justify-content: center;
    align-items: center;
}

.rush-headshot {
    width: clamp(140px, 18vw, 320px);
    height: clamp(140px, 18vw, 320px);
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
}

.rush-testimonial-text {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
}

.rush-testimonial-text.right-align {
    align-items: flex-end;
    text-align: left;
    position: relative;
}

.rush-name.bottom-right {
    position: static;
    display: block;
    margin-top: 0.5rem;
    margin-bottom: 0;
    margin-right: 0;
}

.rush-quote {
    font-size: clamp(1.05rem, 1.9vw, 1.6rem);
    font-style: normal;
    margin-bottom: 0.9rem;
}

.testimonial-style {
    font-size: clamp(1.05rem, 1.8vw, 1.45rem);
    font-style: normal;
    color: #222;
    background: none;
    border-left: 4px solid #6a1fae;
    padding-left: 1.1rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.rush-name {
    font-size: 1.6rem;
    color: #111;
    font-weight: bold;
}

/* Photo grid: increase size and reduce side gutters */
.rush-grid-section {
    max-width: calc(100% - 6vw);
    margin: 0 auto 4.5rem auto;
    padding: 0 3vw;
}
.rush-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}
.rush-photo-grid img {
    width: 100% !important;
    height: clamp(220px, 26vw, 360px) !important;
    object-fit: cover !important;
    aspect-ratio: 16/9;
    border-radius: 16px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .rush-photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.3rem;
    }
    .rush-photo-grid img {
        height: clamp(160px, 28vw, 260px) !important;
    }
}

@media (max-width: 480px) {
    .rush-photo-grid {
        grid-template-columns: 1fr;
    }
    .rush-photo-grid img {
        height: clamp(140px, 40vw, 220px) !important;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    main {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .rush-header-section {
        height: 100vh;
        min-height: 100vh;
        padding: 0;
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
        background-attachment: initial !important;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        position: relative;
        width: 100%;
        max-width: 100vw;
    }

    .rush-header-section h1 {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        width: 100vw;
        font-size: clamp(1rem, 5vw, 2rem);
        margin: 0 auto;
        color: white;
        text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
        z-index: 2;
        padding: 0 5vw;
        box-sizing: border-box;
    }

    .rush-intro {
        padding: 1.2rem 1rem;
        font-size: 1rem;
        max-width: 98vw;
        margin-top: 1rem;
    }

    .rush-big-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }

    .rush-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 0.5rem;
    }

    .rush-purple-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1.1rem;
    }

    .rush-testimonials {
        padding: 0 1rem;
        width: 100%;
        max-width: 98vw;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .rush-testimonial-row,
    .rush-testimonial-row.reverse {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 0;
    }

    .rush-testimonial-img {
        flex: 0 0 auto;
        margin-bottom: 0.5rem;
    }

    .rush-headshot {
        width: 260px;
        height: 260px;
    }

    .rush-testimonial-text {
        align-items: center;
        text-align: center;
    }

    .rush-testimonial-text.right-align {
        align-items: center;
        text-align: center;
    }

    .testimonial-style {
        border-left: none;
        border-top: 4px solid #6a1fae;
        padding-left: 0;
        padding-top: 0.8rem;
    }

    .rush-faq-section {
        max-width: 98vw !important;
        padding: 0 1rem;
        margin-bottom: 3rem !important;
    }

    .rush-faq-section h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
        padding: 0 0.5rem;
    }

    .faq-dropdown {
        margin-bottom: 0.8rem !important;
    }

    .faq-toggle {
        padding: 1rem 1.5rem !important;
        font-size: 1.1rem !important;
    }

    .faq-arrow {
        right: 1.2rem !important;
    }

    .faq-content {
        padding: 0 1.5rem 0 1.5rem !important;
        font-size: 1rem !important;
    }

    .recruitment-chair-message {
        max-width: 98vw !important;
        padding: 0 1rem;
        margin-bottom: 3rem !important;
    }

    .recruitment-chair-message h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
    }

    .recruitment-chair-message > div {
        flex-direction: column !important;
        gap: 1.5rem !important;
    }

    .recruitment-chair-message img {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        aspect-ratio: 3/4;
    }

    .recruitment-chair-message > div > div:last-child {
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 0 0.5rem;
    }

    .recruitment-chair-message > div > div:last-child > div {
        font-size: 1rem !important;
    }

    .rush-grid-section {
        max-width: 98vw !important;
        padding: 0 1rem !important;
        margin-bottom: 3rem !important;
    }

    .rush-grid-section h2 {
        font-size: clamp(1.8rem, 5vw, 2.4rem) !important;
        margin-bottom: 1.5rem !important;
    }

    .rush-photo-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .rush-photo-grid img {
        height: 200px !important;
    }

    .rush-grid-section > div:last-child {
        font-size: 1rem !important;
        padding: 0 0.5rem;
    }
}

@media (max-width: 480px) {
    .rush-header-section {
        height: 40vh;
        min-height: 250px;
        background-position: center center;
        background-size: cover;
    }

    .rush-header-section h1 {
        font-size: 1.8rem;
    }

    .rush-headshot {
        width: 220px;
        height: 220px;
    }

    .rush-photo-grid img {
        height: 180px !important;
    }
}
