.service-authority-section {
  padding: clamp(64px, 8vw, 108px) 0;
  background: #fbfaf7;
  color: #171615;
}

.service-authority-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.service-answer-card {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(300px, .58fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(23, 22, 21, .07);
}

.service-answer-kicker,
.service-authority-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #8b7530;
  font-size: .74rem;
  font-weight: 820;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-answer-kicker::before,
.service-authority-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #c9a961;
}

.service-answer-card h2,
.service-authority-block h2,
.service-authority-faq h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.85rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.03;
}

.service-answer-card p,
.service-authority-block p,
.service-authority-faq p {
  margin: 16px 0 0;
  color: #68625a;
  font-size: 1rem;
  line-height: 1.76;
}

.service-answer-links {
  display: grid;
  gap: 10px;
}

.service-answer-links a,
.service-internal-links a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  color: #171615;
  font-weight: 820;
  line-height: 1.25;
  text-decoration: none;
  background: #fbfaf7;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-answer-links a::after,
.service-internal-links a::after {
  content: ">";
  color: #8b7530;
  font-weight: 900;
}

.service-answer-links a:hover,
.service-internal-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 169, 97, .46);
  box-shadow: 0 14px 34px rgba(23, 22, 21, .08);
}

.service-authority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.service-authority-block,
.service-authority-faq details {
  border: 1px solid rgba(23, 22, 21, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 14px 38px rgba(23, 22, 21, .05);
}

.service-authority-block {
  padding: 22px;
}

.service-authority-block h3,
.service-authority-faq summary {
  margin: 10px 0 0;
  color: #171615;
  font-size: 1.05rem;
  font-weight: 850;
  line-height: 1.28;
}

.service-authority-faq {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(340px, 1fr);
  gap: clamp(24px, 4vw, 52px);
  margin-top: clamp(26px, 5vw, 54px);
  align-items: start;
}

.service-authority-faq-list {
  display: grid;
  gap: 12px;
}

.service-authority-faq details {
  overflow: hidden;
}

.service-authority-faq summary {
  cursor: pointer;
  padding: 18px 20px;
  list-style: none;
}

.service-authority-faq summary::-webkit-details-marker {
  display: none;
}

.service-authority-faq details p {
  margin: 0;
  padding: 0 20px 20px;
}

.service-internal-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 900px) {
  .service-answer-card,
  .service-authority-grid,
  .service-authority-faq {
    grid-template-columns: 1fr;
  }

  .service-answer-card h2,
  .service-authority-block h2,
  .service-authority-faq h2 {
    font-size: 2.35rem;
  }
}

@media (max-width: 640px) {
  .service-authority-inner {
    width: min(100% - 28px, 1180px);
  }

  .service-answer-card {
    padding: 22px;
  }

  .service-answer-card h2,
  .service-authority-block h2,
  .service-authority-faq h2 {
    font-size: 2rem;
  }
}
