* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, "Times New Roman", serif;
    background: #f5f2eb;
    color: #171717;
    line-height: 1.6;
}


/* ================= HEADER ================= */

.site-header {
    background: #111;
    color: white;
}

.top-bar {
    max-width: 1250px;
    margin: auto;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
}

.brand-name span {
    font-weight: normal;
}

.tagline {
    margin-top: 3px;
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    opacity: 0.7;
}

.header-date {
    font-family: Arial, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
}

/* ================= BRAND LOGO ================= */

/* Horizontal logo used in the Digital Edition header */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.brand-logo img {
    width: 290px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Full official logo used in the Digital Edition hero */
.digital-edition-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 22px;
}

.digital-edition-logo img {
    width: 190px;
    max-width: 55vw;
    height: auto;
    display: block;
}

/* Small brand icon used on the Issue 001 cover */
.cover-logo {
    display: flex;
    justify-content: center;
    margin: 24px 0 -35px;
}

.cover-logo img {
    width: 82px;
    height: 82px;
    object-fit: contain;
    display: block;
}



/* ================= NAVIGATION ================= */

.main-nav {
    border-top: 1px solid #333;
    display: flex;
    justify-content: center;
    gap: 45px;
    padding: 15px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.main-nav a:hover {
    opacity: 0.65;
}


/* ================= HERO ================= */

.hero {
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    background:
        linear-gradient(
            rgba(245, 242, 235, 0.88),
            rgba(245, 242, 235, 0.88)
        ),
        radial-gradient(
            circle at center,
            #ffffff,
            #ded9cf
        );

    border-bottom: 1px solid #ccc;
}

.hero-content {
    max-width: 850px;
    padding: 40px 20px;
}

.edition-label {
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(48px, 8vw, 100px);
    line-height: 0.95;
    letter-spacing: 3px;
}

.hero h2 {
    margin-top: 15px;
    font-size: 27px;
    font-weight: normal;
    font-style: italic;
}

.hero-description {
    margin: 30px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 2;
}


/* ================= BUTTONS ================= */

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 13px 23px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.25s;
}

.primary-button {
    background: #111;
    color: white;
}

.primary-button:hover {
    background: #333;
}

.secondary-button {
    border: 1px solid #111;
    color: #111;
}

.secondary-button:hover {
    background: #111;
    color: white;
}


/* ================= COMMON SECTION ================= */

.latest-section,
.categories,
.archive-section,
.about-section {
    max-width: 1250px;
    margin: auto;
    padding: 90px 30px;
}

.section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.section-heading span {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: bold;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 12px 0;
}

.section-heading p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
}


/* ================= ISSUE ================= */

.issue-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}


/* ================= COVER ================= */

.issue-cover {
    background: #111;
    color: white;
    min-height: 610px;
    padding: 25px;
    box-shadow: 12px 12px 0 #cfc9bd;
    display: flex;
    flex-direction: column;
}

.cover-top {
    display: flex;
    justify-content: space-between;
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
    border-bottom: 1px solid #555;
    padding-bottom: 15px;
}

.cover-middle {
    text-align: center;
    margin-top: 70px;
}

.cover-small {
    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
}

.cover-middle h3 {
    font-size: 62px;
    line-height: 0.95;
    margin: 18px 0;
    letter-spacing: 2px;
}

.cover-subtitle {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    line-height: 2;
}

.cover-story {
    margin-top: auto;
    padding: 25px 0;
    border-top: 1px solid #555;
}

.cover-story span {
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
}

.cover-story h4 {
    font-size: 28px;
    line-height: 1.1;
    margin: 8px 0;
}

.cover-story p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    opacity: 0.75;
}

.cover-bottom {
    border-top: 1px solid #555;
    padding-top: 15px;
    text-align: center;
    font-family: Arial, sans-serif;
    font-size: 8px;
    letter-spacing: 2px;
}


/* ================= ISSUE INFO ================= */

.issue-info {
    max-width: 520px;
}

.issue-number {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: bold;
}

.issue-info h2 {
    font-size: 48px;
    line-height: 1.05;
    margin: 15px 0 25px;
}

.issue-info > p:not(.issue-number) {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #555;
}

.issue-details {
    display: flex;
    gap: 35px;
    margin: 35px 0;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}

.issue-details div {
    display: flex;
    flex-direction: column;
}

.issue-details strong {
    font-size: 27px;
}

.issue-details span {
    font-family: Arial, sans-serif;
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.issue-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}


/* ================= CATEGORIES ================= */

.categories {
    max-width: none;
    background: #111;
    color: white;
}

.categories .section-heading p {
    color: #aaa;
}

.category-grid {
    max-width: 1190px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    background: #444;
}

.category-card {
    background: #111;
    padding: 35px 25px;
    min-height: 300px;
}

.category-number {
    font-family: Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 2px;
    opacity: 0.5;
}

.category-card h3 {
    font-size: 28px;
    margin: 30px 0 15px;
}

.category-card p {
    font-family: Arial, sans-serif;
    font-size: 13px;
    color: #aaa;
}

.category-card a {
    display: inline-block;
    margin-top: 25px;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 11px;
    text-decoration: none;
    letter-spacing: 1px;
}


/* ================= ARCHIVE ================= */

.archive-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.archive-card {
    background: white;
    border: 1px solid #ddd;
    display: flex;
    min-height: 250px;
}

.archive-cover {
    width: 42%;
    background: #111;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 26px;
    line-height: 1;
}

.archive-content {
    padding: 25px;
}

.archive-content span {
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    color: #777;
}

.archive-content h3 {
    font-size: 23px;
    line-height: 1.15;
    margin: 15px 0;
}

.archive-content a {
    color: #111;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: bold;
    text-decoration: none;
}

.archive-content p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    color: #777;
}

.coming-soon {
    opacity: 0.6;
}


/* ================= ABOUT ================= */

.about-section {
    max-width: none;
    background: #ded9cf;
}

.about-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.about-content h2 {
    font-size: 50px;
    line-height: 1.05;
    margin-bottom: 30px;
}

.about-content p:not(.edition-label) {
    font-family: Arial, sans-serif;
    font-size: 15px;
    color: #555;
    margin-top: 15px;
}


/* ================= FOOTER ================= */

.site-footer {
    background: #111;
    color: white;
    padding: 50px 30px;
    text-align: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand img {
    width: 270px;
    max-width: 80vw;
    height: auto;
    margin: 0 auto;
    display: block;
}


.footer-brand strong {
    font-size: 24px;
    letter-spacing: 2px;
}

.footer-brand span {
    font-family: Arial, sans-serif;
    font-size: 9px;
    letter-spacing: 3px;
    opacity: 0.6;
}

.footer-links {
    margin: 25px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.copyright {
    font-family: Arial, sans-serif;
    font-size: 10px;
    opacity: 0.5;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    .issue-container {
        grid-template-columns: 1fr;
    }

    .issue-info {
        max-width: none;
    }

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

    .archive-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .brand-logo img {
        width: 235px;
    }

    .digital-edition-logo img {
        width: 145px;
        max-width: 60vw;
    }

    .cover-logo {
        margin: 18px 0 -28px;
    }

    .cover-logo img {
        width: 64px;
        height: 64px;
    }

    .footer-brand img {
        width: 230px;
    }

    .top-bar {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .main-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .hero {
        min-height: 450px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero h2 {
        font-size: 21px;
    }

    .latest-section,
    .categories,
    .archive-section,
    .about-section {
        padding: 60px 20px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .issue-cover {
        min-height: 500px;
    }

    .cover-middle {
        margin-top: 50px;
    }

    .cover-middle h3 {
        font-size: 45px;
    }

    .issue-info h2 {
        font-size: 38px;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .archive-card {
        flex-direction: column;
    }

    .archive-cover {
        width: 100%;
        min-height: 130px;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

}