/* ===== КОНТЕЙНЕР ===== */
.dominga-wrapper {
    max-width: 820px;
    width: 100%;
    background: transparent;
    padding: 0;
    margin: 0;
}

.dominga-head{
    color: #b10b1f;
    font-size: 19px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 40px;
}

/* ===== FLEX КОНТЕЙНЕР (2 колонки) ===== */
.dominga-flex {
    display: flex;
    gap: 32px;
    align-items: stretch;
}

/* ===== ЛЕВАЯ КОЛОНКА ===== */
.dominga-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Блок с серым фоном */
.dominga-left-box {
    background-color: #EFEFEF;
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Заголовок DOMINGA */
.dominga-brand {
    font-size: 16px;
    font-weight: 600;
    color: #cc0000;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    text-align: center;
}

/* Текст ссылки */
.dominga-left-link {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
}

.dominga-left-link:hover {
    text-decoration: underline;
}

/* Картинка */
.dominga-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #EFEFEF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}

.dominga-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== ПРАВАЯ КОЛОНКА ===== */
.dominga-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Одна новость */
.dominga-news-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

/* Текстовый блок */
.dominga-news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

/* Тема (категория) */
.dominga-news-topic {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #cc0000;
}

/* Заголовок новости */
.dominga-news-title {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 600;
}

.dominga-news-title:hover {
    text-decoration: underline;
}

/* Картинка новости (маленькая) */
.dominga-news-img {
    width: 100%;
    max-width: 140px;
    background: #d5d8de;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    flex-shrink: 0;
}

.dominga-news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== АДАПТИВ: планшеты и мобильные ===== */
@media (max-width: 768px) {
    .dominga-flex {
        flex-direction: column;
        gap: 28px;
        max-width: 330px;
        margin: 0 auto;
    }

    .dominga-head{
        max-width: 330px;
        margin: 0 auto;
        margin-bottom: 20px;
        margin-top: 40px;
    }

    .dominga-brand {
        font-size: 28px;
    }

    .dominga-left-link {
        font-size: 16px;
    }

    .dominga-news-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .dominga-left-box {
        padding: 12px 14px 16px;
    }

    .dominga-brand {
        font-size: 24px;
    }

    .dominga-left-link {
        font-size: 15px;
    }

    .dominga-news-title {
        font-size: 14px;
    }

    .dominga-news-topic {
        font-size: 11px;
    }

    .dominga-flex {
        gap: 24px;
    }

    .dominga-right {
        gap: 14px;
    }
}

@media (max-width: 360px) {
    .dominga-brand {
        font-size: 20px;
    }

    .dominga-left-link {
        font-size: 14px;
    }

    .dominga-news-title {
        font-size: 13px;
    }
}

.reklama__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 30px;
    color: #b10b1f;
    font-weight: 600;
}

.reklama__title span {
    font-size: 11px;
    color: #000000;
}

/* ===== РЕКЛАМНЫЙ БЛОК ===== */
.reklama-wrapper {
    max-width: 630px;
    width: 100%;
    background: transparent;
    padding: 0;
    margin: 0 auto;
}

/* ===== ГРИД 2×2 ===== */
.reklama-wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px;
    align-items: start;
}

/* ===== КАРТОЧКА ===== */
.reklama-wrapper .card {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

/* Картинка */
.reklama-wrapper .image-placeholder {
    width: 100%;
    background: transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.reklama-wrapper .reklama__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

/* Текст под картинкой */
.reklama-wrapper .card .title {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    line-height: 1.4;
}

.reklama-wrapper .card .title:hover {
    text-decoration: underline;
}

.reklama-wrapper .card .sub {
    font-size: 0.8rem;
    color: #1e2f3f;
    font-weight: 500;
    line-height: 1.3;
}

.reklama-wrapper .brand,
.reklama-wrapper .senior-club {
    font-size: 11px;
    font-weight: 600;
    color: #6f6f6f;
    text-decoration: none;
}

/* для "Se ha demostrado que Dexcom G7..." */
.reklama-wrapper .seguro-social {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    text-decoration: none;
    line-height: 1.4;
}

.reklama-wrapper .seguro-social:hover {
    text-decoration: underline;
}

/* ===== АДАПТИВ: на маленьких экранах — 1 колонка ===== */
@media (max-width: 640px) {
    .reklama-wrapper {
        max-width: 375px;
    }

    .reklama-wrapper .grid {
        grid-template-columns: 1fr;
        gap: 28px 0;
    }

    .reklama-wrapper .card .title {
        font-size: 16px;
    }

    .reklama-wrapper .seguro-social {
        font-size: 16px;
    }
}

@media (max-width: 400px) {
    .reklama-wrapper {
        max-width: 300px;
    }
}