/*
Theme Name: Travel Tips Magazine
Theme URI: https://traveltipsmagazine.com/
Author: Ved
Description: Elegant magazine-style WordPress theme for travel blogging.
Version: 1.0
Text Domain: traveltipsmagazine
*/

/* IMPORTANT
Paste ALL CSS from your FINAL approved mockup HTML <style> section below this line.
Do NOT change class names.
*/

:root {
      --tt-primary: #10b7c9;        /* teal */
      --tt-primary-dark: #021b2d;   /* navy */
      --tt-accent: #fbbf24;         /* warm accent */
      --tt-bg: #f4f7fb;
      --tt-muted: #6b7280;
      --tt-radius-lg: 24px;
      --tt-radius-md: 16px;
      --tt-shadow-hero: 0 24px 60px rgba(2, 27, 45, 0.35);
      --tt-shadow-card: 0 18px 40px rgba(2, 27, 45, 0.18);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: radial-gradient(circle at top left, #e0f7ff 0, #f4f7fb 40%, #eef2ff 100%);
      color: var(--tt-primary-dark);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 90%;
      max-width: 1180px;
      margin: 0 auto;
    }

    /* HEADER */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(244, 247, 251, 0.96);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(148, 163, 184, 0.35);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 10px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .brand-logo {
      width: 100px;
      height: 100px;
      object-fit: contain;
      filter: drop-shadow(0 10px 20px rgba(2, 27, 45, 0.4));
    }

    .brand-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 24px;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .brand-tagline {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--tt-muted);
    }

    .main-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .main-nav a {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--tt-primary-dark);
      position: relative;
      padding-bottom: 4px;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, var(--tt-primary), var(--tt-accent));
      transition: width 0.22s ease;
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .btn-nav-cta {
      border-radius: 999px;
      border: none;
      padding: 8px 16px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      cursor: pointer;
      background: linear-gradient(135deg, var(--tt-primary), #24d1e5);
      color: #f9fafb;
      box-shadow: 0 12px 30px rgba(16, 183, 201, 0.45);
      white-space: nowrap;
    }

    /* HERO BASE */
    .hero {
      padding: 28px 0 10px;
    }

    .hero-inner {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 30px;
      padding: 26px 26px 24px;
      border-radius: var(--tt-radius-lg);
      background:
        radial-gradient(circle at top right, rgba(16, 183, 201, 0.35), transparent 55%),
        linear-gradient(135deg, #031220, #052a3e);
      color: #e5f4ff;
      box-shadow: var(--tt-shadow-hero);
      position: relative;
      overflow: hidden;
    }

    .hero-inner::after {
      content: "";
      position: absolute;
      right: -90px;
      top: -90px;
      width: 280px;
      height: 280px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(16, 183, 201, 0.7), transparent 70%);
      opacity: 0.8;
    }

    .hero-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.28em;
      color: rgba(148, 163, 184, 0.95);
      margin-bottom: 8px;
    }

    .hero-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 32px;
      margin: 0 0 8px;
    }

    .hero-subtitle {
      font-size: 14px;
      max-width: 520px;
      color: #dbeafe;
      line-height: 1.6;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
      animation: fadeUpSoft 0.7s ease forwards;
      animation-delay: 0.3s;
    }

    .badge {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.65);
      background: rgba(15, 23, 42, 0.7);
      backdrop-filter: blur(8px);
    }

    .hero-actions {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      animation: fadeUpSoft 0.7s ease forwards;
      animation-delay: 0.3s;
    }

    .btn-primary {
      border-radius: 999px;
      border: none;
      padding: 10px 18px;
      font-size: 13px;
      cursor: pointer;
      background: linear-gradient(135deg, var(--tt-primary), #24d1e5);
      color: #f9fafb;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      box-shadow: 0 14px 28px rgba(16, 183, 201, 0.55);
    }

    .btn-outline {
      border-radius: 999px;
      border: 1px solid rgba(226, 232, 240, 0.8);
      padding: 9px 18px;
      font-size: 13px;
      cursor: pointer;
      background: transparent;
      color: #e5f4ff;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .hero-right {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-card {
      background: rgba(3, 12, 23, 0.98);
      border-radius: var(--tt-radius-md);
      padding: 14px 14px 16px;
      width: 100%;
      max-width: 320px;
      box-shadow: 0 16px 36px rgba(2, 6, 23, 0.85);
      position: relative;
      overflow: hidden;
      animation: floatCard 7s ease-in-out infinite;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      border: 1px solid rgba(148, 163, 184, 0.4);
      pointer-events: none;
    }

    .hero-card-thumb {
      height: 150px;
      border-radius: 12px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .hero-card-label {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: #9ca3af;
      margin-bottom: 5px;
    }

    .hero-card-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
      color: #e5f2ff;
    }

    .hero-card-meta {
      font-size: 12px;
      color: #9ca3af;
      margin-bottom: 8px;
    }

    .hero-card-text {
      font-size: 13px;
      color: #d1e9ff;
      line-height: 1.5;
    }

    /* HERO SLIDER */
    .hero-slider {
      position: relative;
      overflow: hidden;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      visibility: hidden;
      transform: translateX(35px);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0s linear 0.7s;
    }

    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      transition:
        opacity 0.7s ease,
        transform 0.7s ease,
        visibility 0s;
    }

    .hero-dots {
      position: absolute;
      left: 50%;
      bottom: 14px;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 3;
    }

    .hero-dot {
      width: 9px;
      height: 9px;
      border-radius: 999px;
      border: 1px solid rgba(226, 232, 240, 0.9);
      background: rgba(15, 23, 42, 0.45);
      padding: 0;
      cursor: pointer;
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .hero-dot.active {
      background: linear-gradient(135deg, var(--tt-primary), #24d1e5);
      border-color: transparent;
      box-shadow: 0 0 0 2px rgba(15, 23, 42, 0.7);
      transform: scale(1.15);
    }

    /* SECTIONS */
    .section {
      margin: 30px auto 0;
    }

    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .section-title {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--tt-muted);
    }

    .section-subtitle {
      font-size: 13px;
      color: var(--tt-muted);
    }

    /* FEATURED STORY STRIP */
    .featured-strip {
      display: grid;
      grid-template-columns: 1.6fr 1.4fr;
      gap: 22px;
    }

    .featured-large,
    .featured-small-card {
      background: #ffffff;
      border-radius: var(--tt-radius-md);
      box-shadow: var(--tt-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .featured-large-thumb {
      height: 260px;
      overflow: hidden;
    }

    .featured-large-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-large-body {
      padding: 16px 18px 18px;
    }

    .post-meta {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--tt-muted);
      margin-bottom: 6px;
    }

    .post-title {
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 6px;
    }

    .post-excerpt {
      font-size: 14px;
      color: #4b5563;
      margin: 0 0 12px;
      line-height: 1.6;
    }

    .post-link {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--tt-primary-dark);
    }

    .featured-small {
      display: grid;
      grid-template-rows: repeat(2, 1fr);
      gap: 16px;
    }

    .featured-small-card {
      flex-direction: row;
    }

    .featured-small-thumb {
      width: 40%;
      min-width: 130px;
      height: 100%;
      max-height: 160px;
      overflow: hidden;
    }

    .featured-small-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .featured-small-body {
      padding: 12px 14px 12px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 6px;
    }

    .featured-small-title {
      font-size: 15px;
      font-weight: 600;
      margin: 0;
    }

    /* LATEST STORIES GRID */
    .post-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
    }

    .post-card {
      background: #ffffff;
      border-radius: var(--tt-radius-md);
      box-shadow: var(--tt-shadow-card);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
      position: relative;
    }

    .post-card::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid transparent;
      border-radius: inherit;
      pointer-events: none;
      transition: border-color 0.2s ease;
    }

    .post-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 48px rgba(2, 27, 45, 0.26);
    }

    .post-card:hover::before {
      border-color: rgba(16, 183, 201, 0.45);
    }

    .post-card-thumb {
      height: 190px;
      overflow: hidden;
    }

    .post-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-card-body {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .post-card-title {
      font-size: 16px;
      font-weight: 600;
      margin: 0;
    }

    .post-card-excerpt {
      font-size: 14px;
      color: #4b5563;
      margin: 0;
    }

    /* REGION CHIPS */
    .region-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 6px;
    }

    .region-chip {
      font-size: 13px;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: #f9fafb;
      color: #111827;
      cursor: pointer;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .region-chip:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 30px rgba(15, 23, 42, 0.16);
    }

    .region-chip.highlight {
      background: linear-gradient(135deg, var(--tt-primary), #24d1e5);
      color: #f9fafb;
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(16, 183, 201, 0.45);
    }

    /* TIPS & GUIDES SECTION */
    .tips-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
      gap: 22px;
    }

    .tips-list {
      background: #ffffff;
      border-radius: var(--tt-radius-md);
      box-shadow: var(--tt-shadow-card);
      padding: 16px 18px 18px;
    }

    .tips-list ul {
      list-style: none;
      padding: 0;
      margin: 8px 0 0;
    }

    .tips-list li {
      margin-bottom: 10px;
    }

    .tips-list a {
      font-size: 14px;
      color: var(--tt-primary-dark);
    }

    .tips-meta {
      font-size: 12px;
      color: var(--tt-muted);
      margin-bottom: 6px;
    }

    .start-here-card {
      background: linear-gradient(145deg, #021b2d, #05324b);
      border-radius: var(--tt-radius-md);
      padding: 18px 18px 20px;
      color: #e5f4ff;
      box-shadow: var(--tt-shadow-hero);
    }

    .start-here-title {
      font-family: "Playfair Display", "Times New Roman", serif;
      font-size: 20px;
      margin: 0 0 6px;
    }

    .start-here-text {
      font-size: 14px;
      line-height: 1.6;
      margin: 0 0 12px;
    }

    .start-here-note {
      font-size: 12px;
      color: #bfdbfe;
      margin-bottom: 12px;
    }

    /* NEWSLETTER */
    .newsletter {
      margin: 30px auto 0;
    }

    .newsletter-box {
      background: #ffffff;
      border-radius: var(--tt-radius-lg);
      padding: 18px 18px 20px;
      box-shadow: var(--tt-shadow-card);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 18px;
      justify-content: space-between;
    }

    .newsletter-title {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .newsletter-text {
      font-size: 13px;
      color: var(--tt-muted);
    }

    .newsletter-form {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      min-width: 260px;
    }

    .newsletter-input {
      flex: 1;
      min-width: 180px;
      padding: 9px 10px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.9);
      font-size: 13px;
      outline: none;
    }

    .newsletter-btn {
      border-radius: 999px;
      border: none;
      padding: 9px 14px;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      cursor: pointer;
      background: linear-gradient(135deg, var(--tt-primary), var(--tt-accent));
      color: #f9fafb;
      box-shadow: 0 12px 26px rgba(16, 183, 201, 0.45);
      white-space: nowrap;
    }

    /* FOOTER */
    .site-footer {
      margin-top: 32px;
      padding: 22px 0 30px;
      font-size: 13px;
      color: var(--tt-muted);
      border-top: 1px solid rgba(148, 163, 184, 0.35);
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .footer-links a {
      font-size: 13px;
      color: var(--tt-muted);
    }

    .footer-social {
      display: flex;
      gap: 10px;
      font-size: 13px;
    }

    /* IMAGE HOVER ZOOM */
    .post-card-thumb img,
    .featured-large-thumb img,
    .featured-small-thumb img,
    .hero-card-thumb img {
      transition: transform 0.4s ease;
    }

    .post-card:hover .post-card-thumb img,
    .featured-large:hover .featured-large-thumb img,
    .featured-small-card:hover .featured-small-thumb img,
    .hero-card:hover .hero-card-thumb img {
      transform: scale(1.05);
    }

    /* ANIMATIONS */
    @keyframes floatCard {
      0%   { transform: translateY(0); }
      50%  { transform: translateY(-6px); }
      100% { transform: translateY(0); }
    }

    @keyframes fadeUpSoft {
      0% {
        opacity: 0;
        transform: translateY(10px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* RESPONSIVE */
    @media (max-width: 960px) {
      .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .main-nav ul {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .hero-inner {
        grid-template-columns: 1fr;
      }

      .hero-right {
        justify-content: flex-start;
      }

      .featured-strip {
        grid-template-columns: 1fr;
      }

      .post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .tips-layout {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .post-grid {
        grid-template-columns: 1fr;
      }

      .hero-title {
        font-size: 26px;
      }

      .featured-small-card {
        flex-direction: column;
      }

      .featured-small-thumb {
        width: 100%;
        max-height: 170px;
      }

      .newsletter-box {
        padding: 16px 14px 18px;
      }
    }

/* === HERO BANNER VISIBILITY FIX (OVERRIDE) === */

/* Make sure the hero area can actually be seen */
.hero {
  overflow: visible !important;
}

.hero-slider {
  position: relative !important;
  overflow: visible !important;
  min-height: 360px; /* ensures there is visible height */
}

/* Ensure slides occupy the hero area correctly */
.hero-slider .hero-slide {
  position: absolute !important;
  inset: 0;
}

/* Force the first slide to show even if JS or classes fail */
.hero-slider .hero-slide:first-of-type {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

/* Make dots stay visible and not clipped */
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
}

.brand-text {
  margin-left: 10px;
}


/* ==== SINGLE POST LAYOUT ==== */

.single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 0.9fr);
  gap: 28px;
  margin-top: 24px;
}

.single-main {
  background: #ffffff;
  border-radius: var(--tt-radius-md, 16px);
  padding: 20px 22px 26px;
  box-shadow: 0 18px 40px rgba(2, 27, 45, 0.14);
}

.single-breadcrumb {
  font-size: 12px;
  color: var(--tt-muted, #6b7280);
  margin-bottom: 6px;
}

.single-breadcrumb a {
  color: var(--tt-muted, #6b7280);
}

.single-header {
  margin-bottom: 12px;
}

.single-category {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--tt-muted, #6b7280);
  margin: 0 0 4px;
}

.single-title {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: 28px;
  margin: 0 0 6px;
}

.single-meta {
  font-size: 13px;
  color: var(--tt-muted, #6b7280);
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Hero image */

.single-hero-image {
  margin: 14px 0 16px;
  border-radius: 18px;
  overflow: hidden;
  background: #020617;
}

.single-hero-image img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}

.single-hero-image figcaption {
  font-size: 12px;
  color: #e5e7eb;
  padding: 8px 12px 10px;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(15,23,42,0.8));
}

/* Summary / Trip at a glance */

.single-summary {
  margin: 6px 0 16px;
  padding: 14px 14px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #021b2d, #05324b);
  color: #e5f4ff;
}

.single-summary-title {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 10px;
  color: #bfdbfe;
}

.single-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
}

.single-summary .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #93c5fd;
}

.single-summary .value {
  font-size: 13px;
}

/* Article body */

.single-content {
  font-size: 15px;
  color: #111827;
  line-height: 1.75;
}

.single-content p {
  margin: 0 0 14px;
}

.single-content h2 {
  font-size: 20px;
  margin: 20px 0 8px;
}

.single-content ul,
.single-content ol {
  padding-left: 20px;
  margin: 0 0 14px;
}

.single-content li {
  margin-bottom: 6px;
}

/* Pull quote */

.single-quote {
  margin: 16px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--tt-primary, #10b7c9);
  background: #f1f5f9;
  font-style: italic;
  font-size: 14px;
}

/* Footer: tags + share */

.single-footer {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 13px;
}

.single-tags .tag-label {
  font-weight: 600;
}

.single-tags a {
  padding: 4px 10px;
  border-radius: 999px;
  background: #f3f4f6;
  font-size: 12px;
}

.single-share {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}

.single-share button {
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.8);
  background: #ffffff;
  font-size: 11px;
  padding: 6px 10px;
  cursor: pointer;
}

/* Next / Previous navigation */

.single-nav {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.single-nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f9fafb;
  text-decoration: none;
}

.single-nav-prev {
  text-align: left;
}

.single-nav-next {
  text-align: right;
}

.single-nav .nav-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--tt-muted, #6b7280);
  margin-bottom: 4px;
}

.single-nav .nav-title {
  font-size: 14px;
}

/* Sidebar */

.single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 14px 16px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.10);
}

.sidebar-card h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin: 0 0 8px;
}

.sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-card li {
  margin-bottom: 6px;
}

.sidebar-card a {
  font-size: 14px;
  color: #0f172a;
}

/* Responsive */

@media (max-width: 900px) {
  .single-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .single-sidebar {
    order: -1;
  }
  .single-summary-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
