.hub-intro {
      max-width: 920px;
      margin: 0 auto 38px;
      text-align: center;
    }
    .hub-intro h2 {
      margin-bottom: 14px;
    }
    .hub-intro p {
      color: #6f6f6f;
      font-size: 20px;
      line-height: 1.7;
    }
    .hub-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-bottom: 36px;
    }
    .hub-card {
      min-height: 100%;
      padding: 30px 28px;
      border: 1px solid #ece3da;
      background: #fff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    }
    .hub-card__label {
      color: #a77b4e;
      display: block;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .08em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .hub-card h3 {
      color: #222;
      font-size: 24px;
      line-height: 1.25;
      margin-bottom: 14px;
    }
    .hub-card p {
      color: #686868;
      line-height: 1.7;
      margin-bottom: 22px;
    }
    .hub-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 8px;
    }
    .hub-card .theme-btn,
    .hub-actions .theme-btn {
      background: #ab7442;
      border-color: #ab7442;
      color: #fff;
    }
    .hub-card .theme-btn .txt,
    .hub-actions .theme-btn .txt {
      color: #fff;
    }
    .hub-card .theme-btn:hover,
    .hub-card .theme-btn:focus,
    .hub-actions .theme-btn:hover,
    .hub-actions .theme-btn:focus {
      background: #322f2f;
      border-color: #322f2f;
      color: #fff;
    }
    .hub-card .theme-btn:hover .txt,
    .hub-card .theme-btn:focus .txt,
    .hub-actions .theme-btn:hover .txt,
    .hub-actions .theme-btn:focus .txt {
      color: #fff;
    }
    .hub-quicklinks {
      background: #f8f4ef;
      border: 1px solid #eee2d6;
      margin: 0 auto 34px;
      max-width: 980px;
      padding: 30px;
    }
    .hub-quicklinks h3 {
      color: #222;
      font-size: 24px;
      margin-bottom: 18px;
      text-align: center;
    }
    .hub-link-group {
      margin-top: 18px;
    }
    .hub-link-group strong {
      color: #a77b4e;
      display: block;
      font-size: 13px;
      letter-spacing: .08em;
      margin-bottom: 10px;
      text-transform: uppercase;
    }
    .hub-link-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .hub-link-list a {
      background: #fff;
      border: 1px solid #eadbcb;
      color: #333;
      display: inline-block;
      font-weight: 600;
      line-height: 1.25;
      padding: 12px 16px;
      transition: all .2s ease;
    }
    .hub-link-list a:hover,
    .hub-link-list a:focus {
      background: #a77b4e;
      border-color: #a77b4e;
      color: #fff;
    }
    @media (max-width: 991px) {
      .hub-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 767px) {
      .hub-grid {
        grid-template-columns: 1fr;
      }
      .hub-intro p {
        font-size: 18px;
      }
      .hub-quicklinks {
        padding: 24px 18px;
      }
      .hub-link-list a {
        width: 100%;
      }
    }
