
/* Base styles */
body {
    font-family: 'Georgia', serif;
    line-height: 1.4;
    color: #333;
    background: #f9f9f7;
    margin: 0;
    padding: 10px;
}

.magazine {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 40px;
}

/* Header styles */
.magazine-header {
    text-align: center;
    border-bottom: 3px double #333;
    margin-bottom: 30px;
    padding-bottom: 20px;
}

.magazine-title {
    font-family: 'Times New Roman', serif;
    font-size: 4rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.magazine-date {
    font-style: italic;
    color: #666;
}

/* Article styles */
.feature-article {
    margin-bottom: 50px;
}

.article-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: 700;
}

.article-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Magazine layout techniques */
.article-content {
    column-count: 2;
    column-gap: 40px;
    margin-top: 20px;
}

.lead-paragraph {
    font-size: 1.2rem;
    font-weight: bold;
    column-span: all;
    margin-bottom: 20px;
    text-align: left;
}

.feature-image {
    width: 100%;
    margin-bottom: 20px;
    column-span: all;
}

.pull-quote {
    float: right;
    width: 40%;
    margin: 0 0 20px 30px;
    padding: 20px;
    background: #f5f5f5;
    border-left: 3px solid #333;
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.4;
    text-align: left;
}

/* Drop cap */
.article-body p:first-child::first-letter {
    float: left;
    font-size: 4rem;
    line-height: 0.8;
    padding-right: 8px;
    padding-top: 4px;
    font-weight: bold;
}

/* Secondary articles grid */
.secondary-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.secondary-article {
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.secondary-article h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    text-align: left;
}

/* Responsive adjustments */
@media (min-width: 900px) {
    .article-content {
        column-count: 1;
    }

    .article-content img{
        width: auto;
        height: 24rem;
        margin-left: 30px;
        border-radius: 15px;
    }

    .article-content p{
        font-size: 1.3em;
    }

    .secondary-articles {
        grid-template-columns: repeat(2, 1fr);
    }

    .secondary-articles h3, p{
        font-size: 1.3em;
    }
}

@media (max-width: 600px) {
    .secondary-articles {
        grid-template-columns: 1fr;
        text-align: justify;
    }

    .article-content {
        column-count: 1;
        column-gap: 40px;
        margin-top: 20px;
        text-align: justify;
    }

    .article-content img{
        position: relative;
        height: 12rem;
        border-radius: 10px;
        width: auto;
    }

    .magazine-title {
        font-size: 1.4rem;
    }

    .article-title{
        font-size: 1.4rem;
    }


    .pull-quote {
        float: none;
        width: auto;
        margin: 20px 0;
    }
}
