body.actions-page {
  background:
    radial-gradient(circle at top, rgba(237, 192, 49, 0.22), transparent 38%),
    linear-gradient(180deg, #f3f7e9 0%, #e8eedb 100%);
  color: #1f2418;
}

.actions-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 32px 20px 64px;
}

.actions-hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 30px;
}

.actions-hero__copy,
.actions-hero__card,
.action-card,
.actions-callout,
.actions-shot {
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(237, 192, 49, 0.75);
  border-radius: 24px;
  box-shadow: 0 16px 30px rgba(54, 45, 17, 0.16);
}

.actions-hero__copy {
  padding: 34px 32px;
  position: relative;
  overflow: hidden;
}

.actions-hero__copy::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(44, 102, 200, 0.12);
}

.actions-kicker {
  color: #1e6c8d;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 12px;
}

.actions-hero h1 {
  font-family: "Patrick Hand", "Comic Sans MS", cursive;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.95;
  color: #c58e0b;
  margin-bottom: 14px;
}

.actions-lead,
.actions-hero__card p,
.action-card p,
.actions-callout p {
  font-size: 1.05rem;
  line-height: 1.7;
}

.actions-hero__card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, rgba(30, 108, 141, 0.92), rgba(44, 102, 200, 0.9));
  color: #f8f2d9;
}

.actions-hero__card h2,
.actions-callout h2,
.action-card h2 {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.actions-gallery {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr;
  gap: 20px;
  margin-bottom: 28px;
}

.actions-shot {
  padding: 10px;
}

.actions-shot img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 18px;
}

.actions-shot--wide img {
  min-height: 360px;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.action-card {
  padding: 24px;
}

.action-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(237, 192, 49, 0.22);
  color: #8a6709;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.action-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.resource-link,
.actions-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.resource-link {
  background: #f2ea6b;
  color: #1c1c1c;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.actions-button {
  background: #1e6c8d;
  color: #f8f2d9;
  box-shadow: 0 12px 24px rgba(30, 108, 141, 0.24);
}

.resource-link:hover,
.actions-button:hover {
  transform: translateY(-2px);
}

.actions-callout {
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

@media (max-width: 980px) {
  .actions-hero,
  .actions-gallery,
  .actions-grid,
  .actions-callout {
    grid-template-columns: 1fr;
  }

  .actions-callout {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .actions-shell {
    padding: 20px 12px 48px;
  }

  .actions-hero__copy,
  .actions-hero__card,
  .action-card,
  .actions-callout {
    padding: 20px;
    border-radius: 18px;
  }

  .actions-shot {
    padding: 8px;
    border-radius: 18px;
  }

  .actions-shot img,
  .actions-shot--wide img {
    min-height: 220px;
  }
}
