@media screen and (max-width: 800px) {
  .formbold-radio-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1em;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .formbold-radio-group {
    flex: 1 1 30%;
    min-width: 100px;
    max-width: 33%;
    box-sizing: border-box;
  }
  .formbold-radio-group:nth-child(4),
  .formbold-radio-group:nth-child(5) {
    max-width: 48%;
    flex-basis: 48%;
  }
  .formbold-radio-group:nth-child(1),
  .formbold-radio-group:nth-child(2),
  .formbold-radio-group:nth-child(3) {
    max-width: 32%;
    flex-basis: 32%;
  }
}
@media screen and (max-width: 800px) {
  .s-pageheader .page-title {
    font-size: 80px !important;
  }
}
.s-pageheader {
	background-image: url("../images/yale-picture.jpg");
	background-size : cover;
	background-position-x: center;
    background-position-y: 50%;
	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);
}

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

.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;
}


.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;

}

.page-media img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}



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

}

.row .pagemain {
    padding-top: 5rem;
    width: 100%;
}

.pagemain h2 {
    margin-bottom: 2rem !important; /* Reduce space below the heading */
}



/* 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;
}



.s-pagecontent {
    padding-bottom: 1rem !important;
}

.column.xl-12 {
    text-align: center;
}

.contact-block {
    display: block;      /* not inline-block */
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    padding: 0;
    list-style: none;
}
.contact-social svg {
    width: 32px;
    height: 32px;
}




<style>
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Inter", sans-serif;
  }
  .formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }

  .formbold-form-wrapper {
    margin: 0 auto;
    max-width: 1000px;
    width: 100%;
    background: white;
  }

  .formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
  }
  .formbold-input-flex > div {
    width: 50%;
  }

  .formbold-input-radio-wrapper {
    margin-bottom: 28px;
  }
  .formbold-radio-flex {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .formbold-radio-label {
 display: flex;
    align-items: center;
    position: relative;
    padding-left: 28px; /* space for the custom radio */
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    position: relative;
    padding-left: 25px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  .formbold-input-radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  .formbold-radio-checkmark {
    position: absolute;
    top: -1px;
    left: 0;
    height: 18px;
    width: 18px;
    background-color: #FFFFFF;
    border: 1px solid #DDE3EC;
    border-radius: 50%;
  }
  .formbold-radio-label .formbold-input-radio:checked ~ .formbold-radio-checkmark {
    background-color: #0092e6;
  }
  .formbold-radio-checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  .formbold-radio-label .formbold-input-radio:checked ~ .formbold-radio-checkmark:after {
    display: block;
  }

  .formbold-radio-label .formbold-radio-checkmark:after {
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #FFFFFF;
    transform: translate(-50%, -50%);
  }

  .formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #07074D;
    outline: none;
    resize: none;
  }
  .formbold-form-input::placeholder {
    color: #00000016;
  }
  .formbold-form-input:focus {
    border-color: #ffffff;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.016);
  }
  .formbold-form-label {
    color: #07074D;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
  }

  .formbold-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-align: center;
    width: 100%;
    font-size: 16px;
    border-radius: 5px;
    padding: 14px 25px;
    border: none;
    font-weight: 500;
    background-color: #000000;
    color: white;
    cursor: pointer;
    margin-top: 25px;
  }
  .formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }

.formbold-form-wrapper {
    margin: 0 auto;
    max-width: 100%;   /* match other sections */
    width: 86%;         /* match other sections */
    background: white;
}

#form-sending-indicator {
    /* Already styled inline, but you can add more here if you want */
}

.required-asterisk {
    color: #e53935;
    margin-left: 0.25em;
    font-weight: bold;
}
