/**
 * Voco Főoldal Dobozok - Grid Styles
 */

.voco-dobozok-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.voco-doboz-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.voco-doboz-item:hover {
    transform: translateY(-5px);
}

/* Image */
.voco-doboz-image {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: visible;
    position: relative;
}

.voco-doboz-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.voco-doboz-badge {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 53px;
    height: 66px;
    z-index: 2;
    background-color: #f8b90a;
    border-radius: 100%;
}

.voco-doboz-badge img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.voco-doboz-item:hover .voco-doboz-image > img {
    transform: scale(1.05);
}

.voco-doboz-content {
    padding: 40px 10px 0px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.voco-doboz-title {
    margin: 0 0 15px 0;
    color: #333;
    line-height: 1.3;
    font-family: "Montserrat", Sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

.voco-doboz-line {
    width: 100px;
    height: 3px;
    background: #f8b90d;
    margin-bottom: 15px;
}

.voco-doboz-text {
    color: #000000;
    margin-bottom: 20px;
    font-family: "Montserrat", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    text-align: center;
}

.voco-doboz-text p {
    margin: 0 0 10px 0;
}

.voco-doboz-text p:last-child {
    margin-bottom: 0;
}

.voco-doboz-link {
    display: inline-block;
    color: #007cba;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.voco-doboz-link::after {
    content: '→';
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.voco-doboz-link:hover {
    color: #005a87;
}

.voco-doboz-link:hover::after {
    margin-left: 10px;
}

.voco-doboz-link:focus-visible {
    outline: 2px solid #f8b90d;
    outline-offset: 4px;
    border-radius: 3px;
    color: #005a87;
}

/* Akadálymentes, vizuálisan elrejtett szöveg képernyőolvasók számára */
.voco-doboz-link .screen-reader-text,
.voco-dobozok-grid .screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    border: 0;
    word-wrap: normal !important;
}

/* Ha a felhasználó csökkentett mozgást kért, kapcsoljuk ki az animációkat */
@media (prefers-reduced-motion: reduce) {
    .voco-doboz-item,
    .voco-doboz-image > img,
    .voco-doboz-link,
    .voco-doboz-link::after {
        transition: none !important;
    }
    .voco-doboz-item:hover {
        transform: none;
    }
    .voco-doboz-item:hover .voco-doboz-image > img {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .voco-dobozok-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 600px) {
    .voco-dobozok-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .voco-doboz-content {
        padding: 20px;
    }
    
    .voco-doboz-title {
        font-size: 1.1rem;
    }

    .voco-doboz-badge {
    position: absolute;
    bottom: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 53px;
    height: 66px;
    z-index: 2;
    background-color: #f8b90a;
    border-radius: 100%;
}
}
