html {
  background-color: #ffffff;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden; /* Disable horizontal scrolling */
}

body {
  overflow-x: hidden;
  margin: 0; /* Prevents any unintended margin causing the overflow */
}

body, .content {
  overflow-x: hidden; /* Prevent horizontal scrolling in body or content */
}

body, html {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%; /* Prevent images from overflowing */
  height: auto;
}

.css-61ww0h {
padding: 0;
margin: 0;
display: block;
font-size: min( 13.334362666666669vw, 100.00772px );
font-family: Outline;
font-style: normal;
font-weight: 700;
text-decoration-line: none;
color: rgba(235,234,230,1);
line-height: 0.7em;
letter-spacing: -0.1em;
list-style-type: none;
overflow: visible;
max-height: 100%;
position: relative;
top: 0.08649999999999998em;
padding-top: 0px;
padding-bottom: 7.900609880000001px;
margin-top: calc(min(100vw, 750px) / 375*0.20001543999999957);
margin-bottom: calc(min(100vw, 750px) / 375*0);
overflow-wrap: break-word;
}

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  color: #000;
  margin-top: 20px;
  grid-area: header;
  width: 100%;
}



h1 {
  font-size: 65px;
  color: #000000;
  font-weight: 400;
  line-height: 65px;
}

h2 {
  font-size: 30px;
  color: #000000;
  font-weight: 400;
  line-height: 25px;
}

h3 {
  font-size: 16px;
  color: #000000;
  line-height: 22px;
}

h4 {
  font-size: 8px;
  font-weight: 400;
  color: #000000;
  line-height: 10px;
}

h3 a {
  font-weight: normal;
  color: #000000;
  text-decoration: none;
}

h3 a:hover {
  font-weight: bold;
  color: #000000;
}

@media screen and (max-width: 480px){
h1 {
  text-align: center;
  font-size: 34px;
  line-height: 34px;
}}

@media screen and (max-width: 480px) {
h2 {
  text-align: center;
  font-size: 25px;
}}

.clip-buttons { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 12px; }
.clip-btn { text-decoration: none; }
.clip-top-nav { margin-bottom: 8px; }

ul {
  margin-top: 0.2em;
  margin-bottom: 0.5em;
  padding-left: 1.5em;
  list-style-type: disc;
}

ul li {
  margin-bottom: 0.2em;
  line-height: 1.5;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-areas:
    "photo header"
    "left right"
    "footer footer";
  gap: 10px;
  width: 100%;
  max-width: 100%; /* Ensure grid does not exceed screen width */
  margin: 0 auto;
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scrolling */
}

.left, .right {
  padding: 0 10px;
  overflow-x: hidden; /* Prevent horizontal overflow */
}

.photo {
  grid-area: photo;
  align-self: center !important;
  align-content: center !important;
}

.header {
  grid-area: header;
  text-align: center;
}

.right {
  margin-right: 10px;
  overflow-x: hidden;  /* Change from 'auto' to 'hidden' */
  padding-right: 10px;
}
.left {
  margin-right: 10px;
  overflow-x: hidden;  /* Ensure left also doesn't cause horizontal scroll */
}

.footer {
  grid-area: footer;
  margin: 0 10px; /* Adds 10px margin to both left and right */
  padding: 20px; /* Adjust padding as needed */
  width: calc(100% - 20px); /* Ensures the footer width accounts for the margins */
}

/* For screens 768px and larger */
@media screen and (min-width: 768px) {
   .grid {
    grid-template-columns: 2fr 1fr; /* 2/3 left and 1/3 right for larger screens */
  }
}

/* For screens smaller than 768px */
@media screen and (max-width: 768px) {
 .grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "photo"
      "left"
      "right"
      "footer";
  }
  .left, .right {
    width: 100%; /* Ensure left and right divs take full width */
  }
  .footer {
    margin: 0 5px; /* Smaller margins on mobile */
    width: calc(100% - 10px); /* Adjust width for mobile */
  }
}

  /* Ensure left div has margin on the right */
  .left {
    margin-right: 10px; /* Adds margin to the right of the left div on mobile */
  }

  .right {
    margin-right: 0; /* Remove margin on the right div */
  }



  /* Prevent horizontal overflow */
  .grid {
    overflow-x: hidden; /* Prevents horizontal scrolling */
    width: 100%; /* Ensures the grid doesn't exceed the viewport width */
  }
}

/* Ensures both left and right divs take full width on all screen sizes */
.left, .right {
  width: 100%;
}

@media screen and (min-width: 600px) {
  .header {
    text-align: left;
  }
}

.collegebutton {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 15px;
  padding: 5px; /* Add padding for spacing */
  text-decoration: none;
  display: inline-flex; /* Flexbox for proper alignment */
  align-items: center; /* Vertical alignment */
  justify-content: center; /* Horizontal alignment */
  width: 48px; /* Consistent button size */
  height: 48px; /* Consistent button size */
  overflow: hidden; /* Crop overflow if needed */
  position: relative;
}

.collegebutton img {
  max-width: 32px; /* Restrict image width */
  max-height: 32px; /* Restrict image height */
  display: block; /* Ensure no inline spacing issues */
  margin: auto; /* Center within the button */
}

.collegebutton:hover {
  background-color: #000000;
  font-weight: bold;
}
.collegebutton:hover img {
  -webkit-filter: invert(100%); /* Safari/Chrome */
  filter: invert(100%);
}

.collegebuttonsocial
{
  display: inline-block;
  width: 40%;
  border: 3px solid #000000;
  text-align: center !important;
  vertical-align: middle !important;
  font-weight: 400;
  background-color: #000000;
  border-radius: 8px;
  color: #ffffff !important;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 5px;
  margin: 5px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  overflow-x: auto;
  overflow-y: hidden;
  text-decoration: none;
}

.collegebuttonsocial a
{
  color: #ffffff;
}

.collegebuttonsocial a:hover
{
  color: #000000 !important;
  font-weight: bold;
}

.collegebuttonsocial:hover
{
  text-align: center !important;
  font-weight: 600;
  background-color: #ffffff;
  border-radius: 8px;
  color: #000000 !important;
}

.college {
  background: #FFFFFF;
  color: #000000;
  border: 3px solid #000000;
  border-radius: 8px;
  margin-bottom: 15px;
  font-weight: normal;
  overflow: auto;
  height:auto;
}

.college h2 {
  font-size: 25px;
  line-height: 25px;
  margin: 5px;
  font-weight: bold;
}

.college h3 {
  font-size: 15px;
  line-height: 22px;
  margin: 5px;
  font-weight: normal;
}

.college a {
  color: #007CE1;
}

.college a:hover {
  color: #000000;
  font-weight: bold;
}


.collapsible {
  color: #FFFFFF;
  background-color: #000000;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 8px;
  text-align: left;
  outline: none;
  font-size: 14px;
}

.collapsible:hover {
  color: #000000;
  font-weight: bold;
  background-color: #FFFFFF;
}

.active {
  background-color: #000000;
}

.collapsible:after {
  content: "Show more";
}

.active:after {
  content: "Show less";
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.title {
  font-size: 70px;
  color: #000000;
  font-weight: 900;
  line-height: 50px;
  padding-left: 6px;
  font-family: 'Montserrat', sans-serif !important;
}

@media screen and (max-width: 600px) {
  .title {
    font-size: 40px;
    line-height: 29px;
  }
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  align-content: center;
  width: 100%;
}

.image-list-small {
  margin: 0 auto;
  padding: 0;
  vertical-align: middle !important;
  align: center;
}

.image-list-small li {
  display: inline-block;
  width: 200px;
  margin: 10px 10px 10px 10px;
  vertical-align: middle !important;
  align: center !important;
  align-content: center !important;
}

.image-list-small li > a {
  display: block;
  text-decoration: none;
  background-size: cover;
  background-repeat: no-repeat;
  height: 137px;
  margin: 0;
  padding: 0;
}

.image-list-small li img{
    width: 100%; /* To make the images responsive */
    height: auto;
}

.image-list-small .details {
}

.image-list-small .details h3 {
  display: block;
  margin: 0 0 3px 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 640px) {
  .image-list-small {
    max-width: 100%;
  }
  .image-list-small li > a {
    width: 100%; /* Ensure each image takes full width */
  }
}


.image-list-clip {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap to the next row */
  justify-content: center; /* Centers the grid */
}

.image-list-clip li {
  display: flex;
  flex-direction: column; /* Ensures image and caption are stacked */
  align-items: center; /* Centers content within each item */
  width: 400px;
  margin: 10px;
}

.image-list-clip li > a {
  display: block;
  text-decoration: none;
}

.image-list-clip li img {
  width: 400px; /* Set a fixed width for uniformity */
  height: 250px; /* Set a fixed height slightly larger than before */
  object-fit: cover; /* Crops equally from all sides */
  object-position: center; /* Centers the cropped area */
  border: 1px solid black; /* Adds a black border with 0.5px thickness */
}

.image-list-clip .details {
  text-align: center; /* Centers the text below the image */
  margin-top: 10px; /* Adds spacing between the image and the caption */
}

.image-list-clip .details h3 {
  display: block;
  margin: 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 640px) {
  .image-list-clip li {
    width: 100%; /* Makes items take the full width on smaller screens */
  }
}

/* Title size + hover bold behavior */
.image-list-clip .clip-title { font-size: 18px; font-weight: 400; }
.image-list-clip .clip-link:hover .clip-title { font-weight: 700; }

/* Optional: tighten spacing */
.image-list-clip .details { line-height: 1.25; }


.image-list-tiny {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap; /* Ensures items wrap to the next row */
  justify-content: flex-start; /* Aligns items to the left */
}

.image-list-tiny li {
  display: flex;
  flex-direction: column; /* Ensures image and caption are stacked */
  align-items: flex-start; /* Aligns content within each item to the left */
  width: 213px !important; /* Set the width for desktop and enforce with !important */
  margin: 10px;
}

.image-list-tiny li > a {
  display: block;
  text-decoration: none;
}

.image-list-tiny li img {
  width: 213px !important; /* Set width to 213px for desktop and enforce with !important */
  height: 118px !important; /* Set height to 118px for desktop and enforce with !important */
  object-fit: cover; /* Crops equally from all sides */
  object-position: center; /* Centers the cropped area */
  border: 1px solid black; /* Adds a black border */
}

.image-list-tiny .details {
  text-align: left; /* Aligns text to the left */
  margin-top: 5px; /* Reduces the space between image and text */
}

.image-list-tiny .details h3 {
  font-size: 20px; /* Set text size for desktop */
  margin: 0;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media only screen and (max-width: 640px) {
  .image-list-tiny li {
    width: 100%; /* Makes items take full width on smaller screens */
    text-align: center; /* Centers the text */
    align-items: center; /* Centers the content within each item */
  }

  .image-list-tiny li img {
    width: 100%; /* Adjusts image width to fit the container on mobile */
    height: auto; /* Adjusts height automatically to maintain aspect ratio */
  }

  .image-list-tiny .details h3 {
    font-size: 18px; /* Adjust font size for mobile */
    text-align: center; /* Centers the text below the image */
  }
}


.image-list-tiny .clip-title { font-size: 15px; font-weight: 400; }
.image-list-tiny .clip-link:hover .clip-title { font-weight: 700; }


.myform .entry {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;  
  margin-bottom: 15px;
  height: 30px;
  width: 300px;
  font-size: 20px;
  padding-left: 2px;
}

.myform .entry:hover {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

.myform .submit {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;
  height: 30px;
  width: 100px;
  font-size: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  outline: none;
  text-align: center;
}

.myform .submit:hover {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

.myformre .entryre {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;
  margin-bottom: 15px;
  height: 30px;
  width: 300px;
  font-size: 20px;
  padding-left: 2px;
}

.myformre .entryre:hover {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

.myformre .submitre {
  background: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
  border-radius: 8px;
  height: 30px;
  width: 100px;
  font-size: 20px;
  margin-bottom: 15px;
  cursor: pointer;
  outline: none;
  text-align: center;
}

.myformre .submitre:hover {
  background: #FFFFFF;
  color: #000000;
  font-weight: 700;
}

.grecaptcha-badge {
  visibility: hidden;
}

mark{
  background: #000;
  color: #fff;
  font-weight: 700;

  /* keep horizontal breathing room, shrink vertical so it won't touch next line */
  padding: 0.06em 0.28em;

  border-radius: 0.2em;

  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;

  display: inline;
  white-space: normal;

  /* make the mark not inflate into adjacent lines */
  line-height: 1.0;
  vertical-align: baseline;
}

mark.mark-big{
  font-size: 1.25em;
}


/* ===== Clip / NYT-style article pages ===== */

article.clip-article {
  font-family: Georgia, 'Times New Roman', Times, serif;
  padding: 0 15%;
  margin: 0 auto;
  max-width: 70%;
}

/* Make clip pages ignore the site's global top-margin + font */
article.clip-article {
  margin-top: 0;
}

article.clip-article,
article.clip-article .clip-body{
  font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Top utility row */
.clip-topbar{
  display:flex;
  align-items:center;   /* was flex-start */
  justify-content:space-between;
  gap:12px;
  margin-top:4px;
}

/* Make "Published on NPR" more prominent */
.clip-published {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 18px;          /* bigger than before */
  line-height: 1.15;
  color: #000;
}

.clip-publisher {
  font-weight: 700;
}

/* Right-aligned buttons, touching */
.clip-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;                   /* touching */
}

/* Use your existing .filter-btn but shrink it ONLY on clip pages */
.clip-actions .filter-btn.clip-action-btn {
  font-size: 0.95em;        /* smaller text */
  padding: 6px 10px;        /* smaller button */
  border-radius: 3px;
    font-size: 16px;          /* bigger than before */
  margin: 0;
}

/* Create the “touching pills” look */
.clip-actions .filter-btn.clip-action-btn + .filter-btn.clip-action-btn {
  margin-left: 6px;         /* tiny separation; set to 0 if you literally want them flush */
}

/* Stronger divider */
.clip-divider{
  border:0;
  border-top:1px solid #000;   /* black */
  margin:14px 0 18px 0;
}

/* Title */
.nyt-title {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 10px 0;
  color: #000;
  text-align: left;
}

/* Image (square corners) */
.nyt-image.clip-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  border-radius: 0;
  max-width: 100%;
}

/* Caption + credit */
.clip-captionline {
  margin: 2px 0 14px 0;
}

.nyt-image-caption {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #6d6d6d;
  display: inline;
}

.nyt-image-attribution {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 14px;
  color: #6d6d6d;
  white-space: nowrap;
  display: inline;
}

/* Byline + date (NYT-ish spacing) */
.clip-meta{
  margin: 10px 0 14px 0;
}

/* Byline + dateline: NYT-ish (smaller + calmer) */
/* Byline + dateline: force override vs any paragraph rules */
/* Byline — NYT style: smaller than body, heavier */
article.clip-article p.nyt-byline{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;        /* ↑ slightly */
  font-weight: 600;
  line-height: 1.3;
  color: #121212;
  margin: 6px 0 2px 0;
}

/* Dateline — lighter, calmer, clearly secondary */
article.clip-article p.nyt-publish-date{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 15px;      /* ↑ slightly */
  font-weight: 400;
  line-height: 1.25;
  color: #6f6f6f;
  margin: 0 0 14px 0;
}

/* Body text */
/* Story Text (ONLY the story body, not byline/date) */
.clip-body p{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
  line-height: 1.45;
  color: #333;
  margin: 0 0 12px 0;
}

.clip-body em,
.clip-body i {
  font-style: italic;
}

/* === Clip article body link styling === */
.clip-body a {
  color: #1a5fd0;              /* site blue */
  text-decoration: none;
  font-weight: 400;
}

.clip-body a:hover {
  color: #121212;              /* black on hover */
  font-weight: 700;
  text-decoration: none;
}

/* Ensure bold text with links stays inline and clean */
.clip-body strong a,
.clip-body b a {
  color: inherit;              /* inherit blue/black properly */
  font-weight: 700;
}

/* Make subheads (bold-only paragraphs) stand out slightly */
.clip-body p strong,
.clip-body p b {
  font-weight: 700;
}

/* Photo story blocks */
.clip-photo-story { margin-top: 10px; }
.clip-photo-block { margin-bottom: 18px; }

/* Embed spacing */
.clip-embed { margin: 12px 0 18px 0; }

/* Bottom return button — primary, centered */
.clip-bottom{
  margin: 36px 0 24px 0;
  padding-top: 18px;
  border-top: 1px solid #000;
  display: flex;
  justify-content: center;
}

/* Button itself */
.clip-return{
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 19px;              /* BIGGER than top buttons */
  padding: 10px 22px;
  border: 1px solid #000;
  border-radius: 4px;
  color: #000;
  text-decoration: none;        /* kill underline */
  transition: all 0.15s ease;   /* smooth hover */
}

/* Hover / focus state */
.clip-return:hover,
.clip-return:focus{
  background-color: #000;
  color: #fff;
  font-weight: 600;             /* intentional, not jumpy */
}

/* Mobile */
@media (max-width: 768px) {
  article.clip-article {
    padding: 0 5%;
    max-width: 90%;
  }

  .clip-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .clip-actions {
    justify-content: flex-start;
  }

  .nyt-title {
    font-size: 28px;
  text-align: left;
  }
}


/* Filter buttons container */
#filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 20px 0;
}

/* Individual filter buttons (anchors) */
.filter-btn {
  display: inline-block;
  width: auto !important;
  padding: 8px 16px;
  margin: 0;                   /* we'll use gap above */
  border: 1px solid #000;
  background: #fff;
  color: #000;                 /* button text color */
  text-decoration: none;       /* remove underline */
  cursor: pointer;
  border-radius: 4px;
  font-size: 1.2em;
  white-space: nowrap;
}

/* Hover & active state */
.filter-btn:hover,
.filter-btn.active {
  background: #000;
  color: #fff;
  font-weight: bold;
}

/* Prevent “Show less” pseudo‑content */
.filter-btn.active:after {
  content: "";
}


/* wrapper centered at half-width */
.contact-section {
  width: 50%;
  margin: 0 auto;
}

/* two-column grid, collapses to one on narrow screens */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (max-width: 600px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-section {
    width: 100%;
    padding: 0 1rem;
  }
}

/* column heading */
.contact-column .column-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* each link row */
.contact-item {
  display: flex;
  align-items: center;
  margin: 0.25rem 0;
}

/* icons */
.contact-icon {
  width: 16px;
  margin-right: 0.5rem;
}


.image-grid-instagram {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 4px; /* This sets equal vertical & horizontal spacing */
  grid-template-columns: repeat(5, 1fr);
}

.image-grid-instagram li {
  overflow: hidden;
  aspect-ratio: 3 / 4;
  margin: 0; /* Remove any default spacing */
}

.image-grid-instagram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.image-grid-instagram a:hover img {
  transform: scale(1.02);
  filter: brightness(0.5); /* Slightly dims the image */
}

/* Tablet */
@media (max-width: 1023px) {
  .image-grid-instagram {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 767px) {
  .image-grid-instagram {
    grid-template-columns: repeat(2, 1fr);
  }
}
