/* 

  GENERAL PAGE STYLES 

*/

html,
body {
    height: 100svh;
}

/*

    MAIN

*/

.main .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "Inter", sans-serif;
}

.main {
    min-height: calc(100svh - var(--navbar-height) - var(--footer-height) - var(--footer-margin));

    h1 {
        font-weight: 600;
        font-size: 3.75rem;
        margin-top: 0.7em;
        margin-bottom: 0.7em;
    }

    .content {
        display: flex;
        flex-direction: column;
        gap: 0.3em;
        padding: 0 1em;
        width: 100%;
        max-width: 45em;

        .post-link {
            background-color: #ffffff11;
            width: 100%;
            color: white;
            padding: 1em;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 0.5em;
            transition: background-color 0.2s;

            &:hover {
                background-color: #ffffff22;
            }

            .post-title {
                font-size: 1.5em;
            }

            .post-date {
                width: 10em;
                height: 100%;
                text-align: end;
                color: #ccc;
            }
        }
    }
}

@media (max-width: 800px) {
    .main {
        h1 {
            font-size: min(12vw, 4em);
            margin-top: 0.4em;
            margin-bottom: 0.4em;
        }

        .content .post-link {
            .post-title {
                font-size: 1.2em;
            }

            .post-date {
                width: 12em;
            }
        }
    }
}
