body {
    margin: 0;
    background: #dcdcdc;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

/* MAGAZIN WRAPPER */

.magazine {
    display: flex;
    height: 100vh;
}

/* EINZELNE SEITEN */

.page {
    width: 50%;
    background: white;
    position: relative;
    box-shadow: 0 0 30px rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
}

.left-page {
    border-right: 1px solid #e5e5e5;
}

.page-inner {
    width: 85%;
    padding-top: 60px;
}

/* LOGO */

.logo {
    font-size: 16px;
    letter-spacing: 6px;
    margin-bottom: 40px;
}

/* COLLAGE LINKS */

.editorial-collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.editorial-collage img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* FEATURE RECHTS */

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.feature-text {
    margin-top: 30px;
    max-width: 400px;
}

.feature-text h2 {
    font-size: 20px;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTON */

.mag-button {
    text-decoration: none;
    border: 1px solid black;
    padding: 10px 20px;
    font-size: 12px;
    letter-spacing: 2px;
    color: black;
    transition: 0.2s ease;
}

.mag-button:hover {
    background: black;
    color: white;
}

/* SEITENZAHL */

.page-number {
    position: absolute;
    bottom: 40px;
    right: 60px;
    font-size: 12px;
    letter-spacing: 3px;
    color: #999;
}