/* Homepage company introduction and manufacturing strength only. */
.woao-company-strength,
.woao-company-strength * {
    box-sizing: border-box;
}

.woao-company-strength {
    --woao-primary: #0a63a8;
    --woao-dark: #084f87;
    --woao-light: #eff7fc;
    --woao-red: #d71f18;
    --woao-text: #1f2937;
    --woao-muted: #526274;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    background: #ffffff;
    color: var(--woao-text);
}

.woao-company-strength p:empty,
.woao-company-strength br {
    display: none;
}

.woao-company-strength__inner {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.woao-company-strength__intro {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: center;
}

.woao-company-strength__copy {
    min-width: 0;
}

.woao-company-strength__eyebrow {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 0 18px;
    color: var(--woao-red);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
}

.woao-company-strength__eyebrow::before {
    width: 28px;
    height: 2px;
    margin-right: 10px;
    background: var(--woao-red);
    content: "";
}

.woao-company-strength h2 {
    margin: 0 0 22px;
    padding: 0;
    color: var(--woao-dark);
    font-size: clamp(32px, 3.2vw, 42px);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
}

.woao-company-strength__body {
    max-width: 650px;
    margin: 0;
    color: var(--woao-muted);
    font-size: 17px;
    line-height: 1.85;
}

.woao-company-strength__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.woao-company-strength__button {
    display: inline-flex;
    min-width: 126px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border: 1px solid var(--woao-primary);
    border-radius: 5px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
    transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.woao-company-strength__button--primary {
    background: var(--woao-primary);
    color: #ffffff;
}

.woao-company-strength__button--primary:hover {
    border-color: var(--woao-dark);
    background: var(--woao-dark);
    color: #ffffff;
}

.woao-company-strength__button--secondary {
    background: #ffffff;
    color: var(--woao-primary);
}

.woao-company-strength__button--secondary:hover {
    border-color: var(--woao-dark);
    background: var(--woao-light);
    color: var(--woao-dark);
}

.woao-company-strength__button:focus-visible {
    outline: 3px solid rgba(39, 140, 198, 0.45);
    outline-offset: 3px;
}

.woao-company-strength__media {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 0 0 18px 18px;
}

.woao-company-strength__media::before {
    position: absolute;
    inset: 18px 18px 0 0;
    z-index: 0;
    border-radius: 8px;
    background: var(--woao-primary);
    content: "";
}

.woao-company-strength__image {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    object-position: center;
}

.woao-company-strength__media figcaption {
    position: absolute;
    right: 18px;
    bottom: 0;
    z-index: 2;
    padding: 8px 12px;
    border-radius: 4px 0 6px 0;
    background: rgba(8, 79, 135, 0.94);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.woao-company-strength__stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin: 54px 0 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid #cfe4f2;
    border-radius: 8px;
    background: var(--woao-light);
}

.woao-company-strength__stat {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 132px;
    flex-direction: column-reverse;
    justify-content: center;
    padding: 24px 22px;
    text-align: center;
}

.woao-company-strength__stat + .woao-company-strength__stat {
    border-left: 1px solid #cfe4f2;
}

.woao-company-strength__stat dt {
    margin: 7px 0 0;
    color: var(--woao-text);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.woao-company-strength__stat dd {
    margin: 0;
    color: var(--woao-red);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 750;
    line-height: 1.1;
}

@media (max-width: 1080px) {
    .woao-company-strength {
        padding: 68px 24px;
    }

    .woao-company-strength__intro {
        gap: 40px;
    }
}

@media (max-width: 767px) {
    .woao-company-strength {
        padding: 56px 20px;
    }

    .woao-company-strength__intro {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }

    .woao-company-strength h2 {
        font-size: clamp(30px, 8.2vw, 36px);
    }

    .woao-company-strength__body {
        font-size: 16px;
        line-height: 1.78;
    }

    .woao-company-strength__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .woao-company-strength__button {
        width: 100%;
        min-width: 0;
        min-height: 48px;
        padding-right: 14px;
        padding-left: 14px;
    }

    .woao-company-strength__media {
        padding: 0 0 14px 14px;
    }

    .woao-company-strength__media::before {
        inset: 14px 14px 0 0;
    }

    .woao-company-strength__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 40px;
    }

    .woao-company-strength__stat {
        min-height: 116px;
        padding: 20px 12px;
    }

    .woao-company-strength__stat + .woao-company-strength__stat {
        border-left: 0;
    }

    .woao-company-strength__stat:nth-child(even) {
        border-left: 1px solid #cfe4f2;
    }

    .woao-company-strength__stat:nth-child(n + 3) {
        border-top: 1px solid #cfe4f2;
    }
}

@media (max-width: 370px) {
    .woao-company-strength {
        padding-right: 16px;
        padding-left: 16px;
    }

    .woao-company-strength__eyebrow {
        font-size: 12px;
        letter-spacing: 0.05em;
    }

    .woao-company-strength h2 {
        font-size: 29px;
    }

    .woao-company-strength__actions {
        grid-template-columns: minmax(0, 1fr);
    }

    .woao-company-strength__stat dt {
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .woao-company-strength__button {
        transition: none;
    }
}
