.common-problems {
    width: 100%;
    background: #fff;
}

.common-problems__inner {
    width: min(calc(100% - 40px), 1170px);
    margin-inline: auto;
    padding: 0 0 48px;
    color: #313132;
    background: #fff;
}

.common-problems__heading-row {
    position: relative;
    display: flex;
    min-height: 184px;
    margin-bottom: 96px;
    padding: 18px 24px 14px 250px;
}

.common-problems__heading-row::before {
    position: absolute;
    z-index: 0;
    inset: 0;
    background: #487c4d;
    box-shadow: 0 0 0 100vmax #487c4d;
    clip-path: inset(0 -100vmax);
    content: "";
}

.common-problems__heading-row > img {
    position: absolute;
    z-index: 1;
    bottom: -87px;
    left: 18px;
    display: block;
    width: 174px;
    height: 210px;
    object-fit: contain;
}

.common-problems__heading {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    color: #fff;
}

.common-problems__heading > p {
    margin: 0 0 10px;
    color: #aee2aa;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.common-problems__heading h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 700;
    line-height: 1.15;
}

.common-problems__intro-toggle {
    display: block;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    font: inherit;
    text-align: left;
}

.common-problems__intro-toggle > span { display: none; }

.common-problems__intro {
    display: block;
    color: rgb(255 255 255 / 78%);
    font-size: 15px;
    line-height: 1.65;
}

.common-problems__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.common-problems__grid article {
    min-height: 124.28125px;
    padding: 22px;
    border: 1px solid #d9e2ee;
    border-radius: 10px;
    background: #edf5ff;
}

.common-problems__item-toggle {
    display: grid;
    width: 100%;
    align-items: start;
    padding: 0;
    border: 0;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 15px;
    color: #313132;
    background: transparent;
    font: inherit;
    text-align: left;
}

.common-problems__number {
    display: grid;
    width: 38px;
    height: 38px;
    box-sizing: border-box;
    place-items: center;
    border: 1px solid #d9e2ee;
    border-radius: 10px;
    color: #3d9738;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
}

.common-problems__item-toggle h3 {
    margin: 0 0 6px;
    color: #343b36;
    font-size: 17px;
    font-weight: 700;
    line-height: normal;
}

.common-problems__chevron { display: none; }

.common-problems__grid article > p {
    margin: 0 0 0 53px;
    color: #68716a;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 900px) and (min-width: 601px) {
    .common-problems__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
    .common-problems__inner {
        width: calc(100% - 36px);
        padding-bottom: 48px;
    }

    .common-problems__heading-row {
        display: block;
        height: auto;
        min-height: 152px;
        margin-bottom: 24px;
        padding: 172px 0 0;
        cursor: pointer;
        transition: margin-bottom 280ms ease;
    }

    .common-problems__heading-row.has-open-intro { margin-bottom: 24px; }

    .common-problems__heading-row::before {
        right: 0;
        left: 0;
        width: 100%;
        height: 152px;
        bottom: auto;
        transform: none;
    }

    .common-problems__heading-row > img {
        top: 28px;
        bottom: auto;
        left: -8px;
        width: 136px;
        height: 168px;
    }

    .common-problems__heading-row > img.is-wide { max-width: 104px; }

    .common-problems__heading {
        position: static;
        display: contents;
        width: 0;
        height: 0;
    }

    .common-problems__heading > p {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
        margin: 0 8px 0 139px;
        color: #4b9846;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .common-problems__heading h2 {
        position: absolute;
        top: 76px;
        right: 7px;
        left: 128px;
        margin: 0;
        font-size: 20px;
        line-height: 1.16;
        transform: translateY(-50%);
    }

    .common-problems__intro-toggle {
        position: relative;
        display: inline-block;
        width: auto;
    }

    .common-problems__intro-toggle > span {
        display: inline-block;
        width: 9px;
        height: 9px;
        margin-left: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        vertical-align: .15em;
        transform: rotate(45deg);
        transition: transform 280ms ease;
    }

    .common-problems__intro-toggle[aria-expanded="true"] > span { transform: rotate(225deg); }

    .common-problems__intro {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        display: grid;
        margin: 0 14px;
        max-height: none;
        overflow: visible;
        opacity: 0;
        color: #68716a;
        font-size: 13px;
        line-height: 1.65;
    }

    .common-problems__heading-row.has-open-intro .common-problems__intro {
        margin-top: 16px;
        max-height: none;
        opacity: 1;
    }

    .common-problems__grid {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .common-problems__grid article {
        min-height: 60px;
        padding: 0;
        overflow: hidden;
    }

    .common-problems__item-toggle {
        min-height: 58px;
        height: auto;
        box-sizing: border-box;
        align-items: center;
        padding: 10px 13px;
        grid-template-columns: 38px minmax(0, 1fr) 22px;
        gap: 12px;
    }

    .common-problems__item-toggle h3 { margin: 0; }

    .common-problems__chevron {
        display: block;
        width: 10px;
        height: 10px;
        justify-self: center;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
    }

    .common-problems__item-toggle[aria-expanded="true"] .common-problems__chevron { transform: rotate(225deg); }

    .common-problems__grid article > p {
        display: grid;
        margin: 0;
        padding: 0;
        line-height: 1.5;
    }

    .common-problems__grid article > p > span::after { display: block; height: 14px; content: ""; }
    .common-problems__grid article > p > span { padding-inline: 63px 16px; }
}

.common-problems__heading-row > .manufacturer-context-logo--problems {
    position: absolute;
    z-index: 3;
    top: 23px;
    left: 34px;
    margin: 0;
}
@media (max-width: 600px) {
    .common-problems__heading-row > .manufacturer-context-logo--problems {
        top: -16px;
        left: 9px;
        margin: 0;
    }
}

@media (max-width: 600px) { .common-problems__chevron { transition: transform 280ms ease; } }

/* Animate intrinsic content height; JavaScript only toggles accessible state. */
@media (max-width: 600px) {
    .common-problems__intro, .common-problems__grid article > p { display: grid; grid-template-rows: 1fr; opacity: 1; transition: grid-template-rows 280ms ease, opacity 220ms ease, margin-top 280ms ease; }
    .common-problems__intro > span, .common-problems__grid article > p > span { min-height: 0; overflow: hidden; }
    .common-problems__intro[aria-hidden="true"], .common-problems__grid article > p[aria-hidden="true"] { grid-template-rows: 0fr; opacity: 0; margin-top: 0; }
}
