 .page-container {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .breadcrumbs {
      font-size: 15px;
      color: #888;
      margin-bottom: 18px;
    }
    .breadcrumbs a {
      color: #0073e6;
      text-decoration: none;
    }
    .breadcrumbs a:hover {
      text-decoration: underline;
    }
    .anticor-title {
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 28px;
      color: #222;
    }
    .anticor-section {
      background: #f8fbfd;
      border-radius: 18px;
      padding: 32px 32px 24px 32px;
      box-shadow: 0 2px 12px rgba(0,115,230,0.06);
    }
    .anticor-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
      gap: 32px 28px;
    }
    .anticor-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 170px;
      background: none;
    }
    .anticor-card__title {
      font-size: 18px;
      font-weight: 600;
      color: #1a1a1a;
      margin-bottom: 18px;
      line-height: 1.4;
    }
    .anticor-card__footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 15px;
      color: #888;
    }
    .anticor-card__link {
      color: #0073e6;
      font-weight: 500;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.18s;
    }
    .anticor-card__link:hover {
      color: #005bb5;
      text-decoration: underline;
    }
    .anticor-card__date {
      display: flex;
      align-items: center;
      gap: 6px;
      color: #666;
    }
    .anticor-card__date:before {
      content: "🗓";
      font-size: 1em;
      margin-right: 2px;
    }
    @media (max-width: 700px) {
      .anticor-section {
        padding: 18px 6px 12px 6px;
      }
      .anticor-title {
        font-size: 17px;
      }
      .anticor-grid {
        grid-template-columns: 1fr;
        gap: 18px 0;
      }
    }