.es-container-5019e6d4 {
    padding: 20px 0;
}

.es-section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.es-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.es-item {
    text-align: center;
}

.es-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.es-image-wrap {
    overflow: hidden;
    margin-bottom: 15px;
    aspect-ratio: 3/4;
    background: #f0f0f0;
}

.es-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.es-item:hover .es-image-wrap img {
    transform: scale(1.05);
}

.es-item-title {
    margin: 0;
    font-size: 1.2rem;
    font-weight: normal;
}