body {
  background-color: var(--primary-color);
  margin: 0;
  padding: 0;
}

.detail-page {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 30px 18px 56px;
  box-sizing: border-box;
}

.detail-container {
  width: 100%;
  max-width: 1120px;
}

.detail-header {
  margin-bottom: 24px;
  padding: 16px 18px 18px;
  background-color: var(--marine-blue);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
}

.detail-kicker {
  margin: 0;
  color: var(--quaternary-color);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.detail-header h1 {
  margin: 8px 0;
  color: white;
  font-size: clamp(2rem, 4.4vw, 3.05rem);
  line-height: 1.15;
}

.detail-subtitle {
  margin: 0;
  color: var(--quinary-color);
  font-size: 1.05rem;
}

.detail-meta {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
}

.detail-section {
  background-color: var(--dark-grey);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 18px;
}

.detail-section h2 {
  margin: 0 0 8px;
  color: white;
  font-size: 1.95rem;
  font-weight: 700;
}

.detail-section p {
  color: white;
  margin: 0;
  text-align: left;
  line-height: 1.7;
  font-size: 1.15rem;
}

.detail-section ul {
  margin: 0;
  padding-left: 24px;
}

.detail-section li {
  color: var(--quinary-color);
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.detail-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 10px 16px;
  border: 2px solid white;
  color: white;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.detail-button:hover {
  transform: translateY(-2px);
  background-color: white;
  color: var(--primary-color);
}

.detail-button.primary {
  background-color: var(--quaternary-color);
  border-color: var(--quaternary-color);
  color: var(--primary-color);
}

.detail-button.primary:hover {
  background-color: white;
  border-color: white;
}

@media (max-width: 900px) {
  .detail-page {
    padding: 24px 14px 42px;
  }

  .detail-header {
    margin-bottom: 18px;
  }

  .detail-section {
    padding: 16px;
    margin-bottom: 14px;
  }

  .detail-section h2 {
    font-size: 1.65rem;
  }

  .detail-section p,
  .detail-section li {
    font-size: 1rem;
  }
}
