:root {
      --ink: #10233f;
      --ink-2: #263a58;
      --muted: #66758b;
      --line: #dbe3ee;
      --soft: #f4f7fb;
      --white: #fff;
      --brand: #0b5f97;
      --brand-2: #0a3558;
      --accent: #f26a2e;
      --accent-2: #ffb13b;
      --green: #14845f;
      --shadow: 0 18px 50px rgba(16, 35, 63, .14);
      --radius: 8px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background: #fff;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.55;
      letter-spacing: 0;
      overflow-x: hidden;
    }
    body.nav-open { overflow: hidden; }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }
    .container {
      width: min(var(--max), calc(100% - 32px));
      margin-inline: auto;
    }
    .section {
      padding: 82px 0;
      position: relative;
    }
    .section.alt { background: var(--soft); }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
    }
    .eyebrow::before {
      content: "";
      width: 28px;
      height: 2px;
      background: currentColor;
    }
    h1, h2, h3, p { margin-top: 0; }
    h1 {
      max-width: 760px;
      font-size: clamp(34px, 6vw, 66px);
      line-height: 1.02;
      margin-bottom: 20px;
    }
    h2 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.12;
      margin-bottom: 16px;
    }
    h3 {
      font-size: 21px;
      line-height: 1.25;
      margin-bottom: 10px;
    }
    .lead {
      color: var(--muted);
      font-size: 18px;
      max-width: 700px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 13px 20px;
      border: 1px solid transparent;
      border-radius: var(--radius);
      font-weight: 800;
      cursor: pointer;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(16, 35, 63, .18); }
    .btn.primary { background: var(--accent); color: #fff; }
    .btn.dark { background: var(--brand-2); color: #fff; }
    .btn.ghost { border-color: rgba(255,255,255,.34); color: #fff; background: rgba(255,255,255,.08); }
    .icon {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .topbar {
      background: var(--brand-2);
      color: rgba(255,255,255,.88);
      font-size: 13px;
    }
    .topbar-inner {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 8px 0;
    }
    .topbar span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255,255,255,.94);
      border-bottom: 1px solid rgba(219,227,238,.85);
      backdrop-filter: blur(14px);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 86px;
      gap: 20px;
    }
    .brand {
      display: flex;
      align-items: center;
      font-weight: 900;
      color: var(--brand-2);
      min-width: max-content;
    }
    .brand img {
      width: 158px;
      height: 70px;
      object-fit: contain;
    }
    .brand span { display: grid; line-height: 1.05; }
    .brand small {
      color: var(--accent);
      font-size: 11px;
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }
    .nav {
      display: flex;
      align-items: center;
      gap: 18px;
      color: var(--ink-2);
      font-size: 14px;
      font-weight: 700;
    }
    .nav ul,
    .nav-menu {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 18px;
      margin: 0;
      padding: 0;
    }
    .nav a {
      position: relative;
      padding: 27px 0;
    }
    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 20px;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s ease;
    }
    .nav a:hover::after { transform: scaleX(1); }
    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      color: var(--ink);
      cursor: pointer;
    }
    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      background: currentColor;
      transition: transform .2s ease, opacity .2s ease;
    }
    .nav-open .menu-toggle span { opacity: 0; }
    .nav-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
    .nav-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

    .hero {
      min-height: 720px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5, 22, 38, .96) 0%, rgba(5, 22, 38, .84) 39%, rgba(5, 22, 38, .35) 72%, rgba(5, 22, 38, .26) 100%),
        url("../images/hero-logistics.png") center / cover no-repeat;
      display: flex;
      align-items: center;
      overflow: hidden;
    }
    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 120px;
      background: linear-gradient(180deg, rgba(255,255,255,0), #fff);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      align-items: center;
      gap: 42px;
      position: relative;
      z-index: 1;
      padding: 64px 0 98px;
    }
    .hero-grid > *,
    .split > *,
    .pricing-layout > *,
    .contact-grid > * {
      min-width: 0;
    }
    .hero .lead {
      color: rgba(255,255,255,.84);
      font-size: 21px;
      max-width: 650px;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 30px 0;
    }
    .usp-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }
    .usp-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.25);
      background: rgba(255,255,255,.08);
      color: rgba(255,255,255,.9);
      padding: 9px 12px;
      border-radius: var(--radius);
      font-size: 14px;
      font-weight: 700;
    }
    .quote-panel {
      background: rgba(255,255,255,.95);
      color: var(--ink);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 22px;
      width: 100%;
      max-width: 100%;
      transform: translateY(28px);
      animation: floatPanel 5s ease-in-out infinite;
    }
    .quote-panel h3 { margin-bottom: 4px; }
    .quote-panel p { color: var(--muted); margin-bottom: 16px; font-size: 14px; }
    .mini-form {
      display: grid;
      gap: 10px;
    }
    .field {
      width: 100%;
      min-height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 11px 12px;
      color: var(--ink);
      background: #fff;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }
    textarea.field { min-height: 88px; resize: vertical; }
    .field:focus {
      border-color: var(--brand);
      box-shadow: 0 0 0 4px rgba(11,95,151,.12);
    }
    .form-note { font-size: 12px; color: var(--muted); margin: 0; }
    .form-feedback:empty { display: none; }
    @keyframes floatPanel {
      0%, 100% { transform: translateY(20px); }
      50% { transform: translateY(8px); }
    }

    .stats-strip {
      margin-top: -58px;
      position: relative;
      z-index: 3;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: #fff;
      box-shadow: var(--shadow);
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid var(--line);
    }
    .stat {
      padding: 24px;
      border-right: 1px solid var(--line);
    }
    .stat:last-child { border-right: 0; }
    .stat strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      color: var(--brand);
      margin-bottom: 8px;
    }
    .stat span { color: var(--muted); font-weight: 700; font-size: 14px; }

    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 52px;
      align-items: center;
    }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }
    .section-head .lead { margin-bottom: 0; }
    .audience-list {
      display: grid;
      gap: 14px;
    }
    .audience-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 17px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .audience-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 34px rgba(16,35,63,.1);
      border-color: rgba(242,106,46,.35);
    }
    .icon-box {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: var(--radius);
      background: #e9f4fb;
      color: var(--brand);
    }
    .icon-box.hot { background: #fff0e9; color: var(--accent); }
    .visual-stack {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .visual-card {
      min-height: 190px;
      border-radius: var(--radius);
      padding: 18px;
      color: #fff;
      background: var(--brand-2);
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
    }
    .visual-card:nth-child(2) { background: var(--accent); transform: translateY(28px); }
    .visual-card:nth-child(3) { background: #164f77; }
    .visual-card:nth-child(4) { background: #22314b; transform: translateY(28px); }
    .visual-card::after {
      content: "";
      position: absolute;
      right: -36px;
      bottom: -44px;
      width: 130px;
      height: 130px;
      border: 22px solid rgba(255,255,255,.14);
      border-radius: 999px;
    }
    .visual-card strong {
      display: block;
      font-size: 34px;
      line-height: 1;
      margin-bottom: 10px;
    }
    .visual-card span { color: rgba(255,255,255,.82); font-weight: 700; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .service-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      min-height: 288px;
    }
    .service-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .24s ease;
    }
    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow);
      border-color: rgba(11,95,151,.25);
    }
    .service-card:hover::before { transform: scaleX(1); }
    .service-card ul, .check-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
    }
    .service-card li, .check-list li {
      position: relative;
      padding-left: 26px;
      color: var(--muted);
    }
    .service-card li::before, .check-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 7px;
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: var(--accent);
      box-shadow: inset 0 0 0 4px #fff;
      border: 1px solid rgba(242,106,46,.35);
    }

    .benefits {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .benefit {
      border-left: 3px solid var(--accent);
      background: #fff;
      padding: 20px;
      border-radius: 0 var(--radius) var(--radius) 0;
      box-shadow: 0 10px 28px rgba(16,35,63,.08);
    }
    .benefit p { color: var(--muted); margin: 0; }

    .process {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      counter-reset: step;
    }
    .step {
      counter-increment: step;
      position: relative;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px 18px;
      min-height: 178px;
      overflow: hidden;
    }
    .step::before {
      content: "0" counter(step);
      display: inline-grid;
      place-items: center;
      width: 40px;
      height: 40px;
      margin-bottom: 18px;
      border-radius: var(--radius);
      color: #fff;
      background: var(--brand);
      font-weight: 900;
    }
    .step::after {
      content: "";
      position: absolute;
      right: -24px;
      top: 36px;
      width: 48px;
      height: 2px;
      background: var(--accent);
      opacity: .45;
    }
    .step:last-child::after { display: none; }
    .step p { color: var(--muted); margin: 0; }

    .pricing-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 24px;
      align-items: start;
    }
    .table-wrap {
      overflow-x: auto;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      box-shadow: var(--shadow);
    }
    table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
    }
    th, td {
      padding: 18px;
      border-bottom: 1px solid var(--line);
      text-align: left;
    }
    th {
      background: #d8ecfb;
      color: var(--brand-2);
      font-size: 14px;
      text-transform: uppercase;
    }
    tr:last-child td { border-bottom: 0; }
    td strong { color: var(--brand); }
    .table-note {
      padding: 16px 18px;
      background: #e7f2fb;
      color: var(--ink-2);
      font-size: 14px;
    }
    .calculator {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: 0 12px 34px rgba(16,35,63,.09);
      position: sticky;
      top: 96px;
    }
    .calc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin: 16px 0;
    }
    .calc-result {
      display: grid;
      gap: 8px;
      padding: 16px;
      border-radius: var(--radius);
      background: var(--brand-2);
      color: #fff;
    }
    .calc-result strong {
      font-size: 28px;
      line-height: 1;
      color: var(--accent-2);
    }

    .commitments {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .commitment {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 14px;
      align-items: start;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
    }
    .commitment p { color: var(--muted); margin: 0; }

    .faq-wrap {
      max-width: 850px;
      margin: 0 auto;
      display: grid;
      gap: 12px;
    }
    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: #fff;
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      border: 0;
      background: #fff;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      text-align: left;
      font-weight: 800;
      cursor: pointer;
      color: var(--ink);
    }
    .faq-question span:last-child {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--brand);
      transition: transform .2s ease;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
    }
    .faq-answer p {
      color: var(--muted);
      padding: 0 20px 18px;
      margin: 0;
    }
    .faq-item.active .faq-question span:last-child { transform: rotate(45deg); }
    .faq-item.active .faq-answer { max-height: 180px; }

    .contact-band {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(10,53,88,.98), rgba(11,95,151,.92)),
        url("../images/hero-logistics.png") center / cover no-repeat;
      padding: 76px 0;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 46px;
      align-items: center;
    }
    .contact-band .lead { color: rgba(255,255,255,.82); }
    .contact-card {
      background: #fff;
      color: var(--ink);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .contact-info {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }
    .contact-info a,
    .contact-info span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.9);
      font-weight: 700;
    }

    .site-footer {
      background: #061b2f;
      color: rgba(255,255,255,.72);
      padding: 26px 0;
      font-size: 14px;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }
    .floating-actions {
      position: fixed;
      right: 18px;
      bottom: 18px;
      display: grid;
      gap: 10px;
      z-index: 60;
    }
    .float-btn {
      width: 50px;
      height: 50px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 12px 28px rgba(0,0,0,.22);
      transition: transform .2s ease;
      border: 0;
    }
    .float-btn:hover { transform: translateY(-3px) scale(1.03); }
    .float-btn.phone { background: var(--accent); }
    .float-btn.zalo { background: #0068ff; font-weight: 900; font-size: 13px; }
    .float-btn.top { background: var(--brand-2); cursor: pointer; opacity: 0; pointer-events: none; }
    .float-btn.top.visible { opacity: 1; pointer-events: auto; }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .58s ease, transform .58s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1024px) {
      .topbar-inner { display: none; }
      .nav {
        position: fixed;
        inset: 86px 0 auto;
        display: grid;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .24s ease, opacity .24s ease;
        padding: 10px 24px 18px;
      }
      .nav ul,
      .nav-menu {
        display: grid;
        gap: 0;
      }
      .nav-open .nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
      }
      .nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--line);
      }
      .nav a::after { display: none; }
      .menu-toggle { display: block; }
      .header-cta { display: none; }
      .hero-grid,
      .split,
      .pricing-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .quote-panel { max-width: 520px; animation: none; transform: none; }
      .stats-grid,
      .benefits,
      .commitments { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .process { grid-template-columns: repeat(3, 1fr); }
      .calculator { position: static; }
    }

    @media (max-width: 680px) {
      .container {
        width: 100%;
        padding-left: 12px;
        padding-right: 12px;
      }
      .section { padding: 58px 0; }
      .hero {
        min-height: auto;
        background:
          linear-gradient(180deg, rgba(5,22,38,.96) 0%, rgba(5,22,38,.84) 60%, rgba(5,22,38,.64) 100%),
          url("../images/hero-logistics.png") 66% center / cover no-repeat;
      }
      .hero-grid { padding: 44px 12px 84px; gap: 24px; }
      h1 { font-size: 28px; line-height: 1.12; overflow-wrap: break-word; word-break: normal; }
      .hero h1,
      .hero .lead { max-width: 340px; }
      .hero .lead { font-size: 17px; }
      .hero-actions { align-items: stretch; flex-direction: column; }
      .btn { width: 100%; white-space: normal; }
      .usp-row { display: grid; grid-template-columns: 1fr; align-items: stretch; }
      .usp-pill { justify-content: center; }
      .quote-panel { padding: 18px; }
      .stats-strip { margin-top: -38px; }
      .stats-grid,
      .services-grid,
      .benefits,
      .commitments,
      .process,
      .visual-stack {
        grid-template-columns: 1fr;
      }
      .stat { border-right: 0; border-bottom: 1px solid var(--line); }
      .stat:last-child { border-bottom: 0; }
      .section-head { display: block; }
      .visual-card,
      .visual-card:nth-child(2),
      .visual-card:nth-child(4) { transform: none; min-height: 150px; }
      .process .step::after { display: none; }
      .calc-grid { grid-template-columns: 1fr; }
      .contact-card { padding: 18px; }
      .footer-inner { display: grid; }
      .floating-actions { right: 12px; bottom: 12px; }
      .brand img { width: 138px; height: 62px; }
    }

    .inner-page {
      background: #fff;
      min-height: 60vh;
    }
    .page-hero {
      color: #fff;
      background:
        linear-gradient(90deg, rgba(10,53,88,.98), rgba(11,95,151,.92)),
        url("../images/hero-logistics.png") center / cover no-repeat;
      padding: 78px 0;
    }
    .page-hero__title {
      max-width: 900px;
      margin: 0;
      font-size: clamp(30px, 5vw, 52px);
      line-height: 1.08;
    }
    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
      color: rgba(255,255,255,.82);
      font-weight: 700;
    }
    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px;
      gap: 32px;
      padding-top: 58px;
      padding-bottom: 74px;
    }
    .content-layout:not(:has(.content-sidebar)) {
      grid-template-columns: minmax(0, 1fr);
    }
    .post-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .post-card,
    .single-article,
    .single-cta,
    .widget,
    .no-results {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 12px 34px rgba(16,35,63,.08);
    }
    .post-card { overflow: hidden; }
    .post-card__thumb {
      display: block;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: var(--soft);
    }
    .post-card__thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .post-card__body,
    .single-article__content,
    .single-cta,
    .no-results {
      padding: 22px;
    }
    .post-card__date {
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
    }
    .post-card__title {
      font-size: 21px;
      margin: 8px 0;
    }
    .post-card__excerpt,
    .single-article__content,
    .single-cta p {
      color: var(--muted);
    }
    .post-card__link {
      color: var(--brand);
      font-weight: 800;
    }
    .single-article {
      overflow: hidden;
    }
    .single-article__thumb img {
      width: 100%;
      max-height: 460px;
      object-fit: cover;
    }
    .single-article__content {
      color: var(--ink-2);
      font-size: 17px;
    }
    .single-article__content a {
      color: var(--brand);
      font-weight: 700;
    }
    .post-nav {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin: 22px 0;
      font-weight: 800;
      color: var(--brand);
    }
    .single-cta {
      margin-top: 22px;
    }
    .widget {
      padding: 20px;
      margin-bottom: 18px;
    }
    .pagination {
      margin-top: 30px;
      font-weight: 800;
    }
    @media (max-width: 1024px) {
      .content-layout,
      .post-grid {
        grid-template-columns: 1fr;
      }
    }
