/* ==================================================
   Vivateh.md — Pagina producatori
   ================================================== */

.manufacturer-seo {
    --vht-blue: rgb(15, 112, 183);
    --vht-blue-dark: rgb(11, 88, 145);
    --vht-title: #20242a;
    --vht-text: #5b616b;
    --vht-border: #e7e9ed;
    --vht-light: #f7f8fa;
    --vht-white: #ffffff;

    max-width: 1400px;
    margin: 45px auto;
    color: var(--vht-text);
}

.manufacturer-intro,
.manufacturer-bottom {
    position: relative;
    overflow: hidden;
    padding: 42px;
    background: var(--vht-white);
    border: 1px solid var(--vht-border);
    border-radius: 18px;
}

.manufacturer-intro::before,
.manufacturer-bottom::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--vht-blue);
    content: "";
}

.manufacturer-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 13px;
    color: var(--vht-blue);
    background: rgba(15, 112, 183, 0.08);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.manufacturer-seo h2 {
    max-width: 900px;
    margin: 0 0 20px;
    color: var(--vht-title);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
}

.manufacturer-seo h3 {
    margin: 0 0 10px;
    color: var(--vht-title);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
}

.manufacturer-seo p {
    margin: 0 0 16px;
    color: var(--vht-text);
    font-size: 16px;
    line-height: 1.75;
}

.manufacturer-seo p:last-child {
    margin-bottom: 0;
}

/* Carduri avantaje */

.manufacturer-benefits {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 24px 0;
}

.manufacturer-item {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    min-height: 180px;
    padding: 25px;
    background: var(--vht-white);
    border: 1px solid var(--vht-border);
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(26, 33, 44, 0.04);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.manufacturer-item:hover {
    transform: translateY(-4px);
    border-color: rgba(15, 112, 183, 0.35);
    box-shadow: 0 12px 28px rgba(26, 33, 44, 0.09);
}

.manufacturer-icon {
    display: flex;
    flex: 0 0 42px;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: var(--vht-white);
    background: var(--vht-blue);
    border-radius: 12px;
    font-size: 19px;
    font-weight: 700;
    line-height: 1;
    transition: background 0.25s ease;
}

.manufacturer-item:hover .manufacturer-icon {
    background: var(--vht-blue-dark);
}

.manufacturer-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

/* Bloc inferior */

.manufacturer-bottom {
    margin-top: 24px;
    background:
        linear-gradient(
            135deg,
            rgba(15, 112, 183, 0.10),
            rgba(255, 255, 255, 0) 65%
        ),
        var(--vht-white);
}

/* Tableta */

@media (max-width: 991px) {
    .manufacturer-seo {
        margin: 35px 0;
    }

    .manufacturer-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .manufacturer-intro,
    .manufacturer-bottom {
        padding: 34px;
    }

    .manufacturer-seo h2 {
        font-size: 28px;
    }
}

/* Mobil */

@media (max-width: 767px) {
    .manufacturer-seo {
        margin: 25px 0;
    }

    .manufacturer-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .manufacturer-intro,
    .manufacturer-bottom {
        padding: 25px 20px 25px 24px;
        border-radius: 13px;
    }

    .manufacturer-seo h2 {
        font-size: 23px;
        line-height: 1.3;
    }

    .manufacturer-seo h3 {
        font-size: 18px;
    }

    .manufacturer-seo p {
        font-size: 15px;
        line-height: 1.7;
    }

    .manufacturer-item {
        min-height: auto;
        padding: 21px 18px;
        border-radius: 13px;
    }

    .manufacturer-icon {
        flex-basis: 38px;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 17px;
    }
}