/* =========================================================
   pages.css
   Inner pages only: about / service / recruitment / contactus
   Built to sit on top of the current site.css without changing index layout
   ========================================================= */

  .page-main {
    padding: 22px 0 30px;
  }

  .page-section {
    margin-top: 12px;
  }

  .page-hero {
    
    margin-top: 10px;
  }



  .page-hero__eyebrow {
    margin: 0 0 10px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #c46a00;
  }

  .page-hero__title {
    margin: 0 0 12px;
    font-size: 38px;
    line-height: 1.22;
    color: #173a62;
  }

  .page-hero__lead {
    margin: 0;
    margin-bottom: 10px;
    font-size: 17px;
    line-height: 1.8;
    color: #52687c;
  }

  .page-hero__meta {
    padding: 16px 24px;
    border-radius: 12px;
    background: #f7f7f7;
    border: 1px solid #d8e0e8;
    box-shadow: 0 8px 20px rgba(8, 28, 48, 0.05);
  }

  .page-hero__meta h3 {
    margin: 0 0 12px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.35;
    color: #173a62;
  }

  .page-hero__meta ul {
    margin: 0;
    padding-left: 16px;
    list-style-type: disc;
    color: #4c6478;
  }

  .page-hero__meta li {
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.8;
  }

  .page-hero__media img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    border-radius: 10px;
  }

  /* 更新后的 pages.css */


  .page-hero__card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .page-hero__title {
    font-size: 36px;
    font-weight: 800;
    color: #0d2641;
    line-height: 1.4;
  }

  .page-hero__lead {
    font-size: 18px;
    color: #666;
    margin-top: 12px;
  }

  .page-section {
    padding: 22px 0;
  }

  .service-detail-card {
    display: flex;
    flex-direction: column;
    padding: 18px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #d8e0e8;
    box-shadow: 0 6px 16px rgba(8, 28, 48, 0.06);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
  }

  .service-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(8, 28, 48, 0.10);
  }

  .service-detail-card__visual {
    width: 100%;
    aspect-ratio: 16 / 8.8;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    margin-bottom: 14px;
  }

  .service-detail-card__body {
    padding: 0;
  }

  .service-detail-card__body h3 {
    margin: 0 0 10px;
    font-size: 18px;
    line-height: 1.35;
    color: #173a62;
  }

  .service-detail-card__body p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.75;
    color: #52687c;
  }

  .service-detail-card ul {
    list-style-type: none;
    padding: 0;
  }

  .service-detail-card ul li {
    font-size: 16px;
    color: #777;
    margin-bottom: 8px;
  }

  .feature-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }

  .feature-list li {
    padding: 6px 10px;
    border-radius: 999px;
    background: #eef4fb;
    border: 1px solid #dbe7f2;
    font-size: 13px;
    line-height: 1.4;
    color: #31506f;
  }

  .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
  }

  .contact-card, .contact-actions, .map-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(8, 28, 48, 0.05);
  }

  .contact-card h2, .contact-actions h3, .map-card h2 {
    font-size: 24px;
    color: #0D2641;
    margin-bottom: 16px;
  }

  .contact-info-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }

  .contact-info-list li {
    font-size: 16px;
    color: #4c6478;
    margin-bottom: 8px;
  }

  /* 按钮样式 */
  .cta-inline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  }

  .cta-inline a {
    padding: 12px 24px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .cta-inline .btn-primary {
    background-color: #0D2641;
    color: #fff;
  }

  .cta-inline .btn-primary:hover {
    background-color: #173a62;
  }

  .cta-inline .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
  }

  .cta-inline .btn-whatsapp:hover {
    background-color: #128C7E;
  }

  


  .simple-band {
    text-align: center;
    padding: 22px 28px;              /* 🔥 高度縮細 */
    border-radius: 16px;
    margin: 0 auto;
    background: #f7f7f7;
  }

  .simple-band__label {
    margin-bottom: 6px;
    font-size: 16px;
    letter-spacing: .08em;
    color: #c46a00;
  }

  .simple-band__headline {
    margin: 0 0 10px;
    font-size: 24px;      /* 🔥 原本應該太大 */
    line-height: 1.4;
    color: #173a62;
  }

  .simple-band__desc {
    margin: 0;
    font-size: 18px;
    color: #52687c;
    line-height: 1.6;
  }

    /* Footer Modern */
  .site-footer-modern {
    margin-top: 18px;
    padding: 0 0 12px;
  }

  .site-footer-modern .wide-shell {
    background: linear-gradient(180deg, #173d67 0%, #0f2d4a 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(8, 28, 48, 0.08);
  }

  .site-footer-modern__top {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 28px 14px;
  }

  .site-footer-modern__brand {
    max-width: 520px;
  }

  .site-footer-modern__logo {
    height: 40px;
    width: auto;
    display: block;
    margin-bottom: 10px;
  }

  .site-footer-modern__desc {
    margin: 0;
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    line-height: 1.65;
  }

  .site-footer-modern__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-content: flex-start;
    justify-content: flex-end;
  }

  .site-footer-modern__nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    opacity: 0.92;
    transition: opacity 0.2s ease;
  }

  .site-footer-modern__nav a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .site-footer-modern__bottom {
    padding: 12px 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .site-footer-modern__bottom p {
    margin: 0;
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
  }

  .page-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .section-card {
    padding: 26px 28px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #d8e0e8;
    box-shadow: 0 8px 20px rgba(8, 28, 48, 0.05);
  }

  .section-card h2,
  .section-card h3 {
    margin: 0 0 10px;
    color: #173a62;
    line-height: 1.35;
  }

  .section-card h2 {
    font-size: 30px;
  }

  .section-card h3 {
    font-size: 22px;
  }

  .section-card p {
    margin: 0 0 10px;
    color: #52687c;
    line-height: 1.78;
  }

  .section-card p:last-child {
    margin-bottom: 0;
  }

  .company-statement-center {
    margin: 26px 0 16px;
    background: transparent;
  }

  .company-statement-center__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 10px 0 6px;
    text-align: center;
  }

  .company-statement-center__label {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #ff7a00;
    letter-spacing: 0.08em;
  }

  .company-statement-center__headline {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.4;
    font-weight: 800;
    color: #173a62;
  }

  .company-statement-center__headline strong {
    color: #173a62;
  }

  .company-statement-center__desc {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #6f8fb3;
  }

  .about-story {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
  }

  .about-callout {
    padding: 30px 32px;
    border-radius: 16px;
    background: linear-gradient(180deg, #173d67 0%, #0f2d4a 100%);
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 10px 24px rgba(8, 28, 48, 0.08);
    color: #fff;
  }

  .about-callout__eyebrow {
    margin: 0 0 8px;
    font-size: 14px;
    font-weight: 700;
    color: rgba(255,255,255,0.74);
    letter-spacing: .06em;
  }

  .about-callout h2 {
    margin: 0 0 12px;
    font-size: 32px;
    line-height: 1.3;
    color: #fff;
  }

  .about-callout p {
    margin: 0;
    line-height: 1.8;
    color: rgba(255,255,255,0.88);
  }

  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .highlight-card {
    padding: 24px 24px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #d8e0e8;
    box-shadow: 0 8px 20px rgba(8, 28, 48, 0.05);
  }

  .highlight-card__eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 700;
    color: #c46a00;
    letter-spacing: .04em;
  }

  .highlight-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    line-height: 1.35;
    color: #173a62;
  }

  .highlight-card p {
    margin: 0;
    color: #52687c;
    line-height: 1.7;
  }

  .cta-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    border-radius: 14px;
    background: linear-gradient(180deg, #f8fafc 0%, #eef4f8 100%);
    border: 1px solid #d8e0e8;
    box-shadow: 0 8px 20px rgba(8, 28, 48, 0.05);
  }

  .cta-inline__content h2 {
    margin: 0 0 10px;
    font-size: 30px;
    line-height: 1.3;
    color: #173a62;
  }

  .cta-inline__content p {
    margin: 0;
    max-width: 760px;
    color: #52687c;
    line-height: 1.7;
  }

  .cta-inline__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
  }

  /* header fallback for inner pages only */
  .site-nav--desktop {
    display: block;
  }

  .mobile-nav-toggle,
  .mobile-nav-panel {
    display: none;
  }



    /* =========================
    About Stats Section
  ========================= */

  .about-stats {
    padding: 48px 0;
  }

  .about-stats__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
  }

  /* 左邊數據 */
  .about-stats__grid {
    display: flex;
    align-items: stretch;
    gap: 0;
    flex: 0 0 auto;
  }

  .about-stat {
    text-align: center;
    position: relative;
    padding: 0 30px;
  }

  .about-stat:not(:last-child)::after {
    display: none;
  }

  /* 數字 */
  .about-stat__num {
    font-size: 42px;
    font-weight: 700;
    color: #2b5fa8;
  }

  /* label */
  .about-stat__label {
    margin-top: 6px;
    font-size: 15px;
    color: #555;
  }

  /* 右邊 CTA */
  .about-stats__cta {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }

  /* Button */
  .about-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;   /* ← 確保文字置中 */
    text-align: center;
    padding: 14px 28px;
    border: 1px solid #1c3c62;
    color: #1c3c62;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 6px;
    transition: all 0.25s ease;
  }

  /* 🔥 hover 效果 */
  .about-cta-btn:hover {
    background: #1c3c62;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
  }

  .page-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .about-mission-block {
    padding: 20px 0 8px;
  }

  .about-mission-block  {
    width: min(1680px, calc(100% - 48px));
    margin: 0 auto;
  }

  .about-mission-block__inner {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 36px;
    align-items: center;

    width: 100%;                 /* ✅ 跟上面一樣吃滿 wide-shell */
    background: #f9f9f9;         /* ✅ 白色圓角矩形背景 */
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 30px;

    /* ❌ 唔好再有 max-width: 1200px; */
    /* ❌ 唔好再有 margin: 0 auto; */
  }

  .about-mission-block__media img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
    box-shadow: 0 8px 20px rgba(8, 28, 48, 0.08);
  }

  .about-mission-block__content {
    max-width: 720px;
  }

  .about-mission-block__eyebrow {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #c46a00;
  }

  .about-mission-block__title {
    margin: 0 0 14px;
    font-size: 44px;
    line-height: 1.25;
    font-weight: 800;
    color: #173a62;
  }

  .about-mission-block__text {
    margin: 0;
    font-size: 18px;
    line-height: 1.8;
    color: #52687c;
  }

  /* Job Card */
  .job-card {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }

  .job-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .job-card__eyebrow {
    font-size: 16px;
    color: #c46a00;
    margin-bottom: 8px;
  }

  .job-card__footer {
    margin-top: 15px;
    font-size: 14px;
    color: #173a62;
  }

  .job-meta {
    font-size: 14px;
    color: #4c6478;
  }

  .job-meta span {
    margin-right: 12px;
  }

  /* Job List Section */
  .job-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 默认竖排 */
    gap: 20px;
    margin-top: 30px;
  }

  .job-grid .job-card {
    padding: 18px;
  }

  .feature-list li {
    font-size: 14px;
    color: #52687c;
    margin-bottom: 12px;
  }

  /* contact布局 */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 默认桌面端横向布局 */
    gap: 30px;
    margin-top: 30px;
  }

  .section-card {
    padding: 20px;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(8, 28, 48, 0.05);
  }

  .map-card__header {
    font-size: 24px;
    color: #0D2641;
    margin-bottom: 12px;
  }

  .map-embed {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

  /* 优化按钮和图标 */
  .cta-inline {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  }

  .cta-inline a {
    padding: 12px 24px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .cta-inline .btn-primary {
    background-color: #0D2641;
    color: #fff;
  }

  .cta-inline .btn-primary:hover {
    background-color: #173a62;
  }

  .cta-inline .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
  }

  .cta-inline .btn-whatsapp:hover {
    background-color: #128C7E;
  }
  @media (max-width: 1024px) {
    .page-hero__card,
    .page-grid-2,
    .about-story,
    .highlight-grid {
      grid-template-columns: 1fr;
    }

    .page-grid-3 {
      grid-template-columns: 1fr;
    }

    .cta-inline {
      flex-direction: column;
      align-items: flex-start;
    }

    .cta-inline__actions {
      width: 100%;
    }
  }

  @media (max-width: 768px) {
    .page-main {
      padding: 16px 0 22px;
    }

    .page-hero__card,
    .section-card,
    .about-callout,
    .highlight-card,
    .cta-inline {
      padding: 20px 18px;
    }

    .page-hero__card {
      gap: 14px;
    }

    .page-hero__title {
      font-size: 28px;
      line-height: 1.25;
    }

    .page-hero__lead {
      font-size: 15px;
      line-height: 1.65;
    }

    .company-statement-center {
      margin: 18px 0 12px;
    }

    .company-statement-center__headline {
      font-size: 22px;
      line-height: 1.45;
    }

    .company-statement-center__desc {
      font-size: 14px;
      line-height: 1.6;
      padding: 0 6px;
    }

    .contact-grid {
      grid-template-columns: 1fr !important;
    }

    /* 公司信息 */
  .company-info {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
  }

  .company-info-left {
      width: 45%;
      max-width: 500px;
  }

  .company-info-right {
      width: 50%;
      padding-left: 30px;
  }

  .company-info-right h2 {
      font-size: 24px;
      color: #1c3c62; /* 可根据网站风格调整 */
  }

  .company-info-right p {
      font-size: 16px;
      color: #333;
      line-height: 1.6;
  }

  .company-info-left img {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }
    .section-card h2,
    .about-callout h2,
    .cta-inline__content h2 {
      font-size: 24px;
    }

    .section-card h3,
    .highlight-card h3,
    .page-hero__meta h3 {
      font-size: 21px;
    }

    .section-card p,
    .highlight-card p,
    .cta-inline__content p {
      font-size: 15px;
      line-height: 1.65;
    }

    .site-header__inner {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      gap: 12px;
    }

    .site-nav--desktop {
      display: none;
    }

    .mobile-nav-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 8px;
      background: rgba(255,255,255,0.08);
      color: #fff;
      font-size: 22px;
      cursor: pointer;
    }

    .mobile-nav-panel {
      display: none;
      position: absolute;
      top: calc(100% - 6px);
      left: 16px;
      right: 16px;
      z-index: 40;
      flex-direction: column;
      gap: 0;
      padding: 8px 18px 14px;
      background: linear-gradient(180deg, #173d67 0%, #123150 100%);
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 0 0 12px 12px;
      box-shadow: 0 12px 26px rgba(0,0,0,0.22);
    }

    .mobile-nav-panel.is-open {
      display: flex;
    }

    .mobile-nav-panel a {
      padding: 14px 0;
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-nav-panel a:last-child {
      border-bottom: 0;
    }

    .about-stats {
      padding: 22px 0 18px;
    }

    .about-stats__inner {
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 20px;
    }

    .about-stats__grid {
      width: 100%;
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }

    .about-stat {
      width: 100%;
      max-width: 220px;
      padding: 0;
      text-align: center;
    }

    .about-stat:not(:last-child)::after {
      display: none;
    }

    .about-stat__num {
      font-size: 38px;
    }

    .about-stat__label {
      font-size: 14px;
      margin-top: 6px;
    }

    .about-stats__cta {
      width: 100%;
      display: flex;
      justify-content: center;
    }

    .about-cta-btn {
      min-width: 150px;
      min-height: 52px;
      font-size: 14px;
      letter-spacing: 0.08em;
    }

     .about-mission-block {
    padding: 14px 0 6px;
  }

  .about-mission-block  {
    width: min(100%, calc(100% - 16px));
  }

  .about-mission-block__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 20px 18px;
  }

  .about-mission-block__media img {
    min-height: 220px;
  }

  .about-mission-block__title {
    font-size: 28px;
    line-height: 1.35;
  }

  .about-mission-block__text {
    font-size: 15px;
    line-height: 1.7;
  }

 
  .page-grid-2 {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-detail-card {
    padding: 14px;
  }

  .service-detail-card__visual {
    aspect-ratio: 16 / 9;
    margin-bottom: 12px;
  }

  .service-detail-card__body h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .service-detail-card__body p {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .feature-list li {
    font-size: 13px;
  }

  .simple-band {
    padding: 18px 16px;
  }

  .simple-band__headline {
    font-size: 18px;
  }

  .simple-band__desc {
    font-size: 13px;
  }

  .job-grid {
    display: flex;
    flex-wrap: wrap; /* 使卡片可以换行 */
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px; /* 减小间距 */
  }

  .job-card {
    flex: 1 1 45%; /* 确保卡片在横向排列时不重叠，调整每个卡片的宽度 */
    min-width: 280px; /* 设置最小宽度 */
    margin-bottom: 20px;
  }

  .job-card__media {
    width: 100%; /* 确保图片自适应宽度 */
  }

  .job-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  /* 内容区域调整 */
  .job-card__body {
    padding-left: 20px;
  }

  


  .contact-info {
    grid-template-columns: 1fr !important; /* 手机端改为竖排 */
  }

   /* 联系信息卡片 */
  .contact-card {
    margin-bottom: 30px;
  }

  /* 地图卡片 */
  .map-card {
    margin-bottom: 30px;
  }

  .cta-inline {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  }

  .cta-inline a {
    padding: 12px 24px;
    width: 100%;
    margin-bottom: 12px;
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
  }

  .cta-inline .btn-primary {
    background-color: #0D2641;
    color: #fff;
  }

  .cta-inline .btn-primary:hover {
    background-color: #173a62;
  }

  .cta-inline .btn-whatsapp {
    background-color: #25D366;
    color: #fff;
  }

  .cta-inline .btn-whatsapp:hover {
    background-color: #128C7E;
  }

  .map-embed {
    width: 100%;
    height: 250px;
    border: none;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  }

     .site-footer-modern {
    margin-top: 14px;
    padding-bottom: 10px;
  }

  .site-footer-modern__top {
    flex-direction: column;
    gap: 14px;
    padding: 18px 16px 12px;
  }

  .site-footer-modern__brand {
    max-width: 100%;
  }

  .site-footer-modern__logo {
    height: 34px;
    margin-bottom: 8px;
  }

  .site-footer-modern__desc {
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
  }

  .site-footer-modern__nav {
    flex-direction: column;
    gap: 8px;
    justify-content: flex-start;
  }

  .site-footer-modern__nav a {
    font-size: 14px;
  }

  .site-footer-modern__bottom {
    padding: 10px 16px;
  }

  .site-footer-modern__bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
}
