/* Force current menu item text color to white on mobile */
@media screen and (max-width: 800px) {
    .s-header__menu-links .current a {
        color: #fff !important;
        opacity: 0 !important;
        visibility: visible !important;
    }
}
/* Make menu hover background much wider on mobile */
@media screen and (max-width: 800px) {
    .s-header__menu-links a:hover, .s-header__menu-links a:focus {
        min-width: 90vw !important;
        width: 90vw !important;
        box-sizing: border-box;
        left: 50%;
        transform: translateX(-50%);
        display: block;
        text-align: center;
    }
}
/* Make main menu navigation button hover box wider on mobile only */
@media screen and (max-width: 800px) {
    .s-header__menu-links a:hover, .s-header__menu-links a:focus {
        padding-left: 2.5em !important;
        padding-right: 2.5em !important;
        transition: padding 0.2s;
    }
}
/* Make .p-button a hover box wider on mobile only */
@media screen and (max-width: 800px) {
    .p-button a:hover, .p-button a:focus {
        padding-left: 2.5em !important;
        padding-right: 2.5em !important;
        transition: padding 0.2s;
    }
}
/* Make ABOUT page-title smaller and left-aligned with margin on mobile only, with higher specificity */
@media screen and (max-width: 800px) {
    .s-pageheader .row .column .page-title {
        font-size: 99px !important;
        text-align: left !important;
        margin-left: 3vw !important;
        margin-right: 0 !important;
        display: block !important;
    }
    .s-pageheader .row .column {
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}
/* Make ABOUT page-title smaller and left-aligned with margin on mobile only */
@media screen and (max-width: 800px) {
    .page-title {
        font-size: 7vw !important;
        text-align: left !important;
        margin-left: 4vw !important;
        margin-right: 0 !important;
        display: block;
    }
}
/* Center the ABOUT page-title on mobile only */
@media screen and (max-width: 800px) {
    .page-title {
        text-align: center !important;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }
}
/* Actually hide the 'words' span in Bio 150 and Bio 250 on mobile only */
@media screen and (max-width: 800px) {
    .hide-on-mobile-words {
        display: none !important;
    }
}
/* Hide the word 'words' in Bio 150 and Bio 250 on mobile only */
@media screen and (max-width: 800px) {
    #bio150 a::after,
    #bio250 a::after {
        content: '';
    }
    #bio150 a,
    #bio250 a {
        /* Remove 'words' if present */
        font-size: inherit;
    }
}
/* Ensure second paragraph in .pageintro has same font size as the first on mobile */
@media screen and (max-width: 800px) {
    .pageintro .lead p:nth-of-type(2) {
        font-size: inherit !important;
        line-height: inherit !important;
    }
}
/* Hide #caption-right on mobile only */
@media screen and (max-width: 800px) {
    #caption-right {
        display: none !important;
    }
}
/* Make .caption and its text much smaller on mobile only */
@media screen and (max-width: 800px) {
    .caption {
        font-size: 2.8vw;
    }
    .caption p,
    .caption #caption-right {
        font-size: 2.8vw !important;
        line-height: 1.2;
    }
}
/* Justify paragraph text on mobile only */
@media screen and (max-width: 800px) {
    p {
        text-align: justify;
    }
}






.s-pageheader {
	background-image: url("../images/Article\ Headshot.png");
	background-size : cover;
	background-position-x: center;
    background-position-y: 7%;
	background-repeat: no-repeat;
    padding-top: 16rem !important;
    opacity: 92%;
}

.s-header__menu-links a {
    display: inline-block;
    font-family: var(--font-1);
    font-weight: 400;
    font-size: 1.85rem;
    line-height: var(--vspace-1);
    color: rgba(255, 255, 255, 0.805);
    padding: 0 1.7rem;
    border-radius: 6px;
    text-decoration: none;
    position: relative;
    transition: color 0.2s;
    z-index: 1;
}

.s-header__menu-links a::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 85%; /* Match this value for both hover and current */
    height: 100%;
    background: rgb(213, 213, 213);
    border-radius: 6px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.25s;
}


.s-header__menu-links a:hover::before,
.s-header__menu-links a:focus::before,
.s-header__menu-links .current a::before {
    opacity: 1;
}

.s-header__menu-links .current a {
    color: #222 !important;
    position: relative;
    border-bottom: none !important;
    box-shadow: none !important;
    background: none !important;
}
.s-header__menu-links a:hover,
.s-header__menu-links a:focus {
    color: #222;
}

.s-header__menu-links a:hover::before,
.s-header__menu-links a:focus::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
}

.s-header__menu-links .current a {
    color: #222 !important;
    position: relative;
    border-bottom: none !important; /* Remove underline */
    box-shadow: none !important;    /* Remove any shadow underline */
}

.s-header__menu-links .current a::before {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
    background: rgb(213, 213, 213);
}


.logo-text {
    font-family: serif;         /* or your .intro-big-title font-family */
    font-size: 2.5rem;          /* adjust as needed */
    font-weight: bold;
    color: #fff;                /* or your preferred color */
    letter-spacing: 2px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.25);
    display: inline-block;
}

.s-header__inner {
    height: 100%;
    align-items: center;
}


.caption {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem; /* optional spacing between items */
    width: 100%;
}
.caption > * {
    float: none;
    width: auto;
}

.row .pagemedia {
    margin-bottom: 1rem;

}

.row .pageintro p {
  font-size: 24px;

}

/* make pagemain text match pageintro .lead */
.pagemain .lead,
.pagemain .lead p {
    font-size: 24px; 
    line-height: 1.6;
}
.press-kit {
    display: flex;
    flex-wrap: wrap;
    width: 96.5%;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    display: relative;
    margin: auto;
}

.p-button {
   border: 1px solid black;
   width: 100px;
   height: 50px;
   flex-grow: 1;
   transition: 0.3s;
   border-radius: 0px;
}

.p-button p {
    text-align: center;
    line-height: 50px;
}
.p-button:hover{
    background-color: black;
    color: white;
    cursor: pointer;
}
.p-button a {
    color: black;
    transition: 0.3s;

}
.p-button:hover a {
    color: white;
}