.medical-promotions {
    margin: 56px 0 112px;
    padding: 8px 0 0;
}

.medical-promotions__inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.medical-promotions__title-group {
    margin-bottom: 36px;
    text-align: center;
}

.medical-promotions__title-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 24px;
}

.medical-promotions__title-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color));
}

.medical-promotions__title-wrapper .medical-promotions__title-line:last-child {
    background: linear-gradient(270deg, transparent, var(--border-color));
}

.medical-promotions__title {
    margin: 0;
    color: var(--dark-green);
    font-size: 32px;
    font-weight: 800;
    line-height: 1.1;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.medical-promotions__title-accent {
    width: 60px;
    height: 3px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: var(--accent-red);
}

.medical-promotions__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: stretch;
}

.medical-promotions__card {
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 14px 28px rgba(18, 32, 26, 0.04);
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.medical-promotions__media {
    position: relative;
    width: 100%;
    min-height: 220px;
    background: #f3f6f4;
    overflow: hidden;
}

.medical-promotions__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.medical-promotions__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 12px;
    border-radius: 999px;
    background: #1f5a44;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    z-index: 2;
}

.medical-promotions__image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #8a9690;
    font-size: 14px;
    height: 100%;
}

.medical-promotions__image-placeholder i {
    font-size: 24px;
}

.medical-promotions__content {
    padding: 20px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.medical-promotions__label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-red);
}

.medical-promotions__card-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-color);
}

.medical-promotions__text {
    font-size: 15px;
    line-height: 1.55;
    color: var(--medium-text-color);
}

.medical-promotions__button {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 12px;
    background: #1f5a44;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.medical-promotions__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(29, 80, 60, 0.1);
}

.medical-promotions__button:hover {
    background: var(--accent-red);
    box-shadow: 0 8px 24px rgba(29, 80, 60, 0.32);
    transform: translateY(-2px);
}

.medical-promotions__footer {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.medical-promotions__more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 14px;
    border: 2px solid #1f5a44;
    color: #1f5a44;
    background: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
}

.medical-promotions__more i {
    font-size: 16px;
}

.medical-promotions--editor .medical-promotions__media-controls {
    margin-top: 12px;
}

.medical-promotions--editor .medical-promotions__media-label {
    font-size: 12px;
    color: #6c7b73;
    margin-bottom: 6px;
}

@media (max-width: 768px) {
    .medical-promotions {
        margin: 36px 0 72px;
    }

    .medical-promotions__inner {
        padding: 0 16px;
    }

    .medical-promotions__title-group {
        margin-bottom: 24px;
    }

    .medical-promotions__title-wrapper {
        grid-template-columns: minmax(12px, 1fr) auto minmax(12px, 1fr);
        column-gap: 10px;
    }

    .medical-promotions__title {
        font-size: 24px;
        white-space: normal;
        text-align: center;
    }

    .medical-promotions__title-accent {
        width: 70px;
        margin-top: 10px;
    }

    .medical-promotions__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .medical-promotions__media {
        min-height: 200px;
    }

    .medical-promotions__content {
        padding: 18px 18px 20px;
    }

    .medical-promotions__card-title {
        font-size: 18px;
    }

    .medical-promotions__text {
        font-size: 14px;
    }

    .medical-promotions__footer {
        margin-top: 24px;
    }

    .medical-promotions__more {
        width: 100%;
        justify-content: center;
    }
}
