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

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

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

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

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

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

  :where(html:has([data-page-style="documents"])) .docs-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="documents"])) .docs-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="documents"])) .docs-title {
      font-size: 46px;
    }
  }

  :where(html:has([data-page-style="documents"])) .docs-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="documents"])) .docs-lead {
      font-size: 18px;
    }
  }

  :where(html:has([data-page-style="documents"])) .docs-control-section {
    padding: 32px 0 20px;
  }

  :where(html:has([data-page-style="documents"])) .docs-search-bar {
    max-width: 640px;
    margin-bottom: 24px;
    position: relative;
  }

  :where(html:has([data-page-style="documents"])) .docs-search-input {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    width: 100%;
    height: 48px;
    color: var(--color-text-main);
    background: #fff;
    padding: 0 16px 0 44px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color .15s, box-shadow .15s;
  }

  :where(html:has([data-page-style="documents"])) .docs-search-input:focus {
    border-color: var(--color-accent);
    outline: none;
    box-shadow: 0 0 0 3px #0077b626;
  }

  :where(html:has([data-page-style="documents"])) .docs-search-icon {
    color: var(--color-text-muted);
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
  }

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

  :where(html:has([data-page-style="documents"])) .docs-filter-tabs::-webkit-scrollbar {
    display: none;
  }

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

  :where(html:has([data-page-style="documents"])) .docs-filter-tab:hover {
    border-color: var(--color-primary);
  }

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

  :where(html:has([data-page-style="documents"])) .docs-list-section {
    padding: 16px 0 64px;
  }

  :where(html:has([data-page-style="documents"])) .docs-list {
    flex-direction: column;
    gap: 16px;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .doc-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    background: #fff;
    flex-direction: column;
    gap: 16px;
    padding: 20px 24px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
    display: flex;
  }

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

  @media (min-width: 768px) {
    :where(html:has([data-page-style="documents"])) .doc-card {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 22px 28px;
    }
  }

  :where(html:has([data-page-style="documents"])) .doc-main-info {
    flex: 1;
    align-items: flex-start;
    gap: 18px;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .doc-file-badge {
    color: #dc2626;
    border-radius: var(--radius-sm);
    letter-spacing: .05em;
    background: #fee2e2;
    flex-direction: column;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    width: 46px;
    height: 46px;
    font-size: 11px;
    font-weight: 800;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .doc-file-badge svg {
    width: 18px;
    height: 18px;
    margin-bottom: 2px;
  }

  :where(html:has([data-page-style="documents"])) .doc-texts {
    flex-direction: column;
    gap: 4px;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .doc-category-tag {
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--color-accent);
    font-size: 11px;
    font-weight: 700;
  }

  :where(html:has([data-page-style="documents"])) .doc-name {
    color: var(--color-primary);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
  }

  :where(html:has([data-page-style="documents"])) .doc-desc {
    color: var(--color-text-muted);
    font-size: 13px;
    line-height: 1.45;
  }

  :where(html:has([data-page-style="documents"])) .doc-meta {
    color: var(--color-text-muted);
    align-items: center;
    gap: 12px;
    margin-top: 4px;
    font-size: 12px;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .doc-actions {
    flex-shrink: 0;
    align-items: center;
    gap: 12px;
    display: flex;
  }

  :where(html:has([data-page-style="documents"])) .btn-download-doc {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-primary);
    cursor: pointer;
    background: #fff;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
    display: inline-flex;
  }

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

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

  :where(html:has([data-page-style="documents"])) .docs-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    display: grid;
  }

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

  :where(html:has([data-page-style="documents"])) .info-tile {
    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="documents"])) .info-tile-title {
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 800;
  }

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

  :where(html:has([data-page-style="documents"])) .info-tile-link {
    color: var(--color-accent);
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
  }

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

/*# sourceMappingURL=src_features_documents_documents_1n-vjmz.css.map*/