.activities-banner {
  width: 100%;
  height: 80vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/activities-banner.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.activities-banner-inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-sizing: border-box;
}

.activities-banner-inner span {
  color: #fff;
  font-family: Jost;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.345rem;
  text-transform: uppercase;
}

.activities-banner-inner h1 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.activities-banner p {
  color: #fff;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .activities-banner h1 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .activities-banner {
    height: auto;
    min-height: 70vh;
    padding: 4rem 1.5rem;
    gap: 1.25rem;
  }

  .activities-banner h1 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .activities-banner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .activities-banner {
    padding: 3rem 1rem;
    gap: 1rem;
  }

  .activities-banner h1 {
    font-size: 2.5rem;
    line-height: 2.8rem;
  }

  .activities-banner p {
    font-size: 0.9rem;
    display: none;
  }
}

.self-directed-container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5rem 2rem;
}

.self-directed-inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.self-directed-inner span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.345rem;
  text-align: center;
  text-transform: uppercase;
  color: var(--accent-color);
}

.self-directed-inner p {
  color: var(--secondary-text-color);
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.15438rem;
}

.self-directed-inner img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

hr {
  width: 100%;
  border: 0.5px solid #d2cecb52;
}

@media (max-width: 1024px) {
  .self-directed-container {
    padding: 4rem 2rem;
  }

  .self-directed-inner {
    gap: 2rem;
  }

  .self-directed-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .self-directed-container {
    padding: 3rem 1.5rem;
  }

  .self-directed-inner {
    gap: 1.75rem;
  }

  .self-directed-inner p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .self-directed-container {
    padding: 2.5rem 1rem;
  }

  .self-directed-inner {
    gap: 1.5rem;
  }

  .self-directed-inner p {
    font-size: 0.95rem;
  }
}

.activities-grid-container {
  width: 100%;
  padding: 0 2rem 6rem;
  box-sizing: border-box;
  max-width: 100%;
}

.activities-grid-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3rem 2rem;
}

.activity-card {
  display: flex;
  flex-direction: column;
}

.activity-card-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  background-color: var(--card-background);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.activity-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--primary-color);
  color: var(--text-color);
  font-family: "Jost", sans-serif;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}

.activity-badge--featured {
  background-color: var(--accent-color);
  color: var(--background-color);
}

.activity-card-body {
  padding: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.activity-card-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--text-color);
  margin: 0;
  line-height: 1.2;
}

.activity-card--featured .activity-card-body h2 {
  font-style: italic;
}

.activity-card-body p {
  font-family: "Jost", sans-serif;
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--secondary-text-color);
  line-height: 1.65;
  letter-spacing: 0.01em;
  margin: 0;
}

.activity-downloads {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.activity-download-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Jost", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary-text-color);
  text-decoration: none;
  transition: color 0.2s ease;
}

.activity-download-link i {
  font-size: 0.875rem;
  flex-shrink: 0;
}

.activity-download-link:hover {
  color: var(--accent-color);
}

@media (max-width: 1024px) {
  .activities-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2rem;
  }
}

@media (max-width: 600px) {
  .activities-grid-container {
    padding: 0 1.25rem 4rem;
  }

  .activities-grid-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .activity-card-image {
    aspect-ratio: 4 / 3;
  }

  .activity-card-body h2 {
    font-size: 1.5rem;
  }
}

.resources-section {
  width: 100%;
  padding: 8rem 2rem;
  background-color: #2a2118;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
}

.resources-inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.resources-label {
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35rem;
  text-transform: uppercase;

  margin-bottom: 1.2rem;

  opacity: 0.8;
}

.resources-inner h2 {
  color: #fff;
  font-family: "Cormorant Garamond", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1;

  margin: 0 0 1.5rem;
}

.resources-inner p {
  max-width: 540px;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 1.188rem;
  font-weight: 300;
  line-height: 1.7;

  margin: 0 0 4rem;
}

.resources-grid {
  width: 100%;
  max-width: 760px;

  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;

  justify-content: center;
}

.resource-card {
  min-height: 110px;

  border: 1px solid rgba(255, 255, 255, 0.25);

  padding: 1.5rem;

  text-decoration: none;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 0.8rem;

  transition:
    border-color 0.3s ease,
    transform 0.3s ease;
}

.resource-card:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

.resource-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resource-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.resource-content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.resource-content h3 {
  margin: 0;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.16rem;
  text-transform: uppercase;
  line-height: 1.5;
}

.resource-content span {
  color: rgba(255, 255, 255, 0.65);
  font-family: "Jost", sans-serif;
  font-size: 0.813rem;
  font-weight: 300;
  line-height: 1.5;
}

.resource-card-center {
  grid-column: 1 / -1;
  max-width: 320px;
  justify-self: center;
}

@media (max-width: 768px) {
  .resources-section {
    padding: 6rem 1.5rem;
  }

  .resources-inner h2 {
    font-size: 2.5rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-card,
  .resource-card-center {
    width: 100%;
    max-width: 100%;
  }

  .resource-card-center {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 480px) {
  .resources-inner h2 {
    font-size: 2rem;
  }

  .resource-card {
    padding: 1.25rem;
  }
}

.activities-your-journey {
  width: 100%;
  height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%),
    url("/images/activities-begin-your-journey.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 3rem;
}

.activities-your-journey > span {
  font-family: Jost;
  font-weight: 400;
  font-size: 0.688rem;
  letter-spacing: 0.345rem;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
}

.activities-your-journey > h2 {
  color: #fff;
  font-family: "Cormorant Garamond";
  font-size: 7.3125rem;
  font-style: italic;
  font-weight: 400;
  line-height: 7.375rem;
}

.activities-your-journey > p {
  color: #fff;
  text-align: center;
  font-family: Jost;
  font-size: 1.1875rem;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 0.15438rem;
}

/* RESPONSIVE BEGIN YOUR JOURNEY */

@media (max-width: 1024px) {
  .activities-your-journey {
    padding: 0 2rem;
    gap: 2rem;
  }

  .activities-your-journey > h2 {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (max-width: 768px) {
  .activities-your-journey {
    height: auto;
    min-height: 80vh;
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }

  .activities-your-journey > h2 {
    font-size: 3.5rem;
    line-height: 4rem;
  }

  .activities-your-journey > p {
    font-size: 1rem;
  }

  .activities-your-journey > p br {
    display: none;
  }

  .activities-your-journey .two-column-btn {
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    max-width: 300px;
  }

  .activities-your-journey .two-column-btn button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .activities-your-journey {
    padding: 3rem 1rem;
    gap: 1.25rem;
  }

  .activities-your-journey > h2 {
    font-size: 2.75rem;
    line-height: 3.2rem;
  }

  .activities-your-journey > p {
    font-size: 0.9rem;
  }
}