.et_pb_text_0 h1 {
    font-weight: 600;
    font-size: 27px;
    color: #FFFFFF !important;
    text-shadow: 0.08em 0.08em 0.08em rgba(0, 0, 0, 0.4);
}
.bandeau_categorie.et_pb_section {
    padding: 2%;
}
.hektor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
    font-family: 'Montserrat', 'Helvetica', 'Arial', 'Lucida', sans-serif;
}

.hektor-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.hektor-card__image {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    margin-bottom: 15px;
}

.hektor-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.hektor-card:hover .hektor-card__image img {
    transform: scale(1.05);
}

.hektor-card__secteur {
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    display: block;
    margin-bottom: 8px;
}

.hektor-card__titre {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.hektor-card__prix {
    font-size: 22px;
    color: #262e51;
    font-weight: 300;
}

/* Responsive */
@media (max-width: 768px) {
    .hektor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .hektor-grid {
        grid-template-columns: 1fr;
    }
}