.dear-bg {
  width: 180px;
  height: 56px;
  background-image: url("../assets/blank.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: background-image 0.3s ease;
}

/* =========================
   ARCHIVE THRESHOLD SECTION
   ========================= */

.archive-threshold {
  margin-top: 6rem;
  max-width: 84vw;         /* 👈 matches content above */
  padding: 5rem 2rem;
  background-color: #d8c6a1; /* slightly darker paper */
}

.archive-threshold {
  margin: 6rem auto;
  width: 100%;
}

/* THIS is now the visible box */
.archive-box {
  margin: 0 auto;

  padding: 3.5rem 0rem;
  background-color: #d8c6a1;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.archive-inner {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;

  margin: 0 auto;
  
  width: 100%;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  color: #1e1c16;
}

/* Small caps / institutional heading */
.archive-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
  opacity: 0.7;
}

/* Body copy */
.archive-notice {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.archive-notice span {
  white-space: nowrap;
}

/* ENTER ARCHIVE button */
.archive-enter {
  display: inline-block;
  padding: 0.75rem 2.5rem;

  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-decoration: none;

  color: #1e1c16;
  border: 1px solid rgba(30, 28, 22, 0.6);
  background-color: transparent;

  transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease;
}

.archive-enter:hover {
  background-color: #1e1c16;
  color: #d8c6a1;
  opacity: 0.9;
}

.info {
  display: flex;
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
  flex-direction: row; /* Default direction */
  gap: 4rem; /* Space between text and image */
  margin: 0 auto; /* Center the entire info container */
  align-items: center; /* Vertically center the text and image */
  justify-content: center; /* Horizontally center the text and image */
  padding: 0 5%; /* Add responsive padding on both sides */
}

.info.reverse {
  display: flex; /* Ensure flexbox is applied */
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.text {
  flex: 1;
  max-width: 600px; /* Limit the maximum width of the text */
  text-align: center; /* Center the text */
  text-align: left;
}

.text h3 {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.image {
    flex: 1;
    position: relative;
    overflow: hidden; /* Ensures the image doesn't overflow the container */
    max-width: 600px; /* Limit the maximum width of the image */
    width: 551px; /* Set a fixed width for the container */
    height: 300px; /* Set a fixed height for the container */
    display: flex; /* Ensure the image respects the container's width */
    justify-content: center; /* Center the image horizontally */
}

.top {
  margin-bottom: 4rem; /* Add space between images */
}

.mugshot {
  width: 75vw;
  height: auto;
}

.mugshot img {
  width: 100%;
  height: auto;
  object-fit: cover; /* Ensures the image covers the container */
  border: 10px solid #f1eae2; /* Optional: adds rounded corners to the image */
}
