section.documents {
    color: #fff;
    width: 100dvi;
    min-height: fit-content;
    height: fit-content !important;
    padding-top: 100px;
    padding-bottom: 100px;

    .doc-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px;
        margin-top: 50px;

        .document-card {
            background: var(--bg-lighter);
            color: black;
            border-radius: 10px;
            padding: 20px;
            width: 300px;
            min-height: 180px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 5px 5px 15px var(--shadow);
            transition: transform 0.3s ease;

            h2 {
                font-size: 1.5em;
                color: var(--nav-after);
                margin-bottom: 10px;
            }

            embed, img {
                height: 300px;
                margin-bottom: 15px;
                border-radius: 5px;
            }

            .btn {
                background-color: var(--nav-after);
                color: white;
                padding: 10px 20px;
                border-radius: 5px;
                text-decoration: none;
                transition: background-color 0.3s ease;

                &:hover {
                    background-color: darken(var(--nav-after), 10%);
                    color: black;
                }
            }

            &:hover {
                transform: translateY(-5px);
            }
        }
    }
}

section.documents {
    height: auto;
}