.hub {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 60px 0 80px;
    background: #ffffff;
  }
  
  .hub-top {
    text-align: center;
    margin-bottom: 44px;
  }
  
  .hub-top h2 {
    font-weight: 400;
    font-size: 42px;
    color: #1a1a1a;
    letter-spacing: -0.03em;
    line-height: 1.15;
  }
  
  .cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 80px;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .card {
    border-radius: 8px;
    background: #f5f5f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .card-pic {
    width: 100%;
    height: 230px;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  .card-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .card-info {
    padding: 14px 18px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .card-info h3 {
    font-weight: 600;
    font-size: 16px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 8px;
  }
  
  .card-info p {
    font-weight: 400;
    font-size: 12px;
    color: #555;
    line-height: 1.55;
    letter-spacing: -0.01em;
    flex: 1;
  }
  
  .articles {
    width: 100%;
    background: #1c3a3a;
  }
  
  .articles-top {
    text-align: center;
    padding-top: 60px;
    margin-bottom: 44px;
  }
  
  .articles-top h2 {
    font-weight: 300;
    font-size: 42px;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  
  .articles-top .tag-label .line { background: #ccff00; }
  .articles-top .tag-label span { color: #ccff00; }
  
  .articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 0 80px 80px;
    max-width: 1440px;
    margin: 0 auto;
  }
  
  .article-card {
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  
  .outlet-logo {
    width: 100%;
    height: 170px;
    background: #c5d4d4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
  }
  
  .outlet-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .outlet-logo span {
    font-size: 52px;
    font-weight: 700;
    color: #0d1f1f;
    letter-spacing: -2px;
    font-family: 'Georgia', serif;
    line-height: 1;
  }
  
  .article-info {
    background: #ffffff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  
  .article-info h3 {
    font-weight: 600;
    font-size: 16px;
    color: #0d1f1f;
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  
  .article-info p {
    font-weight: 400;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    letter-spacing: -0.01em;
    flex: 1;
  }
  
  .resources {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 80px 80px;
  }
  
  .resources h2 {
    text-align: center;
    font-weight: 400;
    font-size: 38px;
    color: #1c3a3a;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
  }
  
  .res-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .res-card {
    background: #f0f2f2;
    border-radius: 8px;
    padding: 36px 24px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  
  .res-card span {
    font-weight: 400;
    font-size: 14px;
    color: #1c3a3a;
    letter-spacing: -0.01em;
    text-align: center;
  }
  
  .file-icon {
    position: relative;
    width: 90px;
    height: 108px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .file-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .file-icon i {
    font-size: 108px;
    color: #1c3a3a;
    line-height: 1;
  }
  
  .pdf-label {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 16px;
    color: #1c3a3a;
    letter-spacing: 1px;
  }
  
  @media (max-width: 1200px) {
    .cards-grid { grid-template-columns: repeat(2, 1fr); padding: 0 48px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); padding: 0 48px 64px; }
    .article-card:last-child { display: none; }
    .resources { padding: 50px 48px 64px; }
  }
  
  @media (max-width: 768px) {
    .hub { padding: 36px 0 44px; }
    .hub-top { margin-bottom: 28px; }
    .hub-top h2, .articles-top h2, .resources h2 { font-size: 24px; padding: 0 20px; }
    .cards-grid { grid-template-columns: 1fr; padding: 0 20px; gap: 14px; }
    .card-pic { height: 210px; }
    .articles-top { padding-top: 36px; margin-bottom: 28px; }
    .articles-grid { grid-template-columns: 1fr; padding: 0 20px 40px; gap: 14px; }
    .article-card:last-child { display: flex; }
    .outlet-logo { height: 120px; }
    .outlet-logo span { font-size: 36px; }
    .resources { padding: 36px 20px 44px; }
    .res-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .res-card { padding: 24px 16px 20px; gap: 12px; }
    .file-icon { width: 64px; height: 76px; }
    .file-icon i { font-size: 76px; }
    .pdf-label { font-size: 13px; bottom: 12px; }
  }
  
  @media (max-width: 480px) {
    .hub-top h2, .articles-top h2, .resources h2 { font-size: 20px; }
    .cards-grid { padding: 0 16px; }
    .articles-grid { padding: 0 16px 36px; }
    .resources { padding: 32px 16px 40px; }
    .res-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .res-card span { font-size: 12px; }
  }