.access-page {
  min-height: 100vh;
  width: min(calc(100% - 16px), 1180px);
}

.access-overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 -8px 20px;
}

.access-purpose,
.access-guide {
  min-height: 254px;
  height: 254px;
  padding: 26px 18px;
  background: #062412;
  color: #fffdf4;
  box-shadow: 0 8px 16px rgba(0, 26, 7, 0.22);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.access-purpose:hover,
.access-purpose:focus-visible,
.access-guide:hover,
.access-guide:focus-visible {
  background: var(--green);
  box-shadow: 0 8px 18px rgba(0, 36, 16, 0.3);
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  transform: translateY(-2px);
}

.access-purpose {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.access-launch__title {
  color: #fffdf4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-style: italic;
  line-height: 1;
  text-align: center;
}

.access-launch__copy {
  margin-top: 22px;
  color: #f3f5ec;
  font-size: clamp(1.2rem, 2.05vw, 2.2rem);
  line-height: 1.38;
}

.access-launch__copy strong {
  color: var(--gold);
}

.access-guide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.access-guide__title {
  color: #fffdf4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  font-style: italic;
  line-height: 1;
}

.access-guide__copy {
  margin-top: 22px;
  color: #f3f5ec;
  font-size: clamp(1.2rem, 2.05vw, 2.2rem);
  line-height: 1.38;
  text-align: left;
}

.access-guide__copy strong {
  color: var(--gold);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.service-card {
  display: grid;
  grid-template-columns: minmax(150px, 36%) 1fr;
  height: 304px;
  overflow: hidden;
  border: 1px solid #0c3b42;
  background: var(--green);
  box-shadow: 0 3px 9px rgba(0, 36, 16, 0.18);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.service-card:focus-visible {
  box-shadow: 0 8px 18px rgba(0, 36, 16, 0.28);
  outline: 3px solid #d39c00;
  outline-offset: 2px;
  transform: translateY(-2px);
}

.service-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  background: #dfe5df;
}

.service-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 22px;
  color: #fffdf4;
}

.service-title {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 1.65vw, 1.55rem);
  font-weight: 700;
  line-height: 1.05;
}

.service-description {
  margin-top: 16px;
  color: #f3f5ec;
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  line-height: 1.31;
}

.service-minutes__description {
  font-size: clamp(0.75rem, 1.125vw, 0.96rem);
}

.service-link {
  margin-top: auto;
  padding-top: 13px;
  color: var(--gold);
  font-size: clamp(1rem, 1.75vw, 1.35rem);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.service-helper {
  margin-top: 5px;
  color: #d8eadb;
  font-size: 0.76rem;
  line-height: 1.25;
}

.task-intro {
  text-align: left;
}

.task-intro > p:last-child {
  margin-left: 0;
}

.task-launch {
  max-width: 860px;
  margin: 0 auto 12px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid #0c3b42;
  background: #06371d;
  color: #fffdf4;
}

.task-launch h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
}

.task-prompt {
  display: block;
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 14px;
  border: 1px solid #9ab6a0;
  border-radius: 0;
  background: #fff;
  color: #122015;
  font: 1rem/1.45 Arial, Helvetica, sans-serif;
}

.task-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.task-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: 0;
  background: var(--gold);
  color: #132114;
  cursor: pointer;
  font: 700 0.95rem/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
}

.task-button-secondary {
  background: transparent;
  color: #fffdf4;
}

.task-button:hover,
.task-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.task-status {
  margin: 14px 0 0;
  color: #d8eadb;
  font-size: 0.9rem;
  line-height: 1.35;
}

.service-study {
  background: var(--green);
}

.service-sermon {
  background: var(--green);
}

.service-minutes {
  background: var(--green);
}

.service-polity {
  background: var(--green);
}

.service-resources {
  background: var(--green);
}

@media (max-width: 760px) {
  .access-overview {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .access-purpose,
  .access-guide {
    min-height: 0;
    padding: 22px 16px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .service-card {
    height: auto;
    min-height: 0;
  }

  .service-link {
    margin-top: 10px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .access-purpose,
  .access-guide {
    padding: 18px 16px;
  }

  .access-purpose p {
    font-size: 1.3rem;
  }

  .access-guide__title {
    font-size: 1.8rem;
  }

  .access-guide__copy {
    margin-top: 10px;
    font-size: 0.95rem;
  }

  .service-card {
    grid-template-columns: 36% 1fr;
  }

  .service-card img {
    min-height: 0;
  }

  .service-copy {
    padding: 15px 16px 16px;
  }

  .service-title {
    font-size: clamp(1.32rem, 5.4vw, 1.7rem);
    line-height: 1.08;
  }

  .service-description {
    margin-top: 10px;
    font-size: clamp(0.94rem, 4vw, 1.12rem);
    line-height: 1.3;
  }

  .service-link {
    margin-top: 13px;
    font-size: 1rem;
  }

  .task-actions {
    flex-direction: column;
  }

  .task-button {
    width: 100%;
  }
}
