/* ==========================================================================
   style.css — Components, cards, badges, buttons, visual styles
   ========================================================================== */

/* Card */
.work-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.work-card:hover { box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12); transform: translateY(-2px); }
.work-card a { color: inherit; text-decoration: none; display: block; }
.work-card a:hover { text-decoration: none; }

/* Card — image */
.work-card-img-wrap { position: relative; overflow: hidden; }
.work-card-img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
}

/* Card — badges overlay */
.work-card-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.work-card-badge {
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.4;
    width: fit-content;
}
.work-card-badge--sale { background: #ef4444; }
.work-card-badge--free { background: #10b981; }
.work-card-badge--new { background: #7c3aed; }
.work-card-badge--tachiyomi { background: #a855f7; }

/* Card — body */
.work-card-body {
    padding: 10px 12px 12px;
}
.work-card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(13px * 1.4 * 2);
    margin-bottom: 4px;
}
.work-card-meta {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
    min-height: calc(12px * 1.4);
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.work-card-meta a { color: #7c3aed; }

/* Card — footer (price / date) */
.work-card-footer {
    padding-top: 4px;
    font-size: 13px;
    font-weight: 700;
    min-height: calc(13px * 1.4);
}
.work-card-price-sale { color: #ef4444; }
.work-card-price-original { font-size: 11px; color: #9ca3af; font-weight: 400; text-decoration: line-through; margin-left: 4px; }
.work-card-price-free { color: #10b981; font-weight: 700; }
.work-card-price-normal { color: #1e1e2e; }
.work-card-date { font-size: 11px; color: #9ca3af; font-weight: 400; }

/* Badge */
.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    background: #f3f4f6;
    color: #4b5563;
}
.badge-primary { background: linear-gradient(135deg, #fce4ec, #ede9fe); color: #7c3aed; }
.badge-sale { background: #fef2f2; color: #ef4444; }
.badge-free { background: #ecfdf5; color: #10b981; }
.badge-inline { margin-right: 4px; margin-bottom: 4px; }

/* Genre chips */
.genre-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.genre-chip {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    transition: all 0.15s;
}
.genre-chip:hover { background: linear-gradient(135deg, #fce4ec, #ede9fe); border-color: #d8b4fe; color: #7c3aed; text-decoration: none; }
.genre-chip-count { color: #9ca3af; font-size: 12px; margin-left: 4px; }

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}
.pagination a, .pagination span {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
}
.pagination a { background: #fff; border: 1.5px solid #e5e7eb; color: #334155; }
.pagination a:hover { background: #ede9fe; border-color: #c4b5fd; color: #7c3aed; text-decoration: none; }
.pagination .current { background: linear-gradient(135deg, #f43f7a, #7c3aed); color: #fff; font-weight: 600; }
.pagination .disabled { color: #d1d5db; pointer-events: none; }

/* Breadcrumbs */
.breadcrumbs {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}
.breadcrumbs a { color: #7c3aed; }
.breadcrumbs span { margin: 0 6px; }

/* Button */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
}
.btn-primary { background: linear-gradient(135deg, #f43f7a, #7c3aed); color: #fff; }
.btn-primary:hover { opacity: 0.9; text-decoration: none; }
.btn-outline { background: transparent; border: 1.5px solid #d8b4fe; color: #7c3aed; }
.btn-outline:hover { background: #ede9fe; text-decoration: none; }

/* Work detail — hero backdrop */
.work-hero {
    background: #1a1025;
    padding: 32px 0 48px;
    margin-bottom: 0;
}
.work-hero .breadcrumbs { color: #9ca3af; }
.work-hero .breadcrumbs a { color: #c4b5fd; }

/* Work detail — image */
.work-main-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #2d1f3d;
}

/* Work detail — campaign badge (in hero) */
.work-campaign-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    background: #ef4444;
    color: #fff;
    margin-bottom: 10px;
}

/* Work detail — title area (in hero) */
.work-title-area { margin-bottom: 20px; }
.work-title-area h1 {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 12px;
}
.work-meta-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.work-meta-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 500;
    background: rgba(255,255,255,0.1);
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.08);
}
.work-meta-tag a { color: #c4b5fd; }
.work-meta-tag a:hover { color: #fff; text-decoration: none; }
.work-meta-tag-label { color: #9ca3af; margin-right: 2px; }

/* Work detail — rating (in hero) */
.work-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(251, 191, 36, 0.15);
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}
.work-rating-stars {
    color: #fbbf24;
    font-size: 16px;
    letter-spacing: 1px;
}
.work-rating-score {
    font-weight: 800;
    font-size: 15px;
    color: #fbbf24;
}
.work-rating .count { color: #9ca3af; font-size: 12px; }

/* Work detail — purchase card */
.work-purchase-card {
    background: #fff;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    margin-top: -32px;
    position: relative;
    z-index: 10;
    margin-bottom: 32px;
}
.work-purchase-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.work-price-area {}
.work-price-main {
    font-size: 2rem;
    font-weight: 900;
    color: #1e1e2e;
    line-height: 1.2;
}
.work-price-main.sale { color: #ef4444; }
.work-price-main.free { color: #10b981; }
.work-price-original {
    font-size: 13px;
    color: #94a3b8;
    margin-top: 4px;
}
.work-price-original del { margin-right: 8px; }
.work-sale-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    background: #ef4444;
    color: #fff;
}
.work-sale-end { font-size: 12px; color: #94a3b8; margin-top: 4px; }

/* Work detail — CTA group */
.work-cta-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 16px; }

/* Work detail — CTA */
.work-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 999px;
    background: linear-gradient(135deg, #f43f7a, #7c3aed);
    color: #fff;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.35);
    transition: all 0.2s;
    white-space: nowrap;
}
.work-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.45);
    text-decoration: none;
    color: #fff;
}
.work-cta-arrow { font-size: 18px; }

/* Tachiyomi (trial reading) CTA */
.work-cta--tachiyomi {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.35);
}
.work-cta--tachiyomi:hover {
    box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45);
}

/* Work detail — content sections below hero */
.work-intro-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.7;
    margin-top: 24px;
    margin-bottom: 0;
    padding: 14px 16px;
    background: #f9fafb;
    border-radius: 8px;
    border-left: 3px solid #e5e7eb;
}
.work-content { padding-top: 40px; }

/* Re-CTA section */
.work-re-cta {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e5e7eb;
}
.work-re-cta-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.work-re-cta-buttons .work-cta {
    flex: 1;
    min-width: 180px;
    text-align: center;
}

/* Highlight + Summary side-by-side */
.work-editorial-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.work-editorial-row .work-editorial { margin-bottom: 0; }

/* Work detail — description */
.work-description {
    font-size: 14px;
    line-height: 1.9;
    color: #334155;
    margin-bottom: 32px;
}

/* Editorial / AI content blocks */
.work-editorial {
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 20px;
    font-size: 14px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}
.work-editorial h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px;
}
.work-editorial p { line-height: 1.8; color: #475569; }
.work-editorial ul { padding-left: 20px; margin: 8px 0; }
.work-editorial li { margin-bottom: 6px; color: #475569; line-height: 1.7; }

/* Editorial — highlight */
.work-editorial--highlight h3 { color: #b45309; border-color: #fde68a; }
.work-editorial--highlight { border-left: 4px solid #f59e0b; }

/* Editorial — summary */
.work-editorial--summary h3 { color: #7c3aed; border-color: #e9d5ff; }
.work-editorial--summary { border-left: 4px solid #7c3aed; }

/* Editorial — FAQ */
.work-editorial--faq h3 { color: #166534; border-color: #bbf7d0; }
.work-editorial--faq { border-left: 4px solid #10b981; }

/* Editorial — editor comment */
.work-editorial--editor h3 { color: #92400e; border-color: #fde68a; }
.work-editorial--editor { border-left: 4px solid #f59e0b; }
.work-editorial--editor li { color: #78350f; }

/* FAQ items */
.faq-item { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid #f3f4f6; }
.faq-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.faq-question { font-weight: 700; margin-bottom: 6px; color: #166534; }
.faq-answer { color: #475569; line-height: 1.8; }

/* Editorial extras */
.editorial-recommended { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f3f4f6; }
.editorial-caution { margin-top: 8px; color: #b91c1c; }

/* Related section "more" link */
.related-more { text-align: center; margin-top: 12px; }

/* Utility */
.text-secondary { font-size: 14px; color: #6b7280; margin-bottom: 12px; }
.text-empty { color: #6b7280; text-align: center; padding: 48px 0; }
.text-center { text-align: center; }
.mt-sm { margin-top: 12px; }
.mt-xs { margin-top: 4px; }
.mb-sm { margin-bottom: 12px; }
.fw-bold { font-weight: 700; }
.link-unstyled { color: inherit; text-decoration: none; }
.link-unstyled:hover { text-decoration: none; }

/* Home — hero */
.home-hero {
    background: #1a1025;
    padding: 52px 20px 44px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 24px 24px;
    margin-bottom: 8px;
}
.home-hero h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1.4;
}
.home-hero h1 br { display: none; }
.home-hero p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}
.home-hero p br { display: none; }
.home-hero .stat {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}
.home-hero .stat-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.7);
    margin-left: 4px;
}

/* Home — collection nav grid */
.home-collection-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 24px 0 32px;
}
.collection-nav-count { font-size: 12px; color: #9ca3af; margin-left: 4px; }

/* Home — section "more" link */
.home-section-more { text-align: center; margin-top: 16px; }

/* Home — sections */
.home-section { margin-bottom: 40px; }
.home-section h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid #f43f7a;
}

/* Collection pages (sale, free, new) — hero */
.collection-hero {
    background: #1a1025;
    padding: 44px 20px 36px;
    text-align: center;
    color: #fff;
    border-radius: 0 0 24px 24px;
    margin-bottom: 8px;
}
.collection-hero .breadcrumbs { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.collection-hero .breadcrumbs a { color: rgba(255,255,255,0.9); }
.collection-hero h1 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.collection-hero p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
}
.collection-hero-stat { display: inline-block; }
.collection-hero-stat .stat {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.collection-hero-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-left: 4px;
}

/* Collection — nav links */
.collection-nav { margin-top: 48px; margin-bottom: 16px; }
.collection-nav-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}
.collection-nav-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 12px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    font-weight: 600;
    font-size: 15px;
    color: #1e1e2e;
    transition: all 0.15s;
}
.collection-nav-card:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.collection-nav-card--sale:hover { border-color: #fca5a5; background: #fef2f2; }
.collection-nav-card--free:hover { border-color: #6ee7b7; background: #ecfdf5; }
.collection-nav-card--new:hover { border-color: #c4b5fd; background: #ede9fe; }
.collection-nav-card--tachiyomi:hover { border-color: #f0abfc; background: #fdf4ff; }
.collection-nav-icon { font-size: 1.4rem; }

/* Related chips */
.related-chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* Sale banner */
.sale-banner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #fef2f2, #fff7ed);
    border: 1.5px solid #fecaca;
    border-radius: 12px;
    color: #dc2626;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.15s;
}
.sale-banner:hover { border-color: #f87171; background: #fef2f2; text-decoration: none; color: #b91c1c; }
.sale-banner span:first-child { font-size: 1.2rem; }

/* Link accent */
.link-accent { color: #7c3aed; font-weight: 500; }
.link-accent:hover { color: #6d28d9; }

/* Page header */
/* Page hero (genre/author/series detail) */
.page-hero {
    background: #1a1025;
    padding: 32px 0 36px;
    margin-bottom: 0;
    color: #fff;
}
.page-hero h1 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.page-hero .breadcrumbs { color: #9ca3af; margin-bottom: 12px; }
.page-hero .breadcrumbs a { color: #c4b5fd; }
.page-hero-intro {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}
.page-hero-author { font-size: 14px; color: #c4b5fd; margin-bottom: 4px; }
.page-hero-author a { color: #c4b5fd; }

/* Summary bar */
.summary-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.summary-item {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}
.summary-item--link { transition: all 0.15s; }
.summary-item--link:hover { border-color: #d8b4fe; background: #faf5ff; text-decoration: none; }
.summary-value { font-size: 22px; font-weight: 700; color: #1e1e2e; }
.summary-value--sale { color: #ef4444; }
.summary-value--tachiyomi { color: #7c3aed; }
.summary-label { font-size: 13px; color: #6b7280; }
.summary-icon { font-size: 16px; line-height: 1; }

/* Grid caption */
.grid-caption {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

/* Related section sub text */
.related-section-sub {
    font-size: 13px;
    color: #9ca3af;
    margin-top: -8px;
    margin-bottom: 12px;
}

/* Related background section */
.related-bg {
    background: #f8f7ff;
    padding: 40px 0;
    margin-top: 40px;
}

/* Mini card grid */
.mini-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}
.mini-card {
    display: block;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #7c3aed;
    border-radius: 8px;
    transition: all 0.15s;
    color: inherit;
}
.mini-card:hover { border-left-color: #f43f7a; box-shadow: 0 2px 8px rgba(124,58,237,0.08); text-decoration: none; }
.mini-card-name { font-size: 14px; font-weight: 600; line-height: 1.4; margin-bottom: 2px; }
.mini-card-meta { font-size: 12px; color: #9ca3af; }

/* Nav card grid */
.nav-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 12px;
}
.nav-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    color: inherit;
    transition: all 0.15s;
}
.nav-card:hover { border-color: #d8b4fe; box-shadow: 0 4px 12px rgba(124,58,237,0.08); text-decoration: none; }
.nav-card--sale:hover { border-color: #fca5a5; }
.nav-card--new:hover { border-color: #c4b5fd; }
.nav-card--tachiyomi:hover { border-color: #f0abfc; }
.nav-card-icon { font-size: 1.5rem; flex-shrink: 0; }
.nav-card-label { font-size: 15px; font-weight: 600; }
.nav-card-sub { font-size: 12px; color: #9ca3af; margin-top: 1px; }

/* 2-column detail layout */
.detail-two-col {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}
.work-grid--large { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
.work-grid--half { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.work-grid--4col { grid-template-columns: repeat(4, 1fr); gap: 12px; }

/* Side sections */
.detail-two-col-side {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.side-section {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.side-section-title {
    font-size: 12px;
    font-weight: 700;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f3f4f6;
}
.side-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.genre-chip--sm { padding: 5px 12px; font-size: 13px; }
.side-info-list { display: flex; flex-direction: column; gap: 6px; }
.side-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    transition: background 0.15s;
}
.side-info-row:hover { background: #f3f4f6; }
.side-info-label { color: #6b7280; font-size: 13px; }
.side-info-value { font-weight: 600; color: #1e1e2e; }
.side-info-value--accent { color: #7c3aed; }
.side-info-value--sale { color: #ef4444; }
.side-nav-links { display: flex; flex-direction: column; gap: 6px; }
.side-nav-link {
    display: block;
    padding: 10px 14px;
    background: #f9fafb;
    border-radius: 8px;
    font-size: 14px;
    color: #334155;
    transition: all 0.15s;
}
.side-nav-link:hover { background: #ede9fe; color: #7c3aed; text-decoration: none; }

/* Featured card (2-col layout for ≤2 works) */
.featured-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: box-shadow 0.2s, transform 0.2s;
}
.featured-card:hover { box-shadow: 0 8px 24px rgba(124,58,237,0.12); transform: translateY(-2px); }
.featured-card a { color: inherit; text-decoration: none; }
.featured-card-img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
    border-radius: 12px 12px 0 0;
}
.featured-card-body {
    padding: 14px 16px;
}
.featured-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
    color: #1e1e2e;
}
.featured-card-title:hover { color: #7c3aed; text-decoration: none; }
.featured-card-price {
    font-size: 14px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

@media (max-width: 768px) {
    .detail-two-col { grid-template-columns: 1fr; }
    .work-grid--4col { grid-template-columns: repeat(3, 1fr); }
    .mini-card-grid { grid-template-columns: 1fr 1fr; }
    .nav-card-grid { grid-template-columns: 1fr 1fr; }
    .summary-bar { gap: 8px; }
    .summary-item { padding: 8px 14px; }
    .summary-value { font-size: 18px; }
    .home-hero { padding: 36px 16px 30px; border-radius: 0 0 16px 16px; }
    .home-hero h1 { font-size: 1.3rem; }
    .home-hero h1 br, .home-hero p br { display: inline; }
    .home-collection-nav { grid-template-columns: repeat(2, 1fr); }
    .work-editorial-row { grid-template-columns: 1fr; }
    .collection-hero { padding: 32px 16px 28px; border-radius: 0 0 16px 16px; }
    .collection-hero h1 { font-size: 1.3rem; }
    .page-hero { padding: 24px 16px 28px; }
    .page-hero h1 { font-size: 1.3rem; }
}
