.page-themed main {
  background-color: var(--color-bg);
}

.themed-hero {
  align-items: center;
  gap: var(--space-8);
}

.themed-hero__content {
  max-width: 36rem;
}

.themed-hero__meta {
  align-items: flex-start;
  justify-content: flex-start;
}

.themed-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-hero__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.themed-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .themed-hero {
    text-align: left;
  }

  .themed-hero__media {
    margin-top: var(--space-6);
  }
}

.themed-scenarios {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-list {
  display: grid;
  gap: var(--space-4);
}

.themed-list__item h3 {
  margin-bottom: var(--space-2);
}

.themed-direct-links .themed-links {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-2);
}

.themed-direct-links .themed-links a {
  font-size: var(--font-size-sm);
  color: var(--color-accent);
}

.themed-direction {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-points {
  gap: var(--space-6);
}

.themed-point h3 {
  margin-bottom: var(--space-2);
}

.themed-direction__aside {
  align-self: stretch;
}

.themed-visuals {
  align-items: center;
  gap: var(--space-8);
}

.themed-visuals__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.themed-visuals__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-bullets {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: var(--space-2);
}

.themed-bullets li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: var(--space-2);
  border-radius: 999px;
  background-color: var(--color-accent);
  vertical-align: middle;
}

.themed-attractions {
  align-items: center;
  gap: var(--space-8);
}

.themed-attractions__grid {
  margin-top: var(--space-4);
}

.themed-attractions__media .themed-attractions__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.themed-attractions__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-attractions__note {
  max-width: 36rem;
}

.themed-gallery__layout {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .themed-gallery__layout {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.5fr);
  }
}

.themed-gallery__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.themed-gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-gallery__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-case-study {
  align-items: flex-start;
  gap: var(--space-8);
}

.themed-case-grid {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

@media (min-width: 768px) {
  .themed-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.themed-case-study__aside {
  align-self: stretch;
}

.themed-venues__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.themed-venues__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.themed-testimonials-cta {
  gap: var(--space-8);
}

.themed-testimonials-cta__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.themed-cta__form {
  margin-top: var(--space-4);
}

.themed-cta__form .btn {
  width: 100%;
}

@media (min-width: 640px) {
  .themed-cta__form .btn {
    width: auto;
  }
}

.themed-cta {
  border-radius: var(--radius-xl);
}

@media (max-width: 767px) {
  .themed-scenarios,
  .themed-direction,
  .themed-visuals,
  .themed-attractions,
  .themed-case-study,
  .themed-testimonials-cta {
    grid-template-columns: minmax(0, 1fr);
  }
}
