﻿.academic-magazine {
    background-color: #fdfdfd;
    color: #2d2d2d;
    overflow-x: hidden;
}

.spread {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5vw;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 15vh 5vw;
    min-height: 80vh;
    border-bottom: 1px solid #e0e0e0;
}

.left-page {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.giant-letter {
    font-size: clamp(18rem, 40vw, 35rem);
    font-weight: 700;
    color: rgba(0, 0, 0, 0.04);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}

.left-page h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #1a1a1a;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
}

.right-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

    .right-page h4 {
        font-weight: 700;
        font-size: 1.5rem;
        color: #1a1a1a;
        margin-top: 2rem;
        margin-bottom: 0.5rem;
    }

        .right-page h4:first-child {
            margin-top: 0;
        }

    .right-page p, .right-page ul {
        margin-bottom: 1.5rem;
    }

.features-list, .skills-list {
    list-style: none;
    padding-left: 0;
}

    .features-list li, .skills-list li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 0.5rem;
    }

        .features-list li::before, .skills-list li::before {
            content: '▪';
            position: absolute;
            left: 0;
            color: #bca071;
            font-size: 1.2em;
        }

.multi-column {
    column-count: 2;
    column-gap: 3rem;
}
    .multi-column h4 {
        column-span: all;
    }

@media (max-width: 992px) {
    .spread {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 10vh 5vw;
    }

    .left-page {
        min-height: 30vh;
        text-align: left;
    }

    .giant-letter {
        font-size: 18rem;
        left: 0;
        transform: translate(0, -50%);
    }

    .left-page h2 {
        text-align: left;
    }

    .multi-column {
        column-count: 1;
    }
}
