/**
 * Icon Box Component
 * BEM convention styling
 */

.icon-box {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.icon-box__icon-wrapper {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box__icon-wrapper svg {
    width: 100%;
    height: 100%;
    fill: var(--zm-text-color);
}

.icon-box__text-wrapper {
    flex: 1;
}

.icon-box__title {
    margin-block-end: 0.25rem;
    font-size: 0.8125rem;
    line-height: 1.6;
    font-weight: 700;
    text-transform: uppercase;
}

.icon-box__content {
    margin: 0;
    line-height: 1.5;
    font-size: 0.8125rem;
    line-height: 1.4;
    font-weight: 500;
}

@media (max-width: 767px) {
    .icon-box {
        gap: 0.75rem;
    }
}
