.p3_banner_full_width-title {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin: 0;
    padding: 10px;
    color: #585858;
}

.p3_banner_full_width-subtitle {
    font-size: 18px;
    color: #707070;
    margin: 5px 0 0 0;
    padding: 0 10px;
}

.p3_banner_full_width {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #f9f9f9;
}

.p3_banner_full_width-image_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.p3_banner_full_width-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.p3_banner_full_width-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;     /* по горизонтали */
    align-items: center;         /* по вертикали */
    height: 100%;
    text-align: center;
}

/* Обёртка для текста — чтобы title и subtitle шли вертикально */
.p3_banner_full_width-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px; /* расстояние между title и subtitle */
}



@media (min-width: 1024px) {
    .p3_banner_full_width {
        aspect-ratio: 3 / 1;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    .p3_banner_full_width {
        aspect-ratio: 2 / 1;
    }
}
@media (max-width: 767px) {
    .p3_banner_full_width {
        aspect-ratio: 1.5 / 1;
    }

    .p3_banner_full_width-title {
        font-size: 20px;
    }

    .p3_banner_full_width-subtitle {
        font-size: 16px;
    }
}
