/* Advantages V2 - aligned with test.html .benefits-section, tokens from css/src/main.css */

.wp-block-truckpoint-advantagesv2 {
    padding: 58px 40px;
}

.advantagesv2-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.advantagesv2-center {
    text-align: center;
    margin-bottom: 36px;
}

.advantagesv2-center .section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--brand);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-family: var(--font-head);
    background: none;
    padding: 0;
    margin-bottom: 10px;
}

.advantagesv2-center .section-label:before,
.advantagesv2-center .section-label:after {
    content: "";
    width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--brand));
}

.advantagesv2-center .section-label:after {
    background: linear-gradient(90deg, var(--brand), transparent);
}

.section-title {
    font-family: var(--font-head);
    font-size: 32px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.8px;
    margin: 10px 0 8px;
}

.section-subtitle {
    font-family: var(--font-body);
    color: var(--grey);
    font-size: 15px;
    max-width: 560px;
    margin: 0 auto;
}

.vorteile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.vorteil-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    overflow: hidden;
    transition: transform .18s, box-shadow .18s, border .18s;
}

.vorteil-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(47, 140, 255, .06), transparent 60%);
    opacity: 0;
    transition: opacity .18s;
}

.vorteil-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px rgba(8, 40, 70, .1);
    border-color: #cfe0fb;
}

.vorteil-card:hover:before {
    opacity: 1;
}

.vorteil-icon-wrap {
    position: relative;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--tint), #dcebff);
    color: var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.vorteil-icon-wrap .ico {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.vorteil-title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin: 15px 0 6px;
}

.vorteil-text {
    font-family: var(--font-body);
    font-size: 13.5px;
    color: var(--grey);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .wp-block-truckpoint-advantagesv2 {
        padding: 48px 20px;
    }

    .section-title {
        font-size: 26px;
    }

    .vorteile-grid {
        grid-template-columns: 1fr;
    }
}
