table {
    tr {
        &:nth-child(even) {
            background: #e3e3e3;
        }

        th {
            text-align: left;
            padding: 0.5rem;
            background: var(--background-accent);
            color: #FFFFFF;
        }

        td {
            padding: 0.5rem;
        }
    }
}

.special-ops-video-wrapper {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-direction: column;

    @media (min-width: 768px) {
        flex-direction: row;
    }
}

.special-ops-slide {
    img{
        height: 40rem;
    }
}

.class-section-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;

    @media (min-width: 768px) {
        grid-template-columns: repeat(3, 1fr);
    }
}

.class-wrapper {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 10px 10px 15px 0px rgba(0,0,0,0.5);
    transition: all 0.1s linear;
    text-decoration: none;
    color: var(--text-base);
    background: #e3e3e3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;

    h3, p {
        margin: 0 0 0.5rem 0;
        padding: 0;
    }

    &:hover {
        box-shadow: 15px 15px 15px 0px rgba(0,0,0,0.5);
        transform: scale(1.05);
        transition: all 0.1s linear;
    }
}