/* [project]/src/features/news/news.css [app-client] (css) */
@layer components {
  :where(html:has([data-page-style="news"])) .news-hero-section {
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 32px 0 24px;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .news-hero-section {
      padding: 48px 0 32px;
    }
  }

  :where(html:has([data-page-style="news"])) .news-breadcrumbs {
    margin-bottom: 16px;
    font-size: 13px;
  }

  :where(html:has([data-page-style="news"])) .news-breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
  }

  :where(html:has([data-page-style="news"])) .news-breadcrumbs a:hover {
    color: var(--color-primary);
  }

  :where(html:has([data-page-style="news"])) .news-breadcrumbs span {
    color: var(--color-border);
    margin: 0 8px;
  }

  :where(html:has([data-page-style="news"])) .news-breadcrumbs .current {
    color: var(--color-text-main);
    font-weight: 500;
  }

  :where(html:has([data-page-style="news"])) .news-eyebrow {
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-accent);
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 700;
    display: block;
  }

  :where(html:has([data-page-style="news"])) .news-main-title {
    letter-spacing: -.025em;
    color: var(--color-primary);
    margin-bottom: 14px;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .news-main-title {
      font-size: 46px;
    }
  }

  :where(html:has([data-page-style="news"])) .news-hero-lead {
    color: var(--color-text-muted);
    max-width: 780px;
    font-size: 16px;
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .news-hero-lead {
      font-size: 18px;
    }
  }

  :where(html:has([data-page-style="news"])) .featured-news-section {
    padding: 32px 0 48px;
  }

  :where(html:has([data-page-style="news"])) .featured-news-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    color: inherit;
    background: #fff;
    flex-direction: column;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, border-color .2s;
    display: flex;
    overflow: hidden;
  }

  :where(html:has([data-page-style="news"])) .featured-news-card:hover {
    box-shadow: var(--shadow-md);
    border-color: #cbd5e1;
    transform: translateY(-3px);
  }

  @media (min-width: 900px) {
    :where(html:has([data-page-style="news"])) .featured-news-card {
      flex-direction: row;
      align-items: stretch;
    }
  }

  :where(html:has([data-page-style="news"])) .featured-media {
    background-color: var(--color-bg-alt);
    height: 240px;
    position: relative;
  }

  @media (min-width: 900px) {
    :where(html:has([data-page-style="news"])) .featured-media {
      width: 52%;
      height: auto;
      min-height: 340px;
    }
  }

  :where(html:has([data-page-style="news"])) .featured-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  :where(html:has([data-page-style="news"])) .featured-tag {
    text-transform: uppercase;
    letter-spacing: .05em;
    border-radius: var(--radius-xs);
    color: #fff;
    background: #dc2626;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 16px;
    left: 16px;
  }

  :where(html:has([data-page-style="news"])) .featured-content {
    flex-direction: column;
    flex: 1;
    justify-content: center;
    padding: 24px;
    display: flex;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .featured-content {
      padding: 36px 40px;
    }
  }

  :where(html:has([data-page-style="news"])) .featured-meta-row {
    color: var(--color-text-muted);
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .featured-dot {
    background: var(--color-text-muted);
    border-radius: 50%;
    width: 4px;
    height: 4px;
  }

  :where(html:has([data-page-style="news"])) .featured-title {
    color: var(--color-primary);
    letter-spacing: -.015em;
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .featured-title {
      font-size: 28px;
    }
  }

  :where(html:has([data-page-style="news"])) .featured-excerpt {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 15px;
    line-height: 1.6;
  }

  :where(html:has([data-page-style="news"])) .featured-btn {
    color: var(--color-accent);
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .featured-btn svg {
    transition: transform .15s;
  }

  :where(html:has([data-page-style="news"])) .featured-news-card:hover .featured-btn svg {
    transform: translateX(4px);
  }

  :where(html:has([data-page-style="news"])) .news-filters-wrapper {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
    background: #fff;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .filter-group {
    flex-direction: column;
    gap: 10px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .filter-group-header {
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .filter-group-title {
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="news"])) .filter-reset-btn {
    color: var(--color-accent);
    cursor: pointer;
    background: none;
    border: none;
    align-items: center;
    gap: 4px;
    padding: 0;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .filter-reset-btn:hover {
    text-decoration: underline;
  }

  :where(html:has([data-page-style="news"])) .news-filters-bar {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    align-items: center;
    gap: 8px;
    padding-bottom: 4px;
    display: flex;
    overflow-x: auto;
  }

  :where(html:has([data-page-style="news"])) .news-filters-bar::-webkit-scrollbar {
    display: none;
  }

  :where(html:has([data-page-style="news"])) .news-filter-btn {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    color: var(--color-text-main);
    cursor: pointer;
    white-space: nowrap;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .news-filter-btn:hover {
    border-color: var(--color-primary);
    background: #fff;
  }

  :where(html:has([data-page-style="news"])) .news-filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
  }

  :where(html:has([data-page-style="news"])) .news-card-location {
    color: var(--color-accent);
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.children {
    background: #059669;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.adults {
    background: #475569;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.workshops {
    background: #7c3aed;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.promotions {
    background: #d97706;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.cinema {
    background: #4f46e5;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.entertainment {
    background: #0284c7;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.exhibitions {
    background: #0d9488;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.partners {
    background: #6366f1;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.sights {
    background: #0f766e;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.food {
    background: #ea580c;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.paid {
    background: #334155;
  }

  :where(html:has([data-page-style="news"])) .news-catalog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
    display: grid;
  }

  @media (min-width: 640px) {
    :where(html:has([data-page-style="news"])) .news-catalog-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    :where(html:has([data-page-style="news"])) .news-catalog-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
  }

  :where(html:has([data-page-style="news"])) .news-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: inherit;
    box-shadow: var(--shadow-sm);
    background: #fff;
    flex-direction: column;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    display: flex;
    overflow: hidden;
  }

  :where(html:has([data-page-style="news"])) .news-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
  }

  :where(html:has([data-page-style="news"])) .news-card-media {
    background-color: var(--color-bg-alt);
    height: 180px;
    position: relative;
  }

  :where(html:has([data-page-style="news"])) .news-card-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag {
    text-transform: uppercase;
    letter-spacing: .05em;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: var(--radius-xs);
    background: #0b2238d9;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 700;
    position: absolute;
    top: 12px;
    left: 12px;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.safety {
    background: #dc2626;
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.culture {
    background: var(--color-accent);
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.sport {
    background: var(--color-park-green);
  }

  :where(html:has([data-page-style="news"])) .news-card-tag.infra {
    background: #d97706;
  }

  :where(html:has([data-page-style="news"])) .news-card-body {
    flex-direction: column;
    flex: 1;
    padding: 20px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .news-card-date {
    color: var(--color-text-muted);
    margin-bottom: 8px;
    font-size: 12px;
  }

  :where(html:has([data-page-style="news"])) .news-card-title {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
  }

  :where(html:has([data-page-style="news"])) .news-card-excerpt {
    color: var(--color-text-muted);
    flex: 1;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.5;
  }

  :where(html:has([data-page-style="news"])) .news-card-link-text {
    color: var(--color-accent);
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .news-card-link-text svg {
    transition: transform .15s;
  }

  :where(html:has([data-page-style="news"])) .news-card:hover .news-card-link-text svg {
    transform: translateX(3px);
  }

  :where(html:has([data-page-style="news"])) .load-more-wrap {
    text-align: center;
    margin-bottom: 64px;
  }

  :where(html:has([data-page-style="news"])) .btn-load-more {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    color: var(--color-primary);
    cursor: pointer;
    background: #fff;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    transition: all .15s;
    display: inline-flex;
  }

  :where(html:has([data-page-style="news"])) .btn-load-more:hover {
    border-color: var(--color-primary);
    background: var(--color-bg-alt);
  }

  :where(html:has([data-page-style="news"])) .press-section {
    background-color: var(--color-bg-warm);
    border-top: 1px solid var(--color-border);
    padding: 48px 0;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .press-section {
      padding: 64px 0;
    }
  }

  :where(html:has([data-page-style="news"])) .press-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    display: grid;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news"])) .press-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }
  }

  :where(html:has([data-page-style="news"])) .press-box {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #fff;
    flex-direction: column;
    padding: 28px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .press-box-title {
    color: var(--color-primary);
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 800;
  }

  :where(html:has([data-page-style="news"])) .press-box-desc {
    color: var(--color-text-muted);
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  :where(html:has([data-page-style="news"])) .subscribe-form {
    flex-direction: column;
    gap: 10px;
    display: flex;
  }

  @media (min-width: 480px) {
    :where(html:has([data-page-style="news"])) .subscribe-form {
      flex-direction: row;
    }
  }

  :where(html:has([data-page-style="news"])) .subscribe-input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    flex: 1;
    height: 44px;
    padding: 0 14px;
    font-family: inherit;
    font-size: 14px;
  }

  :where(html:has([data-page-style="news"])) .subscribe-input:focus {
    border-color: var(--color-accent);
    outline: none;
  }

  :where(html:has([data-page-style="news"])) .subscribe-submit {
    background: var(--color-accent);
    color: #fff;
    border-radius: var(--radius-md);
    cursor: pointer;
    white-space: nowrap;
    border: none;
    height: 44px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 700;
    transition: background .15s;
  }

  :where(html:has([data-page-style="news"])) .subscribe-submit:hover {
    background: var(--color-accent-hover);
  }

  :where(html:has([data-page-style="news"])) .telegram-cta-row {
    color: var(--color-text-muted);
    margin-top: 14px;
    font-size: 13px;
  }

  :where(html:has([data-page-style="news"])) .telegram-link {
    color: var(--color-accent);
    font-weight: 600;
    text-decoration: none;
  }

  :where(html:has([data-page-style="news"])) .telegram-link:hover {
    text-decoration: underline;
  }

  :where(html:has([data-page-style="news"])) .contacts-list {
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
    list-style: none;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .contacts-item {
    color: var(--color-text-main);
    align-items: flex-start;
    gap: 10px;
    display: flex;
  }

  :where(html:has([data-page-style="news"])) .contacts-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
  }
}

/*# sourceMappingURL=src_features_news_news_03yj0i3.css.map*/