.m2-shapes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 24px;
}

@media (min-width: 992px) {
    .m2-shapes {
        grid-template-columns: repeat(4, 1fr);
    }
}

.m2-shape {
    display: block;
    margin: 0;
    cursor: pointer;
}

.m2-shape input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.m2-shape-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #C8CACD;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.m2-shape input:checked ~ .m2-shape-inner {
    border-color: #2F80ED;
    box-shadow: 0 0 0 1px #2F80ED;
}

.m2-shape input:focus-visible ~ .m2-shape-inner {
    box-shadow: 0 0 0 2px #2F80ED;
}

.m2-shape-inner img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.m2-shape-title {
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #474D57;
    text-align: center;
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m2-shape input:checked ~ .m2-shape-inner .m2-shape-title {
    font-weight: 600;
    color: #19212D;
}

.m2-fieldset {
    display: none;
}

.m2-fieldset.active {
    display: block;
}

.m2-subheading {
    font-weight: 600;
    color: #474D57;
    margin-bottom: 12px;
}

.m2-result {
    margin-top: 24px;
    padding: 24px;
    border-radius: 8px;
    background: #F2F8FF;
    border: 1px solid #CFE3FF;
    text-align: center;
}

.m2-result-label {
    font-size: 15px;
    color: #474D57;
    margin-bottom: 4px;
}

.m2-result-value {
    font-size: 28px;
    font-weight: 700;
    color: #19212D;
    margin-bottom: 0;
}

.faq-item-text img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 16px auto;
}