.guides-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
}

.enews-vguide {
    position: relative;
    transform: none;
    display: block;
    border: 2px solid var(--off-white);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    color: var(--off-white);
    text-decoration: none !important;
    text-align: center;
    transition: transform var(--transition);
}

.enews-vguide::before {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
    background-color: rgba(10, 60, 78, 0.5);
    content: '';
    pointer-events: none;
    transition: background-color var(--transition);
}

.enews-vguide .content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
}

.enews-vguide .icon {
    width: 100%;
    max-width: 44px;
}

.enews-vguide .icon svg {
    width: 100%;
    fill: var(--off-white);
    transition: fill var(--transition);
}

.enews-vguide .icon svg :is(path, rect) {
    fill: var(--off-white);
    transition: fill var(--transition);
}

.enews-vguide .title {
    font-family: var(--giorgio);
    font-weight: var(--font-weight-heavy);
    font-size: 1.9375rem;
    letter-spacing: 0.03em;
    line-height: 1;
    color: inherit;
    text-transform: uppercase;
}

.enews-vguide .title small {
    display: block;
    margin-bottom: 8px;
    font-family: var(--typewriter);
    font-weight: normal;
    font-size: 0.8125rem;
    letter-spacing: 0.2em;
    text-transform: none;
}

.enews-vguide .bg-cont,
.enews-vguide .bg-cont .slide-img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (hover: hover) {
    .enews-vguide:hover {
        transform: translateY(-7px);
        color: var(--off-white);
    }

    .enews-vguide:hover::before {
        background-color: rgba(57, 157, 157, 0.9);
    }

    .enews-vguide:hover .icon :is(svg, path, rect) {
        fill: var(--yellow);
    }
}

@media (min-width: 40em) {
    /* ensure default is the 1:3 layout, with 1 large section and 3 smaller ones on the right */
    .guides-grid,
    .grid-1-3 .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .guides-grid,
    .grid-1-3 .guides-grid > *:first-child {
        grid-row: span 3;
    }
    
    .grid-2-2 .guides-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: repeat(2, minmax(0, 1fr));
    }
    
    .grid-2-2 .guides-grid > *:first-child {
        grid-row: 1;
    }

    .enews-vguide,
    .enews-vguide .content {
        height: 100%;
    }
}

@media (min-width: 64em) {
    .enews-vguide .title {
        font-size: 1.65rem;
    }
}

@media (min-width: 90em) {
    .enews-vguide .title {
        font-size: 2.125rem;
    }

    .enews-vguide .title small {
        margin: 0;
        font-size: 0.875rem;
    }

    .intro-side-by-side .enews-vguide .icon {
        max-width: 58px;
    }

    .intro-side-by-side .enews-vguide .title {
        font-size: 2.5rem;
    }

    .intro-side-by-side .enews-vguide .title small {
        font-size: 1.0625rem;
    }
}