/* ── Route pages — static SEO pages for sochitrails.ru/routes/ ── */

:root {
  --brand:        #30462d;
  --brand-light:  #3d5a38;
  --brand-dark:   #243620;
  --taupe:        #a9a791;
  --taupe-light:  #c5c3b3;
  --cream:        #f5f4f0;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #6b6b6b;
  --accent:       #f75532;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08);
  --shadow-md:    0 4px 12px rgba(0,0,0,.12);
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */

.page-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

/* ── Brand header (matches SPA sidebar header) ── */

.brand-header {
  background: var(--brand);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.brand-header__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-header__link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-header__logo {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.25));
}

.brand-header__text {
  display: flex;
  flex-direction: column;
}

.brand-header__main {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-header__sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--taupe-light);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.2;
}

.brand-header__nav-group {
  display: flex;
  gap: 8px;
  align-items: center;
}

.brand-header__nav {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--taupe-light);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  transition: all .2s;
}

.brand-header__nav:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.08);
}

/* ── Breadcrumbs ── */

.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  padding: 12px 0 16px;
}

.breadcrumbs a {
  color: var(--brand);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs .sep {
  margin: 0 6px;
  opacity: 0.5;
}

/* ── Page title ── */

h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.25;
  color: var(--brand-dark);
  margin-bottom: 20px;
}

/* ── Mini-map ── */

.route-map-wrap {
  display: none; /* shown by JS */
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-md);
  background: #e8e6df;
}

#route-map,
#place-map {
  width: 100%;
  height: 100%;
}

/* ── Elevation profile ── */

.elevation-wrap {
  display: none; /* shown by JS */
  margin-bottom: 24px;
}

.elevation-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px 0 4px;
  font-size: 13px;
  color: var(--text-muted);
}

.elevation-stats .stat {
  display: flex;
  align-items: center;
  gap: 4px;
}

.elevation-stats .stat-icon {
  font-size: 15px;
  opacity: 0.7;
}

.elevation-stats .stat-value {
  font-weight: 600;
  color: var(--text);
}

#elevation-canvas {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  background: #fafaf5;
  cursor: crosshair;
}

/* ── Quick facts ── */

.quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.fact-card {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  flex: 1 1 auto;
  min-width: 140px;
}

.fact-icon {
  font-size: 18px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.fact-label {
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.fact-value {
  font-weight: 600;
  font-size: 14px;
}

/* ── CTA button ── */

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s;
  margin-bottom: 32px;
}

.cta-btn:hover {
  background: var(--brand-light);
}

.cta-btn .arrow {
  font-size: 18px;
}

/* ── Sections ── */

.section {
  margin-bottom: 28px;
}

.section h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--brand-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--taupe-light);
}

.section p,
.section ul {
  font-size: 15px;
  line-height: 1.7;
}

.section ul {
  padding-left: 20px;
}

.section li {
  margin-bottom: 6px;
}

/* ── Stages table ── */

.stages-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-top: 4px;
}

.stages-table th {
  background: var(--brand);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 10px;
  text-align: left;
}

.stages-table td {
  padding: 8px 10px;
  border-bottom: 1px solid var(--taupe-light);
  vertical-align: top;
}

.stages-table tr:last-child td {
  border-bottom: none;
}

.stages-table tr:nth-child(even) {
  background: rgba(0,0,0,0.02);
}

/* ── Two-column layout ── */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ── Footer ── */

.site-footer {
  text-align: center;
  padding: 24px 0;
  border-top: 1px solid var(--taupe-light);
  margin-top: 40px;
  font-size: 13px;
  color: var(--text-muted);
}

.site-footer a {
  color: var(--brand);
  text-decoration: none;
}

/* ── Catalog page ── */

.catalog-intro {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.region-group {
  margin-bottom: 32px;
}

.region-group h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--brand-dark);
  margin-bottom: 16px;
}

.route-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: box-shadow .2s, transform .15s;
  position: relative;
  overflow: visible;
}

.route-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  z-index: 10;
}

.route-card .card-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.route-card .card-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.route-card .card-desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Catalog filters ── */

.catalog-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.catalog-filters__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 4px;
}

.catalog-filter {
  padding: 6px 16px;
  border: 1.5px solid #ddd;
  border-radius: 20px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s ease;
}

.catalog-filter:hover {
  border-color: var(--fc, var(--brand-dark));
  color: var(--fc, var(--brand-dark));
}

.catalog-filter.active {
  background: var(--fc, var(--brand-dark));
  border-color: var(--fc, var(--brand-dark));
  color: #fff;
}

.catalog-no-results {
  display: none;
  text-align: center;
  font-size: 15px;
  color: var(--text-muted);
  padding: 32px 0;
}

/* ── Closed route badge ── */

.badge-closed {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ── Difficulty badge ── */

.difficulty-badge {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  line-height: 1.5;
  vertical-align: middle;
  position: relative;
  cursor: help;
}

.badge-tooltip {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 260px;
  padding: 8px 12px;
  background: #fff8e1;
  color: #5d4037;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  white-space: normal;
  border-left: 3px solid #ffc107;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 100;
}
.difficulty-badge:hover .badge-tooltip,
.difficulty-badge:focus .badge-tooltip {
  display: block;
}

/* ── Guide cards ── */

.route-guides {
  margin-bottom: 28px;
}

.route-guides h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--brand-dark);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--taupe-light);
}

.guides-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.guide-card--highlighted {
  border: 2px solid #FF6B35;
  background: #FFF8F5;
}

.guide-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: #e8e6df;
}

.guide-card__info {
  flex: 1;
  min-width: 0;
}

.guide-card__name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
  margin-bottom: 2px;
}

.guide-card__rating {
  color: #F59E0B;
  font-size: 13px;
}

.guide-card__offering {
  color: var(--text-muted);
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guide-card__price {
  font-weight: 600;
  font-size: 14px;
  color: var(--brand);
  margin-top: 2px;
}

.guide-card__btn {
  flex-shrink: 0;
  padding: 8px 16px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}

.guide-card__btn:hover {
  background: var(--brand-light);
}

/* ── Inquiry modal ── */

.inquiry-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.inquiry-modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.inquiry-modal__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.inquiry-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

#inquiry-form input,
#inquiry-form textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
}

#inquiry-form input:focus,
#inquiry-form textarea:focus {
  border-color: var(--brand);
}

#inquiry-form textarea {
  resize: vertical;
  min-height: 60px;
}

#captcha-container {
  margin-bottom: 10px;
}

.inquiry-modal__submit {
  width: 100%;
  padding: 10px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}

.inquiry-modal__submit:hover {
  background: var(--brand-light);
}

.inquiry-modal__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.inquiry-modal__status {
  text-align: center;
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

.inquiry-modal__status--ok {
  color: var(--brand);
}

.inquiry-modal__status--error {
  color: #d32f2f;
}

/* ── Review modal ── */

.review-modal-wrap {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}

.review-modal__content {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
  max-height: 90vh;
  overflow-y: auto;
}

.review-modal__content h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--brand-dark);
}

.review-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.review-modal__input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .2s;
  box-sizing: border-box;
}

.review-modal__input:focus {
  border-color: var(--brand);
}

.review-modal__input:read-only {
  background: #f5f5f5;
  color: var(--text-muted);
}

.review-modal__email-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.review-modal__email-row .review-modal__input {
  flex: 1;
  margin-bottom: 0;
}

.review-modal__send-code {
  padding: 10px 14px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.review-modal__send-code:hover {
  background: var(--brand-light);
}

.review-modal__send-code:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.review-modal__step2 {
  margin-top: 8px;
}

.review-modal__otp-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.review-modal__otp-hint {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.review-modal__otp-group {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
}

.review-modal__otp-input {
  width: 38px;
  height: 42px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  outline: none;
  transition: border-color .2s;
}

.review-modal__otp-input:focus {
  border-color: var(--brand);
}

.review-modal__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}

.review-modal__stars button {
  background: none;
  border: none;
  font-size: 28px;
  color: #ddd;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s;
}

.review-modal__stars button.active,
.review-modal__stars button:hover {
  color: #f5a623;
}

.review-modal__textarea {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  resize: vertical;
  min-height: 70px;
  transition: border-color .2s;
  box-sizing: border-box;
}

.review-modal__textarea:focus {
  border-color: var(--brand);
}

.review-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 12px;
  cursor: pointer;
}

.review-modal__consent input {
  margin-top: 2px;
  flex-shrink: 0;
}

.review-modal__consent a {
  color: var(--brand);
}

.review-modal__captcha {
  margin-bottom: 10px;
}

.review-modal__error {
  font-size: 13px;
  color: #d32f2f;
  min-height: 18px;
  margin-bottom: 8px;
}

.review-modal__submit {
  width: 100%;
  padding: 10px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background .2s;
}

.review-modal__submit:hover {
  background: var(--brand-light);
}

.review-modal__submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.add-review-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  padding: 10px 20px;
  background: var(--brand);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background .2s;
}

.add-review-btn:hover {
  background: var(--brand-light);
}

/* ── Reviews ── */

.reviews-count {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-muted);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.reviews-loading,
.reviews-empty {
  color: var(--text-muted);
  font-size: 14px;
  padding: 16px 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-name {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.review-date {
  font-size: 12px;
  color: var(--text-muted);
}

.review-stars {
  color: #f5a623;
  font-size: 16px;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  white-space: pre-line;
}

/* ── Place pages ── */

.place-hero {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.place-hero__img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}

.place-hero__attr {
  position: absolute;
  bottom: 0;
  right: 0;
  font-size: 11px;
  color: rgba(255,255,255,.8);
  background: rgba(0,0,0,.45);
  padding: 3px 8px;
  border-radius: var(--radius-sm) 0 var(--radius-md) 0;
}

.place-meta {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.place-meta__category {
  font-weight: 600;
}

.place-meta__sep {
  margin: 0 6px;
}

/* ── Consent banner ── */

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0,0,0,.82);
  color: #fff;
  font: 13px/1.4 'Open Sans', sans-serif;
  padding: 10px 18px;
  border-radius: 12px;
  z-index: 10000;
  backdrop-filter: blur(6px);
  max-width: calc(100% - 32px);
  animation: cookie-in .3s ease;
}
.cookie-banner--hide { animation: cookie-out .3s ease forwards; }
.cookie-banner__link { color: #fff; text-decoration: underline; }
.cookie-banner__link:hover { opacity: .8; }
.cookie-banner__ok {
  background: #fff;
  color: #222;
  border: none;
  border-radius: 8px;
  padding: 5px 16px;
  font: 600 12px/1.3 'Open Sans', sans-serif;
  cursor: pointer;
  white-space: nowrap;
}
.cookie-banner__ok:hover { background: #e0e0e0; }
@keyframes cookie-in  { from { opacity: 0; transform: translateX(-50%) translateY(20px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes cookie-out { to   { opacity: 0; transform: translateX(-50%) translateY(20px); } }

/* ── Responsive ── */

@media (max-width: 640px) {
  h1 { font-size: 22px; }

  .quick-facts { gap: 8px; }
  .fact-card {
    min-width: 120px;
    padding: 8px 10px;
    font-size: 13px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stages-table { font-size: 13px; }
  .stages-table th,
  .stages-table td { padding: 6px 8px; }

  #elevation-canvas { height: 160px; }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }

  .review-card {
    padding: 12px 14px;
  }

  .review-stars {
    font-size: 14px;
  }

  .guide-card {
    flex-wrap: wrap;
    gap: 10px;
  }

  .guide-card__btn {
    width: 100%;
    text-align: center;
  }
}
