/* ============================================================
   SHARED INNER-PAGE STYLES
   ============================================================ */

/* Page Hero Banner */
.page-hero {
  position: relative;
  height: clamp(220px, 36vw, 460px);
  overflow: hidden;
  margin-top: 0;
  background: var(--primary-mid);
}
.page-hero--trip {
  height: clamp(320px, min(50vw, 54vh), 540px);
}

.trip-hero__overlay {
  background: linear-gradient(180deg, rgba(13, 33, 55, 0.25) 0%, rgba(13, 33, 55, 0.78) 100%);
}

.trip-hero__inner {
  z-index: 2;
  justify-content: flex-end;
  padding-bottom: clamp(20px, 4vw, 32px);
}

.trip-hero__inner .breadcrumb-wrap {
  margin-bottom: 14px;
}

.trip-hero__title {
  font-family: var(--font-head);
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.trip-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trip-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

.trip-hero-badge i {
  color: var(--cta-orange);
  font-size: 12px;
}

.page-hero .hero-overlay {
  z-index: 1;
}

.page-hero__media {
  z-index: 0;
}
.page-hero__media {
  position: absolute;
  inset: 0;
}
.page-hero img,
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(13,33,55,0.88) 0%, rgba(13,33,55,0.5) 60%, rgba(13,33,55,0.3) 100%);
}
.page-hero .hero-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 48px;
  padding-top: 100px;
}
.page-hero .page-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.page-hero .page-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  font-weight: 300;
}

/* Breadcrumb */
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.breadcrumb-wrap .bc-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.breadcrumb-wrap .bc-item a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.breadcrumb-wrap .bc-item a:hover { color: var(--accent); }
.breadcrumb-wrap .bc-sep {
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
}
.breadcrumb-wrap .bc-item.active { color: var(--accent); font-weight: 600; }

/* Price hero badge */
.page-hero .price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-mid), var(--blue));
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-head);
  margin-bottom: 14px;
}
.page-hero .price-tag span { font-weight: 400; font-size: 14px; opacity: 0.85; }

/* Inner page wrapper (adds top padding for fixed nav) */
.inner-page { padding-top: 0; }

/* Section padding for inner pages */
.inner-section { padding: 70px 0; }
.inner-section-sm { padding: 40px 0; }

/* Shared heading style for inner pages */
.inner-section h2.sec-head {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.inner-section .sec-divider {
  width: 50px; height: 3px;
  background: linear-gradient(to right, var(--accent), var(--blue));
  border-radius: 3px;
  margin-bottom: 24px;
}

/* Content typography */
.content-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}
.content-body p { font-size: 15px; line-height: 1.85; color: var(--text-body); margin-bottom: 14px; }
.content-body img { width: 100%; height: auto; border-radius: var(--radius-md); margin: 20px 0; }
.content-body ul, .content-body ol { padding-left: 0; margin-bottom: 16px; }
.content-body ul li, .content-body ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.content-body ul li:last-child, .content-body ol li:last-child { border-bottom: none; }
.content-body ul li i { color: var(--blue); font-size: 14px; margin-top: 3px; flex-shrink: 0; }
.content-body ul.check-list li i { color: #16a34a; }
.content-body ul.cross-list li i {
  width: 20px; height: 20px;
  background: #ef4444;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}
.content-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--bg-light);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}
.content-body blockquote h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.content-body blockquote p { padding: 0; margin: 0; font-size: 14px; }
.content-body .my-table { overflow-x: auto; margin: 20px 0; }
.content-body .my-table .table { min-width: 500px; }
.content-body .my-table .table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 16px;
  border: none;
}
.content-body .my-table .table tbody td {
  padding: 10px 16px;
  font-size: 14px;
  border-color: var(--border);
}
.content-body .my-table .table tbody tr:hover { background: var(--bg-light); }
.content-body iframe { border-radius: var(--radius-md); margin: 16px 0; }

/* Accordion */
.modern-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0 !important;
}
.modern-accordion .accordion-button {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-light);
  padding: 16px 20px;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.modern-accordion .accordion-button:not(.collapsed) {
  background: var(--primary);
  color: #fff;
}
.modern-accordion .accordion-button::after { filter: none; }
.modern-accordion .accordion-button:not(.collapsed)::after { filter: brightness(10); }
.modern-accordion .accordion-body {
  padding: 20px;
  background: #fff;
}

/* Comments */
.comments-section { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--border); }
.comments-section .comment-item {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 14px;
  border-left: 3px solid var(--accent);
}
.comments-section .comment-item .comment-author {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.comments-section .comment-item .comment-meta {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.comments-section .comment-item p { font-size: 14px; line-height: 1.7; padding: 0; margin: 0; }
.comments-section .btn-comment {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: 14px;
}
.comments-section .btn-comment:hover { background: var(--accent); }
.comment-form {
  background: var(--bg-light);
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 14px;
}
.comment-form .form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  transition: var(--transition);
  background: #fff;
  margin-bottom: 12px;
}
.comment-form .form-control:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(3,104,205,0.1);
}
.btn-submit {
  background: var(--accent);
  color: #fff;
  padding: 11px 28px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* Sidebar */
.page-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-card .sidebar-header {
  background: var(--primary);
  color: #fff;
  padding: 16px 20px;
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
}
.sidebar-card .sidebar-body { padding: 20px; }

/* Inquiry Form in sidebar */
.inquiry-form { }
.inquiry-form .form-field {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 12px;
  margin-bottom: 12px;
  background: var(--bg-light);
  transition: var(--transition);
}
.inquiry-form .form-field:focus-within {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(3,104,205,0.1);
}
.inquiry-form .form-field i { color: var(--text-light); font-size: 14px; flex-shrink: 0; }
.inquiry-form .form-field input,
.inquiry-form .form-field textarea {
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 10px;
  font-size: 14px;
  color: var(--text-dark);
  width: 100%;
}
.inquiry-form .form-field input::placeholder,
.inquiry-form .form-field textarea::placeholder { color: var(--text-light); }
.inquiry-form .btn-inquire {
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-head);
  margin-top: 4px;
}
.inquiry-form .btn-inquire:hover { background: var(--accent-hover); }
.inquiry-form .btn-custom {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 10px;
}
.inquiry-form .btn-custom:hover { background: var(--primary-mid); }

/* Recent blog sidebar */
.recent-post {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.recent-post:last-child { border-bottom: none; }
.recent-post img {
  width: 72px;
  height: 60px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.recent-post .info a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
  transition: var(--transition);
}
.recent-post .info a:hover { color: var(--accent); }
.recent-post .info .date {
  font-size: 12px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}
.recent-post .info .date i { font-size: 11px; color: var(--accent); }

/* ── DETAILS PAGE STICKY SUB-NAV ── */
.details-subnav {
  background: var(--primary);
  /* JS will switch this to position:fixed once hero passes viewport */
  position: relative;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(13,33,55,0.25);
  border-bottom: 2px solid rgba(255,255,255,0.06);
}
/* Fixed state applied by JS */
.details-subnav.is-sticky {
  position: fixed !important;
  left: 0;
  right: 0;
  /* top is set dynamically in JS to match live navbar height */
  animation: subnavSlideIn 0.22s cubic-bezier(0.4,0,0.2,1);
}
@keyframes subnavSlideIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}
/* Placeholder div inserted by JS to avoid layout jump */
.details-subnav-placeholder { display: none; }
.details-subnav-placeholder.visible { display: block; }

/* Container row of links */
.details-subnav .container {
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
  padding: 0 !important;
}
.details-subnav .container::-webkit-scrollbar { display: none; }

/* Individual anchor links */
.subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 22px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  letter-spacing: 0.1px;
  position: relative;
}
.subnav-link i { font-size: 13px; }
.subnav-link:hover {
  color: #fff;
  background: rgba(255,255,255,0.06);
}
.subnav-link.active {
  color: #fff;
  border-bottom-color: var(--accent);
  background: rgba(255,255,255,0.05);
}
/* Separator between links */
.subnav-link + .subnav-link {
  border-left: 1px solid rgba(255,255,255,0.07);
}

/* Key Info block */
.key-info-grid {
  display: flex;
  flex-wrap: wrap;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 24px 0;
}
.key-info-item {
  flex: 0 0 33.33%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.key-info-item:hover { background: var(--bg-light); }
.key-info-item:nth-child(3n) { border-right: none; }
.key-info-item:nth-last-child(-n+3) { border-bottom: none; }
.key-info-item .ki-icon {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}
.key-info-item .ki-label,
.key-info-item .ki-val { display: block; }
.key-info-item .ki-label { font-size: 12px; color: var(--text-light); margin-bottom: 2px; }
.key-info-item .ki-val,
.key-info-item .ki-value { font-size: 14px; font-weight: 600; color: var(--text-dark); font-family: var(--font-head); }
.key-info-item .ki-sub { font-size: 11px; color: var(--accent); }
/* Icon inside key-info-item (fa-solid directly) */
.key-info-item > i {
  width: 42px; height: 42px;
  background: var(--accent-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 18px;
  flex-shrink: 0;
}

/* Itinerary icon bar */
.itinerary-meta {
  display: flex;
  align-items: stretch;
  background: linear-gradient(135deg, var(--bg-light), #fff);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 14px;
}
.itinerary-meta .meta-cell {
  flex: 1;
  padding: 14px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.itinerary-meta .meta-cell:last-child { border-right: none; }
.itinerary-meta .meta-cell i { font-size: 20px; color: var(--accent); display: block; margin-bottom: 4px; }
.itinerary-meta .meta-cell .meta-val { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.itinerary-meta .meta-cell .meta-lbl { font-size: 11px; color: var(--text-light); }

/* Trip itinerary section */
.trip-itinerary-section .trip-section-title i {
  color: var(--cta-orange);
}


.itinerary-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.itinerary-title .trip-section-title {
  margin-bottom: 0 !important;
}

.itinerary-title__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.all-expan,
.close-expan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  min-height: 40px;
  padding: 9px 16px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.all-expan:hover,
.close-expan:hover {
  background: var(--logo-blue);
  color: #fff;
  transform: translateY(-1px);
}

.all-expan i,
.close-expan i {
  font-size: 12px;
}

.trip-itinerary-accordion {
  margin-bottom: 12px;
}

.trip-itinerary-accordion .accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: #fff;
}

.trip-itinerary-accordion .accordion-button {
  background: var(--bg-light) !important;
  color: var(--text-dark) !important;
  font-family: var(--font-head);
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
}

.trip-itinerary-accordion .accordion-button:not(.collapsed) {
  background: #fff !important;
  color: var(--logo-blue) !important;
  border-bottom: 1px solid var(--border);
}

.trip-itinerary-accordion .accordion-button::after {
  background-size: 14px;
}

.trip-itinerary-accordion .accordion-body {
  padding: 20px 22px 24px;
  color: var(--text-body);
  line-height: 1.8;
}

@media (max-width: 575.98px) {
  .itinerary-title {
    align-items: flex-start;
    flex-direction: column;
  }

  .itinerary-title__actions {
    width: 100%;
  }

  .all-expan,
  .close-expan {
    flex: 1;
    justify-content: center;
  }
}

/* Rating stars */
.stars-display { display: flex; align-items: center; gap: 4px; }
.stars-display i { font-size: 14px; color: #f59e0b; }
.stars-display .star-count { font-size: 13px; color: var(--text-light); margin-left: 4px; }

/* Route map */
.route-map-wrap {
  position: relative;
  cursor: pointer;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border);
}
.route-map-wrap img { width: 100%; height: auto; transition: var(--transition); }
.route-map-wrap:hover img { transform: scale(1.02); }
.route-map-wrap .expand-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13,33,55,0.8);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transition: var(--transition);
}
.route-map-wrap:hover .expand-hint { opacity: 1; }

/* Gallery grid */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .expand-icon {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .expand-icon { opacity: 1; }
.gallery-item .expand-icon i { color: #fff; font-size: 24px; }

/* Submit button (contact / booking forms) */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-submit:hover { background: var(--accent-hover); }

/* Light gray bg section */
.bg-light-gray { background: var(--bg-light); }

/* Details subnav link style (anchor-based) */
.details-subnav { display: flex; overflow-x: auto; scrollbar-width: none; }
.details-subnav::-webkit-scrollbar { display: none; }
.details-subnav .container { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; }
.subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 18px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
}
.subnav-link:hover,
.subnav-link.active {
  color: #fff;
  border-bottom-color: var(--accent);
  background: rgba(255,255,255,0.05);
}

/* Gallery overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: #fff; font-size: 22px; }

/* Recent post: support both div>a+span and .info>a structures */
.recent-post div a {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  display: block;
  margin-bottom: 4px;
  transition: var(--transition);
}
.recent-post div a:hover { color: var(--accent); }
.recent-post div span {
  font-size: 12px;
  color: var(--text-light);
}

/* Map embed */
.map-embed {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-embed iframe { display: block; }

@media (max-width: 991px) {
  .page-hero {
    height: clamp(200px, 34vw, 340px);
  }
  .page-hero--trip {
    height: clamp(240px, 46vw, 420px);
  }
  .page-hero img,
  .page-hero__media img {
    object-position: center 42%;
  }
  .page-hero .page-title { font-size: 28px; }
  .key-info-item { flex: 0 0 50%; }
  .key-info-item:nth-child(3n) { border-right: 1px solid var(--border); }
  .key-info-item:nth-child(2n) { border-right: none; }
  .key-info-item:nth-last-child(-n+2) { border-bottom: none; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .page-sidebar { position: static; }
}
@media (max-width: 767px) {
  .page-hero {
    height: clamp(180px, 48vw, 300px);
  }
  .page-hero--trip {
    height: clamp(220px, 54vw, 360px);
  }
  .page-hero img,
  .page-hero__media img {
    object-position: center 45%;
  }
  .key-info-item { flex: 0 0 50%; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

.hero-slider--fallback .hero-slide {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
}
.hero-slider--fallback .hero-overlay {
  background: linear-gradient(160deg, rgba(13,33,55,0.55) 0%, rgba(13,33,55,0.25) 100%);
}

/* Hero fallback when no upload image is available */
.page-hero--fallback {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, var(--primary-light) 100%);
}
.page-hero--fallback .hero-overlay {
  background: linear-gradient(160deg, rgba(13,33,55,0.35) 0%, rgba(13,33,55,0.15) 100%);
}

/* Laravel search results inside Himalayan overlay */
#search-result-lg.visible { display: block; }
#search-result-lg .result-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
#search-result-lg .result-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: #fff;
  font-size: 15px;
  transition: var(--transition);
}
#search-result-lg .result-nav li a:hover {
  background: rgba(255,255,255,0.08);
  color: var(--accent);
}

/* Contact info cards (design concept) */
.contact-info-cards { padding: 50px 0; background: var(--bg-light); }
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-info-card__icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 24px;
  margin: 0 auto 16px;
}
.contact-info-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.contact-info-card p,
.contact-info-card a {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.7;
}
.contact-info-card a { color: var(--blue); }
.contact-form-panel {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 40px 36px;
}
.region-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}
.region-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  box-shadow: var(--shadow-sm);
}
.region-fact__icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  flex-shrink: 0;
}
.region-fact__value {
  font-size: 17px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}
.region-fact__label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 2px;
}

/* Trip planner wizard */
.trip-planner-page {
  background: var(--bg-light);
}

.trip-planner-intro {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.trip-planner-eyebrow {
  color: var(--logo-blue);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trip-planner-title {
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 10px;
}

.trip-planner-lead {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.trip-planner-shell {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 28px 28px 32px;
}

.trip-planner-steps {
  margin-bottom: 28px;
}

.trip-planner-steps__track {
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
}

.trip-planner-steps__track span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-sky));
  border-radius: 999px;
  transition: width 0.35s ease;
}

.trip-planner-steps__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.trip-planner-steps__item {
  text-align: center;
  color: var(--text-light);
}

.trip-planner-steps__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: #fff;
  color: var(--text-light);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  transition: all var(--transition);
}

.trip-planner-steps__item small {
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

.trip-planner-steps__item.is-active span,
.trip-planner-steps__item.is-complete span {
  border-color: var(--logo-blue);
  background: var(--logo-blue);
  color: #fff;
}

.trip-planner-steps__item.is-active {
  color: var(--logo-blue);
}

.trip-planner-steps__item.is-complete {
  color: var(--text-body);
}

.trip-planner-panel h2 {
  color: var(--text-dark);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.trip-planner-panel label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.trip-planner-label {
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 700;
}

.trip-planner-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.trip-planner-cards--stack,
.trip-planner-cards--accommodation {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.trip-planner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 108px;
  padding: 16px 12px;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-light);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition), transform var(--transition);
}

.trip-planner-card--wide {
  align-items: flex-start;
  text-align: left;
  min-height: auto;
  padding: 16px 18px;
}

.trip-planner-card--accommodation {
  min-height: 120px;
}

.trip-planner-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.trip-planner-card strong {
  color: var(--text-dark);
  font-size: 15px;
}

.trip-planner-card small {
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.45;
}

.trip-planner-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  color: var(--logo-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.trip-planner-card:has(input:checked),
.trip-planner-card.is-selected {
  border-color: var(--logo-blue);
  background: var(--blue-light);
  box-shadow: 0 8px 24px rgba(32, 128, 192, 0.12);
  transform: translateY(-2px);
}

.trip-planner-cards.has-error .trip-planner-card {
  border-color: #e57373;
}

.trip-planner-panel .form-control {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  min-height: 46px;
  padding: 10px 14px;
  font-size: 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.trip-planner-panel .form-control:focus {
  border-color: var(--logo-blue);
  box-shadow: 0 0 0 3px rgba(32, 128, 192, 0.12);
}

.trip-planner-panel .form-control.is-invalid {
  border-color: #e57373;
}

.trip-planner-error {
  color: #c62828;
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.trip-planner-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.trip-planner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  border: 0;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.trip-planner-btn--primary {
  background: var(--cta-orange);
  color: #fff;
}

.trip-planner-btn--primary:hover {
  background: var(--cta-orange-hover);
  color: #fff;
  transform: translateY(-1px);
}

.trip-planner-btn--ghost {
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
}

.trip-planner-btn--ghost:hover {
  background: #eef4f8;
  color: var(--logo-blue);
}

.trip-planner-loader,
.trip-planner-response {
  text-align: center;
  margin-top: 20px;
}

.trip-planner-response {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  line-height: 1.6;
}

.trip-planner-response.is-success {
  background: #edf8f1;
  color: #1f6b45;
  border: 1px solid #b9e3c9;
}

.trip-planner-response.is-error {
  background: #fff1f1;
  color: #b42318;
  border: 1px solid #f2c6c6;
}

@media (max-width: 767.98px) {
  .trip-planner-shell {
    padding: 20px 16px 24px;
  }

  .trip-planner-steps__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .trip-planner-cards,
  .trip-planner-cards--stack,
  .trip-planner-cards--accommodation {
    grid-template-columns: 1fr;
  }

  .trip-planner-actions {
    flex-direction: column-reverse;
    align-items: stretch;
  }

  .trip-planner-actions > span {
    display: none;
  }

  .trip-planner-btn {
    width: 100%;
  }
}

/* Blog post detail */
.page-hero--blog {
  height: clamp(220px, 34vw, 420px);
}

.page-hero__eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.blog-detail-page {
  background: #fff;
}

.blog-article-header {
  margin-bottom: 24px;
}

.blog-article-cat {
  display: inline-block;
  background: var(--logo-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  transition: background var(--transition);
}

.blog-article-cat:hover {
  background: var(--logo-blue-dark, #1a6a9e);
  color: #fff;
}

.blog-article-title {
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 14px;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  font-size: 13px;
  color: var(--text-light);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.blog-article-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-article-meta i {
  color: var(--logo-blue);
}

.blog-featured-media {
  margin: 0 0 28px;
}

.blog-featured-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.content-body h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 28px;
  margin-bottom: 12px;
}

.content-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 20px;
  margin-bottom: 10px;
}

/* Article toolbar */
.blog-article-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.blog-audio-player {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 200px;
}

.blog-audio-btn {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: var(--logo-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}

.blog-audio-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.blog-audio-btn--stop {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-dark);
}

.blog-audio-stop-icon {
  width: 12px;
  height: 12px;
  background: currentColor;
  border-radius: 2px;
  display: block;
}

.blog-audio-progress {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.blog-audio-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--logo-blue), var(--logo-sky));
  border-radius: 999px;
  transition: width 0.2s ease;
}

.blog-share-wrap {
  position: relative;
}

.blog-share-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition);
}

.blog-share-toggle:hover,
.blog-share-toggle[aria-expanded="true"] {
  border-color: var(--logo-blue);
  color: var(--logo-blue);
}

.blog-share-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 190px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  z-index: 30;
}

.blog-share-menu li a,
.blog-share-menu li button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text-dark);
  font-size: 13px;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}

.blog-share-menu li a:hover,
.blog-share-menu li button:hover {
  background: var(--bg-light);
  color: var(--logo-blue);
}

/* Table of contents */
.article-toc {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
}

.article-toc__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.article-toc__heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.article-toc__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  color: var(--logo-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.article-toc__title {
  display: block;
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.article-toc__subtitle {
  display: block;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}

.article-toc__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--logo-blue);
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.article-toc__panel {
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
}

.article-toc.is-open .article-toc__action i {
  transform: rotate(180deg);
}

.toc-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.toc-list-item {
  margin: 0;
}

.toc-link {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 13px;
  color: var(--text-body);
  transition: background var(--transition), color var(--transition);
}

.toc-link:hover,
.toc-link.is-active-link {
  background: var(--blue-light);
  color: var(--logo-blue);
}

.toc-link.node-name--H3 { padding-left: 22px; }
.toc-link.node-name--H4 { padding-left: 34px; }

/* Recommended trips in article */
.blog-rec-trips {
  margin: 28px 0;
  padding: 22px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.blog-rec-trips__eyebrow {
  color: var(--logo-blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.blog-rec-trips__title {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.blog-rec-trips__lead {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.blog-rec-trips__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-rec-trips__grid--list {
  grid-template-columns: 1fr;
}

.blog-rec-trip-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.blog-rec-trip-card:hover {
  border-color: var(--logo-blue);
  box-shadow: 0 8px 24px rgba(32, 128, 192, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.blog-rec-trip-card__media {
  flex-shrink: 0;
  width: 88px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-rec-trip-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-rec-trip-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.blog-rec-trip-card__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
}

.blog-rec-trip-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-rec-trip-card__chip {
  font-size: 11px;
  color: var(--text-light);
}

.blog-rec-trip-card__chip i {
  color: var(--logo-blue);
}

.blog-rec-trip-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.blog-rec-trip-card__price {
  font-size: 12px;
  font-weight: 700;
  color: var(--cta-orange);
}

.blog-rec-trip-card__cta {
  font-size: 11px;
  font-weight: 600;
  color: var(--logo-blue);
}

/* Post footer CTA + nav */
.blog-post-cta {
  padding: 28px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border-radius: var(--radius-md);
  color: #fff;
}

.blog-post-cta__eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--logo-sky);
  margin-bottom: 8px;
}

.blog-post-cta h2 {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.blog-post-cta__text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 18px;
}

.blog-post-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-post-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
}

.blog-post-cta__btn--primary {
  background: var(--cta-orange);
  color: #fff;
}

.blog-post-cta__btn--primary:hover {
  background: var(--cta-orange-hover);
  color: #fff;
}

.blog-post-cta__btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.blog-post-cta__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.blog-post-nav {
  margin-top: 28px;
}

.blog-post-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.blog-post-nav__header h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.blog-post-nav__all {
  font-size: 13px;
  font-weight: 600;
  color: var(--logo-blue);
}

.blog-post-nav__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.blog-post-nav__card {
  display: flex;
  align-items: stretch;
  gap: 12px;
  padding: 14px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: inherit;
  min-height: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.blog-post-nav__card:hover {
  border-color: var(--logo-blue);
  box-shadow: 0 6px 20px rgba(32, 128, 192, 0.1);
  color: inherit;
}

.blog-post-nav__card--empty {
  visibility: hidden;
}

.blog-post-nav__card--next {
  justify-content: space-between;
  text-align: right;
}

.blog-post-nav__thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
}

.blog-post-nav__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-post-nav__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--logo-blue);
  margin-bottom: 6px;
}

.blog-post-nav__title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

/* Blog sidebar on post page */
.blog-sidebar--sticky {
  position: sticky;
  top: 96px;
}

.blog-search-form {
  position: relative;
}

.blog-search-field {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg-light);
}

.blog-search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 11px 14px;
  font-size: 14px;
  min-width: 0;
}

.blog-search-field input:focus {
  outline: none;
}

.blog-search-field button {
  border: 0;
  background: var(--logo-blue);
  color: #fff;
  width: 46px;
  cursor: pointer;
  transition: background var(--transition);
}

.blog-search-field button:hover {
  background: var(--logo-blue-dark, #1a6a9e);
}

.post-search-results {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 40;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
}

.post-search-item {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.post-search-item:last-child {
  border-bottom: 0;
}

.post-search-item:hover {
  background: var(--blue-light);
  color: var(--logo-blue);
}

.blog-sidebar__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--logo-blue);
}

.blog-edit-btn {
  position: fixed;
  left: 0;
  top: 300px;
  z-index: 50;
}

@media (max-width: 991.98px) {
  .blog-sidebar--sticky {
    position: static;
  }

  .blog-rec-trips__grid {
    grid-template-columns: 1fr;
  }

  .blog-post-nav__grid {
    grid-template-columns: 1fr;
  }

  .blog-post-nav__card--empty {
    display: none;
  }

  .blog-edit-btn {
    display: none;
  }
}
