/* About V2 Block - aligned with test.html .about-section / .company, tokens from css/src/main.css */

.wp-block-truckpoint-aboutv2 {
    padding: 58px 40px;
    background: #fff;
}

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

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

.aboutv2-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);
    margin-bottom: 10px;
}

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

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

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

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

.company {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 28px;
    align-items: center;
    max-width: 940px;
    margin: 0 auto;
    box-shadow: 0 20px 44px rgba(8, 40, 70, .06);
}

.owner {
    position: relative;
    height: 190px;
    border-radius: 15px;
    background: linear-gradient(135deg, #dde7f4, #cdd9ec);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.owner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-placeholder {
    color: #8ea1ba;
    font-size: 12px;
    text-align: center;
    padding: 8px;
    font-weight: 500;
}

.facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 26px;
    font-family: var(--font-body);
}

.fact b {
    display: block;
    color: var(--ink);
    font-weight: 700;
    font-size: 14.5px;
}

.fact span {
    font-size: 13px;
    color: var(--grey);
}

.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 28px;
}

.seal {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 11px 16px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 9px;
    transition: transform .15s;
    font-family: var(--font-body);
}

.seal:hover {
    transform: translateY(-2px);
}

.seal-icon {
    color: var(--acc-2);
    font-weight: 800;
}

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

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

    .company {
        grid-template-columns: 1fr;
        padding: 20px;
    }

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