:root {
  --paragraph: #8492a6;
  --heading-darker: #282d33;
  --headings: #3c4858;
  --deep-sky-blue: #35a9e1;
  --mini-titles-text-links: #6045e0;
  --dark-slate-grey: #195470;
  --dark-slate-blue: #195470;
  --mid-blue: #3f7d9b;
  --alice-blue: #eff3fa;
  --body-copy: #576272;
  --white: #ffffff;
  --line: #dfe7f2;
  --shadow: 0 18px 40px rgba(25, 84, 112, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body-copy);
  background: var(--white);
  font-family: Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
}

body,
button,
input,
textarea {
  font-family: Roboto, Arial, sans-serif;
}

body.aflp-modal-open {
  overflow: hidden;
}

.site-top-anchor {
  position: absolute;
  top: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: var(--deep-sky-blue);
  font-weight: 700;
  text-decoration: none;
}

a:hover,
a:focus-visible {
  color: var(--dark-slate-grey);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(53, 169, 225, 0.35);
  outline-offset: 3px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading-darker);
  font-weight: 500;
  line-height: 1.15;
}

h1 {
  max-width: 920px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 64px;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
}

p {
  margin-bottom: 16px;
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 12px 6vw;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(40, 45, 51, 0.05);
}

.brand {
  display: flex;
  min-width: 220px;
  align-items: center;
  gap: 14px;
  color: var(--heading-darker);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand img {
  width: 126px;
  min-width: 126px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.site-nav-list,
.footer-nav-list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 13px;
  border-radius: 3px;
  color: var(--heading-darker);
  font-size: 15px;
  font-weight: 400;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(53, 169, 225, 0.08);
  color: var(--dark-slate-grey);
}

.site-nav .nav-cta,
.site-nav-list li:last-child a {
  margin-left: 8px;
  padding-right: 22px;
  padding-left: 22px;
  color: var(--white);
  background: linear-gradient(180deg, var(--deep-sky-blue), var(--mid-blue));
  border-radius: 55px;
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible,
.site-nav-list li:last-child a:hover,
.site-nav-list li:last-child a:focus-visible {
  color: var(--white);
  background: var(--mid-blue);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nav-button {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.nav-button span {
  width: 22px;
  height: 2px;
  background: var(--heading-darker);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: 104px 6vw 118px;
  background-position: center;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 6vw;
  bottom: 34px;
  width: 180px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--deep-sky-blue), var(--mini-titles-text-links));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.eyebrow,
.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 10px 6px;
  border: 1px solid var(--mini-titles-text-links);
  border-radius: 3px;
  color: var(--mini-titles-text-links);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow,
.kicker.light {
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--white);
}

.hero-copy {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 24px;
  line-height: 1.5;
}

.hero-actions,
.support-actions,
.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 0;
  border-radius: 55px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(180deg, var(--deep-sky-blue), var(--mid-blue));
}

.button.primary:hover,
.button.primary:focus-visible {
  color: var(--white);
  background: var(--mid-blue);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.76);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: var(--heading-darker);
  background: var(--white);
}

.button.light {
  color: var(--heading-darker);
  background: var(--white);
}

.button.outline-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.78);
}

.anchor-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, 88vw);
  margin: -46px auto 0;
  position: relative;
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
}

.anchor-strip a {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--heading-darker);
  border-right: 1px solid var(--line);
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

.anchor-strip a:last-child {
  border-right: 0;
}

.anchor-strip a:hover,
.anchor-strip a:focus-visible {
  color: var(--white);
  background: var(--deep-sky-blue);
}

.section {
  padding: 104px 6vw;
}

.section.split {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 64px;
  align-items: center;
}

.section-heading {
  width: min(790px, 100%);
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  margin-right: auto;
  margin-left: auto;
}

.section-copy {
  max-width: 680px;
}

.media-panel {
  margin: 0;
}

.media-panel img {
  width: 100%;
  aspect-ratio: 1.22;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.media-panel figcaption {
  padding: 18px 0 0;
  color: var(--headings);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.impact,
.team {
  background: var(--alice-blue);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
  border-top: 4px solid var(--deep-sky-blue);
  box-shadow: 0 10px 30px rgba(25, 84, 112, 0.08);
}

.stat strong {
  display: block;
  margin-bottom: 12px;
  color: var(--heading-darker);
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  display: block;
  color: var(--body-copy);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.program-card {
  display: block;
  color: var(--body-copy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(40, 45, 51, 0.07);
}

.program-card:hover,
.program-card:focus-visible,
.project-card:hover,
.project-card:focus-visible,
.team-member:hover,
.team-member:focus-visible {
  color: var(--body-copy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.program-card img {
  width: 100%;
  aspect-ratio: 1.75;
  object-fit: cover;
}

.program-card h3,
.program-card p {
  padding-right: 24px;
  padding-left: 24px;
}

.program-card h3 {
  margin-top: 24px;
}

.program-card p {
  margin-bottom: 28px;
  font-size: 17px;
}

.projects {
  background: linear-gradient(180deg, #ffffff 0%, var(--alice-blue) 100%);
}

.project-list,
.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-photo-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-bottom: 28px;
  color: var(--body-copy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.featured-project:hover,
.featured-project:focus-visible {
  color: var(--body-copy);
}

.featured-project img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.featured-project div {
  padding: 34px 34px 34px 0;
}

.featured-project span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--deep-sky-blue);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.featured-project h3 {
  margin-bottom: 14px;
  font-size: 30px;
}

.featured-project p {
  font-size: 18px;
}

.project-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  color: var(--body-copy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(25, 84, 112, 0.08);
}

.project-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.project-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.project-card span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--deep-sky-blue);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.project-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.18;
}

.project-card p {
  margin-bottom: 0;
  font-size: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member {
  display: block;
  padding: 24px 18px 20px;
  color: var(--body-copy);
  background: var(--white);
  text-align: center;
  box-shadow: 0 10px 28px rgba(25, 84, 112, 0.08);
}

.team-member img {
  width: 158px;
  height: 158px;
  margin: 0 auto 18px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--alice-blue);
}

.team-member h3 {
  margin-bottom: 6px;
  font-size: 20px;
}

.team-member p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.4;
}

.support-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 76px 6vw;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(25, 84, 112, 0.93), rgba(53, 169, 225, 0.82)), url("https://cdn.prod.website-files.com/640bec9cb17b531cdc6b6ce1/640cbe95ba45fe1b748f9578_148928039_m_normal_none_1000x500_978.jpg");
  background-position: center;
  background-size: cover;
}

.support-band h2,
.support-band p {
  color: var(--white);
}

.support-band h2 {
  max-width: 820px;
}

.support-band p {
  max-width: 760px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 64px;
}

.contact-lines {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-lines p {
  margin-bottom: 10px;
}

.social-card {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.social-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.social-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.social-links a {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 14px;
  color: var(--heading-darker);
  background: var(--white);
  border: 1px solid var(--line);
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--deep-sky-blue);
  box-shadow: 0 12px 26px rgba(53, 169, 225, 0.16);
}

.social-links img {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  padding: 11px;
  object-fit: contain;
  background: var(--dark-slate-blue);
  filter: brightness(0) invert(1);
}

.social-links span {
  color: var(--paragraph);
  font-size: 13px;
  line-height: 1.2;
}

.social-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.25;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--heading-darker);
  font-size: 15px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfdced;
  padding: 14px 15px;
  color: var(--heading-darker);
  background: var(--white);
  font-size: 17px;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--deep-sky-blue);
  outline: 3px solid rgba(53, 169, 225, 0.18);
}

.contact-form textarea {
  resize: vertical;
}

.aflp-honeypot {
  position: absolute;
  left: -9999px;
}

.form-notice {
  margin: 0;
  padding: 12px 14px;
  border-left: 4px solid var(--deep-sky-blue);
  background: var(--alice-blue);
  font-size: 15px;
}

.form-notice.error {
  border-left-color: #b42318;
}

.site-footer {
  padding: 52px 6vw 34px;
  color: rgba(255, 255, 255, 0.76);
  background: #1f2833;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand img {
  width: 134px;
}

.footer-brand p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  text-align: right;
}

.footer-social {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 18px;
}

.footer-social a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--deep-sky-blue);
  border-color: var(--deep-sky-blue);
}

.footer-social img {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 400;
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--deep-sky-blue);
}

.page-shell,
.archive-shell {
  min-height: 60vh;
}

.page-shell h1,
.archive-shell h1,
.project-hero h1 {
  color: var(--heading-darker);
}

.content-page,
.entry-content {
  width: min(860px, 100%);
}

.entry-content img,
.single-feature-image {
  height: auto;
  margin: 28px 0;
}

.lead-copy {
  color: var(--headings);
  font-size: 22px;
}

.project-hero {
  background: var(--alice-blue);
}

.project-gallery,
.aflp-modal__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.project-gallery img,
.aflp-modal__gallery img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.project-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 52px;
}

.project-detail-list {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(40, 45, 51, 0.07);
}

.project-detail-list p {
  margin-bottom: 12px;
  font-size: 16px;
}

.project-detail-list .button {
  margin-top: 10px;
  margin-right: 10px;
}

.team-profile-header {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}

.team-profile-header img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--alice-blue);
}

.aflp-modal[hidden] {
  display: none;
}

.aflp-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
}

.aflp-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 40, 51, 0.72);
}

.aflp-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(86vh, 880px);
  overflow: auto;
  background: var(--white);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.aflp-modal__close {
  position: sticky;
  z-index: 2;
  top: 14px;
  float: right;
  width: 44px;
  height: 44px;
  margin: 14px 14px 0 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--dark-slate-grey);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.aflp-modal__body {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: 30px;
  padding: 34px;
  clear: both;
}

.aflp-modal__gallery {
  grid-template-columns: 1fr;
  align-content: start;
}

.aflp-modal__content h2 {
  color: var(--heading-darker);
}

.modal-summary {
  color: var(--headings);
  font-size: 20px;
}

.modal-copy p {
  font-size: 17px;
}

.modal-secondary {
  color: var(--heading-darker);
  border-color: var(--line);
  background: var(--alice-blue);
}

@media (prefers-reduced-motion: no-preference) {
  .program-card,
  .project-card,
  .team-member,
  .featured-project {
    transition: box-shadow 160ms ease, transform 160ms ease;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 52px;
  }

  h2 {
    font-size: 34px;
  }

  .site-header {
    align-items: flex-start;
    gap: 16px;
  }

  .nav-button {
    display: flex;
    margin-top: 5px;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 6vw 22px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 26px rgba(40, 45, 51, 0.08);
  }

  .site-nav-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .site-nav a,
  .site-nav .nav-cta,
  .site-nav-list li:last-child a {
    margin-left: 0;
    border-radius: 4px;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .section.split,
  .contact,
  .project-detail-layout {
    grid-template-columns: 1fr;
  }

  .featured-project,
  .aflp-modal__body {
    grid-template-columns: 1fr;
  }

  .featured-project img {
    min-height: 300px;
  }

  .featured-project div {
    padding: 0 28px 28px;
  }

  .stats-grid,
  .project-list,
  .project-photo-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  p,
  .hero-copy {
    font-size: 18px;
  }

  .site-header {
    min-height: 72px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 105px;
    min-width: 105px;
  }

  .brand span {
    max-width: 98px;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    min-height: 760px;
    padding-top: 86px;
    padding-bottom: 104px;
  }

  .anchor-strip,
  .stats-grid,
  .program-grid,
  .project-list,
  .project-photo-grid,
  .project-gallery,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .anchor-strip {
    width: 90vw;
  }

  .anchor-strip a {
    min-height: 62px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 74px 6vw;
  }

  .section.split,
  .contact {
    gap: 40px;
  }

  .media-panel img {
    aspect-ratio: 1.1;
  }

  .stat {
    min-height: auto;
  }

  .project-card img {
    height: 220px;
  }

  .support-band {
    padding: 64px 6vw;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-brand p {
    text-align: left;
  }

  .team-profile-header {
    grid-template-columns: 1fr;
  }

  .aflp-modal {
    padding: 12px;
  }

  .aflp-modal__body {
    padding: 24px;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 27px;
  }

  .button {
    width: 100%;
  }

  .hero-actions,
  .support-actions,
  .modal-actions {
    width: 100%;
  }

  .team-member img {
    width: 136px;
    height: 136px;
  }

  .contact-form {
    padding: 22px;
  }

  .social-links {
    grid-template-columns: 1fr;
  }
}
