/* Full-page background */
body {
    margin: 0;
    min-height: 100vh;
    padding: 3rem 0;


    display: flex;
    justify-content: center;
    align-items: flex-start;

    color: #222;
}

/* Frosted glass panel */
.glass-panel {
    width: min(90%, 1000px); /* reduced from 1100px */
    padding: 3rem;
    border-radius: 10px 2px 2px 2px;

    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    border-top: 6px solid rgba(220, 240, 255, 0.95);
    border-left: 6px solid rgba(200, 230, 255, 0.75);
    border-right: 1px solid rgba(255, 255, 255, 0.20);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    box-shadow:
            inset 2px 2px 6px rgba(255, 255, 255, 0.35),
            inset -2px -2px 6px rgba(0, 0, 0, 0.05),
            0 30px 80px rgba(0, 0, 0, 0.25),
            0 10px 25px rgba(0, 0, 0, 0.10);

    position: relative;
    z-index: 5;

}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 2rem;
}

.site-logo {
    display: block;
    width: 400px;
    max-width: 100%;
    height: auto;
}

.main-nav {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.25rem;
}

.main-nav a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav .material-symbols-outlined {
    font-size: 2rem;
    line-height: 1;
}

/* Edition Header */
.edition-header {
    margin-bottom: 2rem;
}

/* Two-column layout */
.homepage-layout {
    display: grid;
    grid-template-columns: 1.75fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.homepage-main > section,
.homepage-sidebar > section {
    margin-bottom: 2rem;
}


/* Images */
.cover-story__image {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;

    box-shadow:
            0 6px 18px rgba(0, 0, 0, 0.12),
            0 2px 6px rgba(0, 0, 0, 0.08);
}

.cover-story__title {
    text-wrap: balance;
}

.featured-attraction__image {
    display: block;
    width: 140px;
    height: auto;
    margin: 0 auto 1rem;
}

/* Footer */
.homepage-footer {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.homepage-footer__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.homepage-footer__logo {
    display: block;
    width: 150px;
    height: auto;
}

.homepage-footer__text {
    margin: 0;
}

.homepage-footer__text a {
    font-weight: 600;
}

.featured-columns .material-symbols-outlined {
    font-size: 1em;
    vertical-align: -0.1em;
    margin-right: 0.15em;
}

.edition-sponsor {
    margin-top: 2rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.edition-sponsor__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.edition-sponsor__text {
    margin: 0;
}

.edition-sponsor__logo {
    display: block;
    width: 150px; /* 50% of original 300px logo */
    height: auto;
}