.twostars-tours-fit-guide {
  padding: 0 5% var(--spacing-section);
  background: linear-gradient(180deg, rgba(247, 241, 231, 0.48) 0%, rgba(255, 255, 255, 1) 100%);
}

.twostars-tours-fit-guide__inner {
  width: min(100%, 1360px);
  margin: 0 auto;
}

.twostars-tours-fit-guide__header {
  max-width: 800px;
  margin-bottom: 3rem;
}

.twostars-tours-fit-guide__label {
  margin: 0 0 0.95rem;
  color: var(--color-sunset-orange);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.twostars-tours-fit-guide__title {
  margin: 0;
  color: var(--color-deep-navy);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
}

.twostars-tours-fit-guide__intro {
  max-width: 720px;
  margin: 1.15rem 0 0;
  color: rgba(13, 27, 42, 0.74);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.82;
}

.twostars-tours-fit-guide__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.twostars-tours-fit-guide__card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 241, 231, 0.94) 100%);
  border: 1px solid rgba(27, 58, 107, 0.08);
  box-shadow: 0 20px 60px rgba(16, 28, 46, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.twostars-tours-fit-guide__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 18%, rgba(255, 255, 255, 0.4) 48%, rgba(255, 255, 255, 0) 78%);
  transform: translateX(-135%);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.twostars-tours-fit-guide__card:hover,
.twostars-tours-fit-guide__card:focus-within {
  transform: translateY(-10px);
  border-color: rgba(212, 165, 116, 0.28);
  box-shadow: 0 28px 84px rgba(16, 28, 46, 0.12);
}

.twostars-tours-fit-guide__card:hover::after,
.twostars-tours-fit-guide__card:focus-within::after {
  transform: translateX(135%);
}

.twostars-tours-fit-guide__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.twostars-tours-fit-guide__media img,
.twostars-tours-fit-guide__media-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.twostars-tours-fit-guide__media-placeholder {
  background: linear-gradient(135deg, rgba(27, 58, 107, 0.24) 0%, rgba(212, 165, 116, 0.24) 100%);
}

.twostars-tours-fit-guide__media-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(7, 11, 16, 0.55) 0%, rgba(7, 11, 16, 0.06) 62%),
    linear-gradient(to right, rgba(7, 11, 16, 0.12) 0%, rgba(7, 11, 16, 0) 55%);
}

.twostars-tours-fit-guide__card:hover .twostars-tours-fit-guide__media img,
.twostars-tours-fit-guide__card:focus-within .twostars-tours-fit-guide__media img {
  transform: scale(1.08);
}

.twostars-tours-fit-guide__content {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 1px);
  padding: 1.7rem 1.5rem 1.5rem;
}

.twostars-tours-fit-guide__card h3 {
  margin: 0;
  color: var(--color-deep-navy);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1.08;
}

.twostars-tours-fit-guide__card p {
  margin: 0.85rem 0 0;
  color: rgba(13, 27, 42, 0.72);
  font-family: var(--font-body);
  font-size: 0.96rem;
  line-height: 1.78;
}

.twostars-tours-fit-guide__link {
  margin-top: auto;
  padding-top: 1.4rem;
  color: var(--color-navy-primary);
  font-family: var(--font-body);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .twostars-tours-fit-guide__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .twostars-tours-fit-guide {
    padding: 0 1.5rem 5rem;
  }

  .twostars-tours-fit-guide__grid {
    grid-template-columns: 1fr;
  }

  .twostars-tours-fit-guide__content {
    padding: 1.5rem 1.25rem 1.35rem;
  }
}
