/* =====================================================
   Article Standalone Page — was-deutsches-fernsehen-verbirgt.php
   ===================================================== */

/* Breadcrumb */
.article-breadcrumb {
    background: var(--bg-surface);
    border-bottom: 1px solid var(--border);
    padding: 0.7rem 0;
    font-size: 0.82rem;
    color: var(--text-muted);
}
.article-breadcrumb nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.article-breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}
.article-breadcrumb a:hover { color: var(--primary); }
.article-breadcrumb .fa-chevron-right { font-size: 0.65rem; opacity: 0.5; }

/* Hero text block */
.art-hero {
    background: var(--bg-surface);
    padding: 3rem 0 2rem;
    border-bottom: 1px solid var(--border);
}
.art-hero__inner { max-width: 820px; }
.art-hero__label {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3em 0.9em;
    border-radius: 2em;
    margin-bottom: 1rem;
}
.art-hero__title {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
}
.art-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.art-hero__meta i { margin-right: 0.35rem; color: var(--primary); }

/* Hero image */
.art-hero__image-wrap {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    background: #111;
}
.art-hero__image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    object-position: center 30%;
    display: block;
}

/* Body layout */
.art-body {
    padding: 3rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr;
}
.art-content {
    max-width: 780px;
}
.art-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.4rem;
}
.art-content h2 {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.art-content strong { color: var(--text-primary); }
.art-intro {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-primary);
    border-left: 4px solid var(--primary);
    padding-left: 1.25rem;
    margin-bottom: 1.75rem;
}
.art-quote {
    background: rgba(26,86,219,0.09);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 1.25rem 1.75rem;
    margin: 2rem 0;
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Highlight box */
.art-highlight-box {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin: 1.75rem 0;
}
.art-highlight-box__icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.art-highlight-box strong {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}
.art-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.art-highlight-box ul li {
    font-size: 0.92rem;
    color: var(--text-secondary);
    padding-left: 1.1rem;
    position: relative;
}
.art-highlight-box ul li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--danger);
    font-weight: 700;
}

/* Content cards */
.art-content-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.75rem 0;
}
.art-content-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.35rem;
}
.art-content-card__icon {
    width: 40px;
    height: 40px;
    background: rgba(26,86,219,0.12);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 0.85rem;
}
.art-content-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
}
.art-content-card p {
    font-size: 0.87rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* Checklist */
.art-checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.art-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}
.art-checklist li .fa-check {
    color: #22c55e;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

/* Product recommendations */
.art-products-section {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 4rem 0;
}
.art-products-section__title {
    font-family: var(--font-display, 'Syne', sans-serif);
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 0.5rem;
    text-align: center;
}
.art-products-section__sub {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}
.art-products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.art-product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s, box-shadow 0.2s;
}
.art-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.art-product-card__img-wrap {
    background: #fff;
    aspect-ratio: 4/3;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.art-product-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    transition: transform 0.3s;
}
.art-product-card:hover .art-product-card__img-wrap img { transform: scale(1.04); }
.art-product-card__body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.art-product-card__brand {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.art-product-card__name {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.35;
}
.art-product-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex: 1;
}
.art-product-card__price {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
}
.btn--full { width: 100%; justify-content: center; }

/* CTA Section */
.art-cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #4f46e5 100%);
    padding: 2rem 0;
}
.art-cta-section__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.art-cta-section__label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    margin: 0 0 0.35rem;
}
.art-cta-section__phone {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.art-cta-section__phone a { color: #fff; text-decoration: none; }
.art-cta-section__phone i { margin-right: 0.4rem; }
.art-cta-section .btn--primary {
    background: #fff;
    color: var(--primary);
    font-weight: 700;
    white-space: nowrap;
}
.art-cta-section .btn--primary:hover { background: rgba(255,255,255,0.9); }

/* Responsive */
@media (max-width: 900px) {
    .art-content-cards { grid-template-columns: 1fr; }
    .art-products-grid  { grid-template-columns: 1fr; }
    .art-cta-section__inner { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .art-hero { padding: 2rem 0 1.5rem; }
    .art-hero__image-wrap img { height: 220px; }
    .art-hero__meta { gap: 0.75rem; font-size: 0.78rem; }
}
