/* [project]/src/features/news-detail/news-detail.css [app-client] (css) */
@layer components {
  :where(html:has([data-page-style="news-detail"])) .article-header-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-detail"])) .article-header-section {
      padding: 48px 0 36px;
    }
  }

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

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

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

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

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

  :where(html:has([data-page-style="news-detail"])) .article-tag-row {
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .article-badge {
    text-transform: uppercase;
    letter-spacing: .08em;
    border-radius: var(--radius-xs);
    color: #fff;
    background: #dc2626;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="news-detail"])) .article-title {
    letter-spacing: -.02em;
    color: var(--color-primary);
    max-width: 860px;
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
  }

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

  :where(html:has([data-page-style="news-detail"])) .article-meta-bar {
    color: var(--color-text-muted);
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .meta-item {
    align-items: center;
    gap: 6px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .article-body-section {
    padding: 36px 0 64px;
  }

  :where(html:has([data-page-style="news-detail"])) .article-container {
    max-width: 800px;
    margin: 0 auto;
  }

  :where(html:has([data-page-style="news-detail"])) .article-lead-media {
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    background: var(--color-bg-alt);
    margin-bottom: 32px;
    overflow: hidden;
  }

  :where(html:has([data-page-style="news-detail"])) .article-lead-img {
    object-fit: cover;
    width: 100%;
    height: auto;
    max-height: 480px;
    display: block;
  }

  :where(html:has([data-page-style="news-detail"])) .article-lead-caption {
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    background: #fff;
    padding: 12px 18px;
    font-size: 13px;
    line-height: 1.4;
  }

  :where(html:has([data-page-style="news-detail"])) .article-lead-text {
    color: var(--color-primary);
    margin-bottom: 28px;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
  }

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

  :where(html:has([data-page-style="news-detail"])) .article-content p {
    color: var(--color-text-main);
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
  }

  :where(html:has([data-page-style="news-detail"])) .article-content h2 {
    color: var(--color-primary);
    margin: 36px 0 16px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
  }

  @media (min-width: 768px) {
    :where(html:has([data-page-style="news-detail"])) .article-content h2 {
      font-size: 26px;
    }
  }

  :where(html:has([data-page-style="news-detail"])) .article-content ul {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    padding-left: 20px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .article-content li {
    color: var(--color-text-main);
    font-size: 15px;
    line-height: 1.6;
  }

  :where(html:has([data-page-style="news-detail"])) .warning-alert-box {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #d97706;
    margin: 32px 0;
    padding: 20px 24px;
  }

  :where(html:has([data-page-style="news-detail"])) .warning-alert-title {
    color: #92400e;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 800;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .warning-alert-title svg {
    color: #d97706;
    flex-shrink: 0;
  }

  :where(html:has([data-page-style="news-detail"])) .warning-alert-text {
    color: #b45309;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-block {
    background-color: var(--color-bg-alt);
    border-left: 4px solid var(--color-accent);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 36px 0;
    padding: 24px 28px;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-text {
    color: var(--color-primary);
    margin-bottom: 16px;
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-author-row {
    align-items: center;
    gap: 14px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-author-avatar {
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-author-name {
    color: var(--color-primary);
    font-size: 14px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="news-detail"])) .quote-author-role {
    color: var(--color-text-muted);
    font-size: 12px;
  }

  :where(html:has([data-page-style="news-detail"])) .inline-media-box {
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin: 32px 0;
    overflow: hidden;
  }

  :where(html:has([data-page-style="news-detail"])) .inline-media-img {
    object-fit: cover;
    width: 100%;
    height: 280px;
    display: block;
  }

  :where(html:has([data-page-style="news-detail"])) .inline-media-caption {
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    padding: 10px 16px;
    font-size: 13px;
    line-height: 1.4;
  }

  :where(html:has([data-page-style="news-detail"])) .emergency-contacts-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    background: #f8fafc;
    margin: 36px 0;
    padding: 24px;
  }

  :where(html:has([data-page-style="news-detail"])) .emergency-card-title {
    color: var(--color-primary);
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 18px;
    font-weight: 800;
    display: flex;
  }

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

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

  :where(html:has([data-page-style="news-detail"])) .emergency-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #fff;
    flex-direction: column;
    padding: 14px 16px;
    display: flex;
  }

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

  :where(html:has([data-page-style="news-detail"])) .emergency-val {
    color: #dc2626;
    font-size: 16px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="news-detail"])) .article-footer-meta {
    border-top: 1px solid var(--color-border);
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
  }

  @media (min-width: 600px) {
    :where(html:has([data-page-style="news-detail"])) .article-footer-meta {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
  }

  :where(html:has([data-page-style="news-detail"])) .tags-list {
    flex-wrap: wrap;
    gap: 6px;
    display: flex;
  }

  :where(html:has([data-page-style="news-detail"])) .tag-item {
    color: var(--color-text-muted);
    background: var(--color-bg-alt);
    border-radius: var(--radius-pill);
    padding: 4px 10px;
    font-size: 12px;
    text-decoration: none;
  }

  :where(html:has([data-page-style="news-detail"])) .tag-item:hover {
    color: var(--color-text-main);
    background: #e2e8f0;
  }

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

  :where(html:has([data-page-style="news-detail"])) .share-btn {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-primary);
    cursor: pointer;
    background: #fff;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    transition: all .15s;
    display: inline-flex;
  }

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

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

  :where(html:has([data-page-style="news-detail"])) .related-header {
    margin-bottom: 28px;
  }

  :where(html:has([data-page-style="news-detail"])) .related-title {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 800;
  }

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

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

  :where(html:has([data-page-style="news-detail"])) .related-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-detail"])) .related-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
  }

  :where(html:has([data-page-style="news-detail"])) .related-media {
    background: var(--color-bg-alt);
    height: 140px;
  }

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

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

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

  :where(html:has([data-page-style="news-detail"])) .related-heading {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
  }
}

/*# sourceMappingURL=src_features_news-detail_news-detail_04ozsse.css.map*/