.storage-hero {
  padding-top: var(--space-12);
}

.storage-hero__grid {
  align-items: center;
  gap: var(--space-8);
}

.storage-hero__content p {
  max-width: 38rem;
}

.storage-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-4);
  font-size: var(--font-size-sm);
}

.storage-hero__highlights dt {
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.storage-hero__highlights dd {
  margin: 0;
  color: var(--color-text-muted);
}

.storage-hero__image {
  align-self: stretch;
}

.storage-breadcrumbs ol {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.storage-breadcrumbs li+li::before {
  content: "/";
  margin-right: var(--space-2);
  color: var(--gray-400);
}

.storage-section {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.storage-section__header {
  max-width: 44rem;
  margin-inline: auto;
}

.storage-list {
  list-style: none;
}

.storage-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.storage-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary-soft);
}

.storage-section__media {
  align-self: stretch;
}

.storage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.storage-grid {
  align-items: stretch;
}

.storage-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.storage-card .card__title {
  margin-bottom: var(--space-3);
}

.storage-split {
  align-items: start;
}

.storage-split--reverse {
  align-items: stretch;
}

.storage-section__tip {
  align-self: stretch;
  background: var(--gray-50);
}

.storage-gallery__item,
.storage-gallery__content {
  align-self: stretch;
}

.storage-final-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.storage-final-cta__content {
  max-width: 40rem;
}

@media (max-width: 992px) {
  .storage-hero__highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .storage-hero {
    padding-top: var(--space-8);
  }

  .storage-final-cta {
    align-items: flex-start;
  }

  .storage-section__cta {
    flex-direction: column;
    align-items: stretch;
  }
}
