  .activity-list-page {
    padding-bottom: 40px;
  }

  .activity-list-page .hero-panel {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #c7d7ef;
    background: #f8fbff;
    box-shadow: 0 14px 30px rgba(36, 86, 146, 0.08);
  }

  .activity-list-page .hero-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
  }

  .activity-list-page .hero-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    background: linear-gradient(145deg, #ffd28f, #ffb958);
    color: #7b3f05;
    box-shadow: 0 10px 20px rgba(243, 165, 56, 0.3);
    flex-shrink: 0;
  }

  .activity-list-page .hero-eyebrow {
    margin-bottom: 4px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2559a0;
  }

  .activity-list-page .hero-title {
    margin: 0;
    color: #0d4f78;
    font-size: clamp(1.6rem, 1.8vw, 2.05rem);
    font-weight: 700;
    line-height: 1.2;
  }

  .activity-list-page .hero-subtitle {
    margin: 10px 0 0;
    max-width: 820px;
    color: #4f6880;
  }

  .activity-list-page .hero-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .activity-list-page .hero-kpi {
    border-radius: 16px;
    border: 1px solid #d3e3f6;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.82);
  }

  .activity-list-page .hero-kpi:nth-child(2) {
    background: linear-gradient(140deg, #edf8ff, #e7f0ff);
  }

  .activity-list-page .hero-kpi:nth-child(3) {
    background: linear-gradient(140deg, #eef9f3, #e5f7ee);
  }

  .activity-list-page .hero-kpi:nth-child(4) {
    background: linear-gradient(140deg, #fff7eb, #ffefdd);
  }

  .activity-list-page .hero-kpi-label {
    font-size: 0.88rem;
    color: #5e7894;
    margin-bottom: 4px;
    font-weight: 600;
  }

  .activity-list-page .hero-kpi-value {
    font-size: 1.56rem;
    line-height: 1.15;
    font-weight: 700;
    color: #153f71;
  }

  .activity-list-page .soft-panel {
    border-radius: 20px;
    border: 1px solid #cddcf0;
    background: linear-gradient(165deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 26px rgba(27, 75, 129, 0.06);
    padding: 20px;
  }

  .activity-list-page .panel-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  .activity-list-page .panel-title {
    margin: 0;
    color: #0d5176;
    font-size: 1.45rem;
    font-weight: 700;
  }

  .activity-list-page .panel-desc {
    margin: 2px 0 0;
    color: #58718a;
  }

  .activity-list-page .icon-chip {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(145deg, #e1ecff, #edf4ff);
    color: #1b5ba8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    border: 1px solid #c6d8f5;
  }

  .activity-list-page .filter-panel {
    background:
      radial-gradient(circle at 98% 0%, rgba(83, 151, 232, 0.14), transparent 36%),
      linear-gradient(160deg, #ffffff 0%, #f4f9ff 100%);
  }

  .activity-list-page .filters-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 12px;
  }

  .activity-list-page .filters-grid .form-label {
    margin-bottom: 6px;
    color: #44637f;
    font-weight: 600;
  }

  .activity-list-page .filters-grid .form-control,
  .activity-list-page .filters-grid .form-select {
    height: 44px;
    border-radius: 12px;
    border-color: #bfd3ea;
    background: #ffffff;
  }

  .activity-list-page .filter-toolbar {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
  }

  .activity-list-page .sort-control {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .activity-list-page .sort-control .form-label {
    margin: 0;
    color: #44637f;
    font-weight: 600;
    white-space: nowrap;
  }

  .activity-list-page .sort-control .form-select {
    min-width: 170px;
    height: 40px;
    border-radius: 10px;
    border-color: #bfd3ea;
  }

  .activity-list-page .results-chip {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #c6d9ef;
    background: #f1f8ff;
    color: #365a7d;
    font-size: 0.95rem;
  }

  .activity-list-page .content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(285px, 1fr));
    gap: 16px;
  }

  .activity-list-page .content-card {
    border: 1px solid #cfe0f2;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(34, 85, 146, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .activity-list-page .content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(34, 85, 146, 0.14);
  }

  .activity-list-page .content-media {
    position: relative;
    height: 190px;
    background: #eaf2ff;
  }

  .activity-list-page .content-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .activity-list-page .content-media-empty {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c84a0;
    font-weight: 600;
    background: linear-gradient(150deg, #e5efff, #f0f6ff);
  }

  .activity-list-page .content-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .activity-list-page .content-title {
    font-size: 1.18rem;
    line-height: 1.35;
    color: #0f4f73;
    font-weight: 700;
    min-height: 2.2em;
  }

  .activity-list-page .content-meta {
    color: #5f7692;
    font-size: 0.96rem;
  }

  .activity-list-page .content-pill {
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: linear-gradient(135deg, #deeeff, #e9f4ff);
    border: 1px solid #bed3ee;
    color: #2a5d8d;
    font-size: 0.88rem;
    font-weight: 600;
  }

  .activity-list-page .content-text {
    margin: 0;
    color: #445b75;
    font-size: 0.97rem;
    line-height: 1.6;
    min-height: 3.2em;
  }

  .activity-list-page .activity-card-action {
    margin-top: auto;
    width: 100%;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #2f7de0, #265fc0);
    color: #fff;
    font-weight: 700;
    padding: 9px 12px;
  }

  .activity-list-page .activity-card-action:hover {
    background: linear-gradient(135deg, #286fca, #1f53ad);
    color: #fff;
  }

  .activity-list-page .empty-state {
    border: 1px dashed #bfd4ec;
    border-radius: 18px;
    padding: 26px;
    text-align: center;
    color: #4e6986;
    background: linear-gradient(155deg, #fdfefe, #f2f8ff);
  }

  .activity-list-page .empty-state strong {
    color: #1b4d7a;
  }

  .activity-list-page .activity-pagination-wrap {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .activity-list-page .activity-pagination {
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .activity-list-page .activity-pagination .page-link {
    min-width: 42px;
    border-radius: 12px;
    border: 1px solid #c2d7ef;
    color: #1f5ea1;
    background: #ffffff;
    font-weight: 700;
    padding: 8px 12px;
    line-height: 1.2;
  }

  .activity-list-page .activity-pagination .page-link:hover {
    color: #174d86;
    background: #f2f8ff;
    border-color: #a7c4e8;
  }

  .activity-list-page .activity-pagination .page-item.active .page-link {
    color: #ffffff;
    border-color: #245bb3;
    background: linear-gradient(135deg, #2f7de0, #265fc0);
  }

  .activity-list-page .activity-pagination .page-item.disabled .page-link {
    color: #9bb1ca;
    background: #f4f8fd;
    border-color: #d4e1f2;
    pointer-events: none;
  }

  @media (max-width: 1199px) {
    .activity-list-page .hero-kpis {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .activity-list-page .hero-panel {
      padding: 20px;
      border-radius: 18px;
    }

    .activity-list-page .hero-kpis,
    .activity-list-page .filters-grid {
      grid-template-columns: 1fr;
    }

    .activity-list-page .hero-head {
      margin-bottom: 14px;
    }

    .activity-list-page .hero-icon {
      width: 48px;
      height: 48px;
      border-radius: 14px;
      font-size: 1.3rem;
    }

    .activity-list-page .soft-panel {
      padding: 16px;
      border-radius: 16px;
    }

    .activity-list-page .panel-title {
      font-size: 1.25rem;
    }

    .activity-list-page .sort-control {
      margin-left: 0;
      width: 100%;
      justify-content: flex-start;
      flex-wrap: wrap;
    }

    .activity-list-page .sort-control .form-select {
      width: 100%;
      min-width: 0;
    }
  }
