/* Base (consistent with Fellows/April Seminar) */
body { margin: 0; font-family: Arial, sans-serif; background: #fff; color: #000; }
.history-page {}
.container-narrow { margin: 0 auto; padding: 0 2rem; }

/* Title area */
.history-header { display: flex; align-items: center; }
.history-title {
  padding: 2.25rem 2rem 1.25rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 0;
}
.blue-dot { width: 1.5rem; height: 1.5rem; background: #006699; display: inline-block; border-radius: 50%; margin-left: .5rem; }

/* Divider */
.section-divider { border: none; border-top: 1px solid #000; }

/* Full-bleed images */
.full-bleed { width: 100vw; position: relative; left: 50%; right: 50%; margin-left: -50vw; margin-right: -50vw; }
.full-width-hero { width: 100%; height: auto; display: block; }

/* Caption card */
.hero-caption-card {
  margin: 1rem auto 1.75rem;
  padding: 1.1rem 1.25rem;
  color: #333;
  line-height: 1.6;
  font-size: .95rem;
}

/* Section title w/ arrow */
.section-title {
  display: flex; align-items: center; gap: .5rem;
  font-size: 1rem; font-weight: bold; text-transform: uppercase;
  margin: 1.75rem 0 1rem;
}
.section-title .arrow img { width: 18px; height: auto; display: inline-block; }

/* Link list */
.link-list { list-style: none; padding-left: 0; margin: .5rem 0 2rem; }
.link-item { margin: 1rem 0; }
.link-item__anchor {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  text-decoration: none; color: inherit; padding: .5rem 0;
}
.link-item__title {
  font-weight: 700; letter-spacing: .01em;
}
.link-item__arrow img { width: 16px; height: auto; transition: transform .15s ease; }
.link-item__anchor:hover .link-item__arrow img { transform: translateX(2px); }
.link-item__sub { color: #444; font-size: .95rem; line-height: 1.6; padding-right: 2rem; }

/* Final full-bleed image spacing */
.final-image { margin-top: 2rem; }

/* Responsive */
@media (max-width: 720px) {
  .container-narrow { padding: 0 1.25rem; }
  .history-title { padding-left: 1.25rem; }
  .link-item__sub { padding-right: 0; }
}

/* Red subtitle */
.section-subtitle-red {
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #d12a2a;   /* red highlight */
  margin: 2rem 0 1.5rem;
  padding: 1.1rem 1.25rem;
}

/* Link list items */
.link-list { list-style: none; padding-left: 0; margin: 0; padding: 1.1rem 1.25rem;}
.link-item { margin-bottom: 1.75rem; }

.link-item__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .95rem;
}

.link-item__title .arrow img {
  width: 16px;
  height: auto;
  display: inline-block;
  margin-left: .35rem;
}

.link-item__sub {
  color: #444;
  font-size: .9rem;
  line-height: 1.55;
  margin-top: .35rem;
  padding-left: .2rem;
}

.no-style-link {
  color: inherit;
  text-decoration: none;
}
.no-style-link:hover,
.no-style-link:focus {
  color: inherit;
  text-decoration: none;
}

.section-title-container {
  display: flex;
  justify-content: space-between; /* This pushes the title to the left and the button to the right */
  align-items: center; /* Vertically centers the items */
  gap: 1rem; /* Adds some space between the title and the button if needed */
}

.timeline-button {
  display: inline-block;
  padding: 0.5rem 1rem; /* Adjust padding as needed for desired button size */
  background-color: #e7523f; 
  color: white; 
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold; 
  text-transform: uppercase; 
  border-radius: 25px; /* Or add a slight radius if preferred */
  transition: background-color 0.3s ease; /* Smooth transition for hover effect */
  margin-right: 50px;
}

.timeline-button:hover {
  background-color: #b32424; /* Slightly darker red on hover */
  color: white; /* Ensure text stays white on hover */
  text-decoration: none; /* Ensure no underline on hover */
}

.link-list {
  padding: 1.1rem 1.25rem; /* Keep the padding previously on link-list if desired for spacing */
  margin-top: 1rem; /* Add space between the button row and the list */
}

@media (max-width: 720px) {
  .section-title-container {
    flex-direction: column; /* Stack title and button vertically on small screens */
    align-items: flex-start; /* Align button to the left under the title */
    gap: 0.5rem; /* Adjust gap for smaller screens */
  }
  .timeline-button {
    text-align: center; /* Center text inside button if full-width */
  }
}