.hero--tips {
  position: relative;
}
.hero-layout--tips {
  align-items: stretch;
}
.hero-copy {
  max-width: 40rem;
}
.hero-meta-value {
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.hero-tags {
  margin-top: var(--space-md);
}
.hero-visual {
  align-self: stretch;
}
.tips-hero-atlas {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-md);
}
.tips-hero-atlas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.tips-hero-atlas__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
}
.tips-hero-atlas__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tips-hero-atlas__overlay-card {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
}
.tips-hero-atlas__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(90deg, rgba(5, 6, 10, 0.96), rgba(5, 6, 10, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.tips-hero-atlas__footer-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
}
.tips-hero-atlas__footer-highlight {
  font-size: var(--font-size-sm);
  color: var(--color-primary-strong);
}
.section--tips-overview {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tips-overview {
  align-items: flex-start;
}
.tips-filter {
  padding: var(--space-lg);
}
.tips-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.tips-filter-chip {
  cursor: pointer;
  transition: background-color var(--transition-normal), border-color var(--transition-normal), color var(--transition-normal), transform var(--transition-fast);
}
.tips-filter-chip.is-active {
  border-color: rgba(245, 193, 95, 0.8);
  background: rgba(245, 193, 95, 0.16);
  color: var(--color-primary-strong);
  transform: translateY(-1px);
}
.section--tips-detail {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tips-grid {
  align-items: stretch;
}
.tips-card__body {
  align-items: flex-start;
}
.tips-card__side {
  align-self: stretch;
}
.tips-card__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}
.tips-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tips-season-chip {
  padding: var(--space-md);
}
.tips-budget-table {
  margin-top: var(--space-md);
}
.tips-faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.tips-faq {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(6, 8, 16, 0.96);
  padding: 0.6rem 0.8rem;
}
.tips-faq summary {
  list-style: none;
  cursor: pointer;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--color-text);
}
.tips-faq summary::-webkit-details-marker {
  display: none;
}
.tips-faq summary::after {
  content: "+";
  float: right;
  font-size: 0.9em;
  color: var(--color-text-muted);
}
.tips-faq[open] summary::after {
  content: "–";
}
.tips-faq__body {
  margin-top: var(--space-xs);
}
.section--tips-cta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.tips-cta {
  padding: var(--space-xl);
}
@media (max-width: 767.98px) {
  .tips-hero-atlas__overlay-card {
    position: static;
    margin-top: var(--space-md);
  }
  .tips-hero-atlas__media {
    border-radius: var(--radius-md);
  }
  .tips-cta {
    padding: var(--space-lg);
  }
}
@media (min-width: 1024px) {
  .tips-hero-atlas {
    padding: var(--space-lg);
  }
}
