.wp-block-minihobby-why-us,
.mh-why-us {
    --mh-why-us-bg: #07070d;
    --mh-why-us-accent: #04c8ff;
    --mh-why-us-text: #f7f7fb;
    --mh-why-us-muted: #9da4df;
    --mh-why-us-border: rgba(142, 148, 190, 0.16);
    box-sizing: border-box;
    width: 100%;
    background: var(--mh-why-us-bg);
    color: var(--mh-why-us-text);
}

.wp-block-minihobby-why-us.alignfull,
.mh-why-us.alignfull {
    width: 100%;
    max-width: none;
}

.mh-why-us *,
.mh-why-us *::before,
.mh-why-us *::after {
    box-sizing: border-box;
}

.mh-why-us__inner {
    width: min(100% - 40px, 1230px);
    margin: 0 auto;
    padding: 78px 0 82px;
}

.mh-why-us__heading {
    margin: 0 auto 50px;
    text-align: center;
}

.mh-why-us__subheader {
    margin-bottom: 12px;
    color: var(--mh-why-us-accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.22em;
    line-height: 1.3;
    text-transform: uppercase;
}

.mh-why-us__title {
    margin: 0;
    color: var(--mh-why-us-text);
    font-size: clamp(30px, 3vw, 40px);
    font-weight: 800;
    line-height: 1.15;
}

.mh-why-us__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.mh-why-us__card {
    min-height: 178px;
    padding: 28px 24px 26px;
    border: 1px solid var(--mh-why-us-border);
    border-radius: 15px;
    background: rgba(5, 6, 14, 0.26);
    transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mh-why-us__card:hover {
    transform: translateY(-3px);
    border-color: rgba(4, 200, 255, 0.52);
    background: rgba(2, 36, 48, 0.34);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.mh-why-us__icon {
    min-height: 34px;
    margin-bottom: 18px;
    color: var(--mh-why-us-accent);
    font-size: 28px;
    line-height: 1;
}

.mh-why-us__icon i {
    display: inline-block;
}

.mh-why-us__card-title {
    margin: 0 0 10px;
    color: var(--mh-why-us-text);
    font-size: 16px;
    font-weight: 800;
    line-height: 1.35;
}

.mh-why-us__card-subtitle {
    margin: 0;
    color: var(--mh-why-us-muted);
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 980px) {
    .mh-why-us__inner {
        padding: 64px 0 68px;
    }

    .mh-why-us__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .mh-why-us__inner {
        width: min(100% - 28px, 1230px);
        padding: 52px 0 56px;
    }

    .mh-why-us__heading {
        margin-bottom: 34px;
    }

    .mh-why-us__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mh-why-us__card {
        min-height: 0;
        padding: 24px 20px;
    }
}
