/* om-os.css - Specifik typografi til "Om os" / artikel layout */

.about-page {
    /* Sikrer vi bruger den samme let hvide baggrund som resten af sitet */
    background-color: var(--bg);
}

.about-hero {
    padding: 60px 0 20px 0;
    text-align: left;
}

.about-content {
    /* Det smalle, læsevenlige læsefelt inspireret af screenshot */
    max-width: 760px;
    margin: 0 auto;
    padding: 20px 20px 100px 20px;
}

.about-section {
    margin-bottom: 32px;
}

.about-section ul {
    margin-bottom: 24px;
    padding-left: 20px;
    color: var(--muted);
}

.about-section li {
    margin-bottom: 8px;
}

/* ===== ARTICLE TEMPLATE STYLES ===== */
.article-page {
    background: var(--bg);
}

.article-wrapper {
    max-width: 780px;
    margin: 0 auto;
    padding: 24px 0 60px 0;
}

.article-hero {
    margin-bottom: 40px;
}

.article-meta-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-soft);
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.author-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-text strong {
    font-size: 15px;
    color: var(--text);
    line-height: 1.2;
}

.author-text span {
    font-size: 13px;
    color: var(--faint);
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--muted);
}

.article-body h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text);
    margin: 56px 0 24px;
    letter-spacing: -0.01em;
}

.article-body h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--text);
    margin: 32px 0 16px;
}

.article-body p {
    margin-bottom: 24px;
}

.article-body img:not(.author-avatar) {
    width: 100%;
    border-radius: var(--radius);
    margin: 32px 0;
    box-shadow: var(--skygge-m);
}

/* Inline Product Card for Affiliates */
.article-product-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: var(--skygge-s);
}

.apc-tag {
    display: inline-block;
    align-self: flex-start;
    background: var(--cta);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: -4px;
}

.apc-title {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
}

.apc-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.apc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    margin-bottom: 8px;
}

.apc-features li::before {
    content: "✓";
    color: var(--primary);
    font-weight: bold;
}

.apc-price-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px dashed var(--border);
}

.apc-price {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--text);
    font-weight: 700;
}

@media (max-width: 600px) {
    .apc-price-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .apc-price-row .btn {
        width: 100%;
    }

    .article-product-card {
        padding: 24px;
    }
}

.about-section h1 {
    font-size: 2.8rem;
    color: var(--fg);
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.about-section h2 {
    font-size: 1.8rem;
    color: var(--fg);
    margin-bottom: 1.2rem;
    font-family: var(--font-display);
    letter-spacing: -0.01em;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.85;
    /* Sikrer god luft mellem linjerne, læsevenligt */
    color: var(--faint);
    margin-bottom: 1.2rem;
}

.about-section strong {
    color: var(--fg);
    font-weight: 600;
}

.about-section em {
    font-style: italic;
    color: var(--fg);
}

/* Responsiv justering */
@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0 10px 0;
    }

    .about-section h1 {
        font-size: 2.2rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
}