.main {
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2rem;
  padding: 0rem 2rem 2rem;
}

/* Font Face Declaration for Feu de camp Timber */
@font-face {
  font-family: "Feu de camp Timber";
  src: url("../fonts/feudecamp-timber-webfont.woff2") format("woff2");
  font-display: block;
}

#get-involved-title {
  font-family: "Feu de camp Timber", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: bold;
  color: #ffef09;
  text-shadow: 3px 3px 0px rgba(0, 0, 0, 1);
  -webkit-text-stroke: 1px black;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.main p a {
  color: #ffef09;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.main p a:hover {
  color: #5525bc;
}

.main p {
  max-width: 75%;
  margin: 0 auto;
  /* Centers the paragraph */
}

.btn-lg {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  /* Rounded corners */
  border: 3px solid black;
  /* Black stroke */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Smooth hover effect */
}

/* Blue button specific styles */
.btn-blue {
  background-color: #75c0e0;
  /* Blue background */
  color: black;
  /* Black text */
}

/* Hover effect */
.btn-blue:hover {
  transform: scale(1.05);
  /* Slightly enlarge on hover */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  /* Subtle shadow on hover */
}

.press-section {
  background: #000;
  width: 100%;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press-header {
  max-width: 600px;
  width: 90%;
  margin: 2rem;
  font-family: "Feu de camp Timber", serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  color: #ffef09;
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 1);
  -webkit-text-stroke: 1px black;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.press-body {
  max-width: 500px;
  width: 80%;
  margin-bottom: 3rem;
}

.press-gradient-text {
  font-size: clamp(0.5rem, 4vw, 1.25rem);
  font-weight: bold;
  background: linear-gradient(90deg, #ff796c, #75c0e0, #ffe66d);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
  max-width: 600px;
  width: 90%;
}
.press-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.press-cta-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #69d6e4;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.press-email {
  font-size: 1.4rem;
  font-weight: 600;
  background: linear-gradient(to right, #fbd44c, #69d6e4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

.press-email:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 100%) {
  .press-header,
  .press-body {
    max-width: 90%;
  }

  .press-email {
    font-size: 1.1rem;
  }
}

.contact-block-lg {
  text-align: center;
  margin: 2rem 0;
}

.contact-block-lg .contact-label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}

.contact-block-lg .contact-email {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 768px) {
  .contact-block-lg .contact-email {
    font-size: 1.5rem;
  }
}

.contact-email-joinus {
  color: #ffef09;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
  font-weight: 600;
}

.contact-email-joinus:hover {
  color: #5525bc;
}

@media (max-width: 768px) {
  .main p {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Adjust oversized PRESS INQUIRIES email */
  .contact-email {
    font-size: 0.8rem;
    /* or 14-16px if you're using px */
    word-break: break-word;
  }

  /* Optional: make sure the container adapts */
  .contact-block-lg,
  .contact-block {
    max-width: 100%;
    overflow-wrap: break-word;
  }
}
