:root {
    --linen: #f5ebe0ff;
    --yale-blue: #274f71ff;
    --prussian-blue: #0b1428ff;
    --cherry-rose: #9e053dff;
    --grape-soda: #9d2f80ff;
}

/* Article Card */
.article-card {
    background-color: var(--linen);
    padding: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
}

/* Article Header */
.article-header {
    text-align: center;
    margin-bottom: 48px;
}

.article-meta {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--cherry-rose);
    margin-bottom: 24px;
}

.meta-divider {
    margin: 0 8px;
}

.article-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--prussian-blue);
}

.article-subtitle {
    font-size: 20px;
    color: var(--yale-blue);
    line-height: 1.5;
    margin-bottom: 32px;
}

.author-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 20, 40, 0.2);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--prussian-blue);
    color: var(--linen);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.author-details {
    text-align: left;
}

.author-name {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--prussian-blue);
}

.author-bio {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 13px;
    color: var(--yale-blue);
}

/* Article Body */
.article-body {
    max-width: 620px;
    margin: 0 auto;
    font-family: Georgia, 'Times New Roman', serif;
    line-height: 1.8;
    font-size: 17px;
}

.article-body p {
    margin-bottom: 24px;
    color: var(--prussian-blue);
}

/* Drop Cap */
.drop-cap {
    position: relative;
}

.drop-cap-letter {
    float: left;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 72px;
    line-height: 60px;
    font-weight: 700;
    margin-right: 8px;
    margin-top: 4px;
}

/* Section Headings */
.section-heading {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--prussian-blue);
}

/* Links */
.article-body a {
    color: var(--cherry-rose);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: var(--grape-soda);
}

/* Lists */
.article-body ul,
.article-body ol {
    margin: 24px 0;
    padding-left: 32px;
}

.article-body li {
    margin-bottom: 12px;
}

/* Strong Text */
.article-body strong {
    font-weight: 700;
    color: var(--prussian-blue);
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .article-card {
        padding: 32px 20px;
    }

    .article-header {
        text-align: left;
        margin-bottom: 32px;
    }

    .article-meta {
        text-align: center;
    }

    .article-title {
        font-size: 28px;
    }

    .article-subtitle {
        font-size: 18px;
    }

    .author-info {
        justify-content: flex-start;
    }

    .article-body {
        max-width: 100%;
        font-size: 16px;
    }

    .drop-cap-letter {
        font-size: 56px;
        line-height: 48px;
    }

    .section-heading {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
    }

    .article-subtitle {
        font-size: 16px;
    }

    .article-card {
        padding: 24px 16px;
    }
}

