.three-cards-pictures {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.three-cards-pictures__background-split {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.three-cards-pictures__bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #2A4A5C;
}

.three-cards-pictures__bg-bottom {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #F5F5F5;
}

.three-cards-pictures__container {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 10px 40px;
}

.three-cards-pictures__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    max-width: 100%;
    margin: 0 auto;
}

.three-cards-pictures__card {
    background-color: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.three-cards-pictures__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 32px 36px 36px 0;
    text-align: left;
}

.three-cards-pictures__image {
    width: 100%;
    height: 540px;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

.three-cards-pictures__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.three-cards-pictures__card:hover .three-cards-pictures__img {
    transform: scale(1.08);
}

.three-cards-pictures__title {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    color: #EF7D00;
    margin: 0;
    text-align: left;
}

.three-cards-pictures__description {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.6;
    color: #333333;
    margin: 0;
    text-align: left;
}

/* Responsive */
@media (max-width: 1024px) {
    .three-cards-pictures__container {
        padding: 80px 32px;
        max-width: 1200px;
    }
    
    .three-cards-pictures__grid {
        gap: 40px;
        max-width: 100%;
    }
    
    .three-cards-pictures__image {
        height: 480px;
    }

    .three-cards-pictures__content {
        padding: 24px 32px 32px 0;
    }
    
    .three-cards-pictures__title {
        font-size: 24px;
    }
    
    .three-cards-pictures__description {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .three-cards-pictures__container {
        padding: 60px 20px;
    }
    
    .three-cards-pictures__grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 100%;
    }
    
    .three-cards-pictures__image {
        height: 380px;
    }

    .three-cards-pictures__content {
        padding: 20px 24px 24px 0;
    }
    
    .three-cards-pictures__title {
        font-size: 22px;
    }
    
    .three-cards-pictures__description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .three-cards-pictures__container {
        padding: 50px 16px;
    }
    
    .three-cards-pictures__grid {
        gap: 24px;
    }
    
    .three-cards-pictures__image {
        height: 340px;
    }

    .three-cards-pictures__content {
        padding: 16px 20px 20px 0;
    }
    
    .three-cards-pictures__title {
        font-size: 20px;
    }
    
    .three-cards-pictures__description {
        font-size: 15px;
    }
}

/* Editor Preview Mode */
.three-cards-pictures.editor-preview {
    min-height: 400px;
}

/* Full width alignment */
.alignfull.three-cards-pictures {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

/* Wide alignment */
.alignwide.three-cards-pictures {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.alignwide.three-cards-pictures .three-cards-pictures__container {
    max-width: 1280px;
}

