/* Blog y actividades — experiencia pública editorial */

.content-hub-page {
  --hub-ink: #0f172a;
  --hub-muted: #64748b;
  --hub-line: #e2e8f0;
  --hub-soft: #f8fafc;
  --hub-accent: var(--brand, #3ea35d);
  --hub-accent-soft: #ecfdf5;
  background: #fff;
}

/* —— Listado blog —— */
.blog-list-body main,
.act-list-body main {
  overflow: visible;
}

.blog-page--list.content-hub-page {
  max-width: none;
  padding-bottom: 4rem;
}

/* Header listado blog — banner editorial o tipografía limpia */
.blog-list-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-soft, #f3faf5) 0%, #fff 100%);
  border-bottom: 1px solid var(--hub-line);
}

.blog-list-hero--cover {
  min-height: min(52vh, 440px);
  display: flex;
  align-items: flex-end;
  background: #0f172a;
}

.blog-list-hero__cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.blog-list-hero--cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.55) 45%,
    rgba(15, 23, 42, 0.25) 100%
  );
  pointer-events: none;
}

.blog-list-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: clamp(2.5rem, 6vw, 4rem) 1rem clamp(2rem, 4vw, 2.75rem);
}

.blog-list-hero--cover .blog-list-hero__inner {
  width: 100%;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.blog-list-hero__content {
  max-width: 40rem;
}

.blog-list-hero:not(.blog-list-hero--cover) .blog-list-hero__content {
  max-width: 46rem;
  padding-top: 0.5rem;
  border-top: 4px solid var(--hub-accent);
}

.hub-list-hero--act:not(.blog-list-hero--cover) {
  background: linear-gradient(180deg, #ecfdf5 0%, #fff 100%);
}

.hub-list-hero--act:not(.blog-list-hero--cover) .blog-list-hero__kicker {
  color: #059669;
}

.blog-list-hero__kicker {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-accent);
}

.blog-list-hero--cover .blog-list-hero__kicker {
  color: rgba(255, 255, 255, 0.85);
}

.blog-list-hero__title {
  margin: 0.75rem 0 0;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--hub-ink);
  text-wrap: balance;
}

.blog-list-hero--cover .blog-list-hero__title {
  color: #fff;
  max-width: 16ch;
}

.blog-list-hero__lead {
  margin: 1rem 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--hub-muted);
  max-width: 36rem;
}

.blog-list-hero--cover .blog-list-hero__lead {
  color: rgba(255, 255, 255, 0.82);
}

.blog-list-hero__featured-link {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background 0.15s;
}

.blog-list-hero__featured-link:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

/* Botones reutilizados en empty state */
.blog-list-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.blog-list-hero__btn--primary {
  background: var(--hub-accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(62, 163, 93, 0.28);
}

.blog-list-hero__btn--primary:hover {
  transform: translateY(-1px);
  color: #fff;
}

.blog-list-hero__btn--ghost {
  background: #fff;
  color: var(--hub-ink);
  border: 1px solid var(--hub-line);
}

.blog-list-hero__btn--ghost:hover {
  background: var(--hub-soft);
}

.blog-list-toolbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--hub-line);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.blog-list-toolbar__inner {
  max-width: 1120px;
  padding: 0.85rem 1rem 1rem;
}

.blog-cats--scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.blog-cats--scroll::-webkit-scrollbar {
  display: none;
}

.blog-page--list .blog-cat {
  flex-shrink: 0;
  border-color: var(--hub-line);
  background: #fff;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s, color 0.15s;
}

.blog-page--list .blog-cat:hover,
.blog-page--list .blog-cat.is-active {
  background: var(--hub-ink);
  border-color: var(--hub-ink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
}

.blog-cities--compact {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px dashed var(--hub-line);
  border-bottom: none;
  padding-bottom: 0;
}

.blog-featured-section .container,
.blog-list-section.container {
  max-width: 1120px;
}

.blog-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  margin-bottom: 1.35rem;
}

.blog-section-sub {
  margin: 0;
  font-size: 0.875rem;
  color: var(--hub-muted);
}

.blog-list-section {
  padding-top: 2.5rem;
}

.blog-grid--list {
  gap: 1.75rem;
}

@media (min-width: 992px) {
  .blog-grid--list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.blog-card--list .blog-card__media {
  position: relative;
  overflow: hidden;
}

.blog-card--list .blog-card__read {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hub-ink);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
}

.blog-card--list:hover .blog-card__read {
  opacity: 1;
  transform: translateY(0);
}

.blog-card__author {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
}

.blog-card__author-avatar {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--hub-ink);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
}

.blog-card__img--placeholder {
  background:
    linear-gradient(135deg, rgba(62, 163, 93, 0.35), rgba(15, 23, 42, 0.08)),
    repeating-linear-gradient(-45deg, #ecfdf5, #ecfdf5 8px, #d1fae5 8px, #d1fae5 16px);
}

.blog-empty,
.act-grid .blog-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  border-radius: 1.5rem;
  border: 1px dashed #cbd5e1;
  background: linear-gradient(180deg, #f8fafc, #fff);
}

.blog-empty__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--hub-accent-soft);
  color: var(--hub-accent);
  font-size: 1.25rem;
}

.blog-empty__title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 650;
  color: var(--hub-ink);
}

.blog-empty__text {
  max-width: 28rem;
  margin: 0.65rem auto 0;
  color: var(--hub-muted);
  line-height: 1.6;
}

.blog-empty__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.blog-empty__actions .blog-list-hero__btn--primary {
  color: #fff;
}

.blog-empty__actions .blog-list-hero__btn--ghost {
  color: var(--hub-ink);
  background: #fff;
  border-color: var(--hub-line);
}

@media (max-width: 640px) {
  .blog-list-hero--cover .blog-list-hero__title {
    max-width: none;
  }
}

.blog-featured--magazine {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .blog-featured--magazine {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: repeat(2, minmax(200px, 1fr));
    min-height: 420px;
  }

  .blog-featured--magazine .blog-featured-card:first-child {
    grid-row: 1 / span 2;
    min-height: 100%;
  }

  .blog-featured--magazine .blog-featured-card:first-child .blog-featured-card__body {
    min-height: 100%;
  }

  .blog-featured--magazine .blog-featured-card:first-child h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  }
}

.blog-featured-card {
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.14);
}

.blog-featured-card__body {
  background: linear-gradient(to top, rgba(15, 23, 42, 0.88) 0%, rgba(15, 23, 42, 0.35) 55%, transparent 100%);
}

.blog-card--rich {
  border: 1px solid var(--hub-line);
  border-radius: 1.125rem;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s;
}

.blog-card--rich:hover {
  transform: translateY(-3px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.blog-card--rich .blog-card__img {
  aspect-ratio: 4 / 3;
  transition: transform 0.45s ease;
}

.blog-card--rich:hover .blog-card__img {
  transform: scale(1.04);
}

.blog-card--rich .blog-card__link {
  overflow: hidden;
}

.blog-card--rich .blog-card__title {
  font-size: 1.125rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

/* —— Artículo blog —— */
.blog-article--rich.content-hub-article {
  background: #fff;
}

.blog-article--rich .blog-article__hero {
  position: relative;
  height: min(58vh, 520px);
  background-size: cover;
  background-position: center;
}

.blog-article--rich .blog-article__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.92) 0%,
    rgba(15, 23, 42, 0.45) 45%,
    rgba(15, 23, 42, 0.15) 100%
  );
}

.blog-article__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: min(58vh, 520px);
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 2.5rem;
  color: #fff;
}

.blog-article__hero-inner .blog-article__nav a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.blog-article__hero-inner .blog-article__nav a:hover {
  color: #fff;
}

.blog-article__hero-inner .blog-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  backdrop-filter: blur(6px);
}

.blog-article__hero-inner .blog-tag--city {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.hashtag-link--on-dark {
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 600;
}

.hashtag-link--on-dark:hover {
  background: rgba(255, 255, 255, 0.22);
}

.blog-article__hero-inner h1 {
  margin-top: 0.75rem;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.blog-article__hero-inner .blog-author-chip__avatar {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.blog-article__hero-inner .blog-author-chip__name {
  color: #fff;
}

.blog-article__hero-inner .blog-author-chip__date {
  color: rgba(255, 255, 255, 0.78);
}

.blog-article--rich .blog-article__wrap {
  max-width: 720px;
  padding: 2.5rem 1rem 4rem;
}

.blog-article--rich .blog-article__excerpt {
  font-size: 1.2rem;
  color: #334155;
  border-left: 4px solid var(--hub-accent);
  padding-left: 1rem;
  margin-top: 0;
}

.blog-article--rich .blog-article__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
}

.blog-article--rich .blog-article__city-cta {
  border-radius: 1.125rem;
  background: linear-gradient(135deg, var(--hub-accent-soft), #fff);
  border: 1px solid #bbf7d0;
  box-shadow: 0 8px 24px rgba(62, 163, 93, 0.08);
}

.blog-related {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* —— Actividades listado —— */
.act-page.content-hub-page {
  padding-bottom: 4rem;
}

.act-featured,
.act-list {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.act-featured {
  padding-top: 2rem;
}

.act-list {
  padding-top: 2.5rem;
}

.act-page.content-hub-page .act-card {
  border-radius: 1.125rem;
  border-color: var(--hub-line);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.act-page.content-hub-page .act-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

/* —— Ficha actividad —— */
.act-detail.content-hub-article {
  background: #fff;
}

.act-detail.content-hub-article .act-detail__hero {
  position: relative;
  height: min(52vh, 460px);
  background-size: cover;
  background-position: center;
}

.act-detail.content-hub-article .act-detail__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.9) 0%,
    rgba(15, 23, 42, 0.35) 50%,
    rgba(15, 23, 42, 0.1) 100%
  );
}

.act-detail__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2rem 1rem 2.25rem;
  min-height: min(52vh, 460px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.act-detail__hero-inner .blog-article__nav a {
  color: rgba(255, 255, 255, 0.85);
}

.act-detail__hero-inner h1 {
  margin-top: 0.65rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 20ch;
}

.act-detail__facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  margin: -2.5rem auto 0;
  max-width: 1120px;
  padding: 0 1rem;
  position: relative;
  z-index: 2;
}

.act-detail__fact-card {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  border: 1px solid var(--hub-line);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.act-detail__fact-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--hub-muted);
  margin-bottom: 0.35rem;
}

.act-detail__fact-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hub-ink);
  line-height: 1.4;
}

.act-detail.content-hub-article .act-detail__wrap {
  max-width: 720px;
  padding: 2.5rem 1rem 4rem;
}

.act-detail.content-hub-article .blog-article__content {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #334155;
}

.act-detail.content-hub-article .act-detail__schedule {
  border-radius: 1rem;
  background: var(--hub-soft);
  border-color: var(--hub-line);
}

.act-detail.content-hub-article .act-detail__tips {
  border-radius: 1rem;
  box-shadow: inset 0 0 0 1px #bbf7d0;
}

.act-detail.content-hub-article .act-detail__video {
  margin-top: 2.5rem;
  padding-top: 0;
}

.act-detail.content-hub-article .act-detail__video h2 {
  font-size: 1.25rem;
  font-weight: 650;
  margin-bottom: 1rem;
}

.act-detail.content-hub-article .blog-article__city-cta {
  border-radius: 1.125rem;
  background: linear-gradient(135deg, var(--hub-accent-soft), #fff);
  border: 1px solid #bbf7d0;
}

.act-detail__no-hero {
  padding-top: 2rem;
  max-width: 1120px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .act-detail__facts-grid {
    margin-top: -1.5rem;
  }

  .blog-article__hero-inner h1,
  .act-detail__hero-inner h1 {
    max-width: none;
  }
}

/* —— Ficha detalle premium (blog + actividades) —— */
.blog-detail-body,
.act-detail-body {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 28%);
}

.content-hub-detail {
  --detail-radius: 1.35rem;
}

.content-hub-detail .blog-article__hero,
.content-hub-detail .act-detail__hero {
  height: min(62vh, 560px);
}

.content-hub-detail .blog-article__hero-inner,
.content-hub-detail .act-detail__hero-inner {
  min-height: min(62vh, 560px);
  padding-bottom: 3rem;
}

.content-hub-detail .blog-article__hero::after,
.content-hub-detail .act-detail__hero::after {
  background: linear-gradient(
    to top,
    rgba(15, 23, 42, 0.94) 0%,
    rgba(15, 23, 42, 0.5) 42%,
    rgba(15, 23, 42, 0.12) 100%
  );
}

.content-hub-detail .blog-article__hero-inner h1,
.content-hub-detail .act-detail__hero-inner h1 {
  max-width: 22ch;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.hub-detail-stage {
  padding: 0 0 2rem;
  margin-top: -0.5rem;
}

.hub-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  max-width: 1120px;
  align-items: start;
}

@media (min-width: 1024px) {
  .hub-detail-grid {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 2.5rem 3rem;
  }
}

.hub-detail-main.blog-article__wrap,
.hub-detail-main.act-detail__wrap {
  max-width: none;
  padding-top: 2rem;
  padding-bottom: 2rem;
  min-width: 0;
}

.hub-detail-lead {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  line-height: 1.65;
  color: #334155;
  border-left: none;
  padding: 1.25rem 1.35rem;
  margin: 0 0 1.75rem;
  border-radius: var(--detail-radius);
  background: linear-gradient(135deg, #fff 0%, var(--hub-accent-soft) 100%);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
  border: 1px solid #d1fae5;
}

.hub-detail-prose {
  padding: clamp(1.25rem, 3vw, 2rem);
  border-radius: var(--detail-radius);
  background: #fff;
  border: 1px solid var(--hub-line);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.05);
  margin-bottom: 2rem;
}

.hub-detail-prose .blog-article__content {
  margin: 0;
}

.hub-detail-prose .blog-rich-content > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  font-size: 3.1rem;
  line-height: 0.82;
  font-weight: 750;
  color: var(--hub-ink);
}

.hub-detail-aside__sticky {
  position: sticky;
  top: calc(var(--detail-sticky-top, 72px) + 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hub-detail-aside__card {
  padding: 1.1rem 1.15rem;
  border-radius: 1.125rem;
  background: #fff;
  border: 1px solid var(--hub-line);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.hub-detail-aside__card--cta {
  background: linear-gradient(160deg, var(--hub-accent-soft) 0%, #fff 70%);
  border-color: #bbf7d0;
}

.hub-detail-aside__kicker {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hub-muted);
}

.hub-detail-aside__card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--hub-ink);
}

.hub-detail-aside__card > p:not(.hub-detail-aside__kicker) {
  margin: 0 0 0.85rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--hub-muted);
}

.hub-detail-aside__facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hub-detail-aside__facts li {
  display: grid;
  gap: 0.15rem;
}

.hub-detail-aside__facts span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--hub-muted);
}

.hub-detail-aside__facts strong {
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.4;
  color: var(--hub-ink);
}

.hub-detail-aside__actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hub-detail-aside__actions .dest-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.hub-detail-aside__back {
  display: block;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--hub-ink);
  background: #fff;
  border: 1px solid var(--hub-line);
  text-decoration: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.hub-detail-aside__back:hover {
  border-color: #94a3b8;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.hub-detail-comments {
  margin-top: 2.5rem;
  padding: 1.5rem 1.35rem;
  border-radius: var(--detail-radius);
  background: #fff;
  border: 1px solid var(--hub-line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.04);
  border-top: none;
}

.hub-detail-comments h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hub-detail-related-band {
  margin-top: 0;
  padding: 3rem 1rem 4rem;
  background: linear-gradient(180deg, #fff 0%, var(--hub-soft) 100%);
  border-top: 1px solid var(--hub-line);
}

.hub-detail-related-band--alt {
  background: linear-gradient(180deg, var(--hub-soft) 0%, #fff 100%);
}

.hub-detail-related-band h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.35rem;
  color: var(--hub-ink);
}

.hub-detail-related-band .blog-grid--compact,
.hub-detail-related-band .act-grid--compact {
  gap: 1.25rem;
}

.content-hub-detail .act-detail__fact-card {
  border-radius: 1.125rem;
  padding: 1.1rem 1.2rem;
  backdrop-filter: blur(8px);
}

.content-hub-detail .act-detail__schedule.hub-detail-schedule {
  margin-bottom: 1.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--hub-line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.content-hub-detail .act-detail__tips.hub-detail-tips {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, var(--hub-accent-soft), #fff);
}

.content-hub-detail .hub-detail-disclaimer {
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 0.85rem;
  background: var(--hub-soft);
  font-size: 0.8125rem;
  color: var(--hub-muted);
}

.content-hub-detail .act-detail__video {
  padding: 1.25rem;
  border-radius: var(--detail-radius);
  background: #fff;
  border: 1px solid var(--hub-line);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.content-hub-detail .content-gallery--editorial {
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1023px) {
  .hub-detail-aside {
    order: -1;
  }

  .hub-detail-aside__sticky {
    position: static;
  }

  .hub-detail-aside__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .hub-detail-aside__actions .dest-btn {
    flex: 1 1 auto;
    width: auto;
  }
}
