.bamdad-th-hwc,
.bamdad-th-hwc * {
    box-sizing: border-box;
}

.bamdad-th-hwc {
    width: 100%;
}

.bamdad-th-hwc__eyebrow {
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.bamdad-th-hwc__heading {
    margin: 0 0 18px;
    font-size: 52px;
    line-height: 1.08;
    font-weight: 700;
}

.bamdad-th-hwc__description {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.7;
}

.bamdad-th-hwc__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bamdad-th-hwc__feature-item {
    min-width: 0;
    margin: 0 0 20px;
    transform: translateZ(0);
}

.bamdad-th-hwc__feature-head {
    display: flex;
    align-items: center;
    column-gap: 10px;
}

.bamdad-th-hwc__feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    align-self: center;
    line-height: 1;
    color: inherit;
}

.bamdad-th-hwc__feature-icon i {
    display: block;
    line-height: 1;
    color: inherit;
}

.bamdad-th-hwc__feature-icon svg,
.bamdad-th-hwc__feature-icon svg path {
    fill: currentColor;
    stroke: currentColor;
}

.bamdad-th-hwc__feature-icon svg {
    display: block;
}

.bamdad-th-hwc__feature-title {
    min-width: 0;
    margin: 0 0 8px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
}

.bamdad-th-hwc__feature-desc {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
}

.bamdad-th-hwc--hover-enabled .bamdad-th-hwc__feature-item {
    transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease, color .25s ease;
}

.bamdad-th-hwc--hover-lift .bamdad-th-hwc__feature-item:hover {
    transform: translateY(-5px);
}

.bamdad-th-hwc--hover-scale .bamdad-th-hwc__feature-item:hover {
    transform: scale(1.02);
}

.bamdad-th-hwc--animate-fade-in .bamdad-th-hwc__feature-item,
.bamdad-th-hwc--animate-fade-up .bamdad-th-hwc__feature-item,
.bamdad-th-hwc--animate-zoom-in .bamdad-th-hwc__feature-item {
    animation-duration: var(--th-hwc-animation-duration, 500ms);
    animation-fill-mode: both;
    animation-timing-function: ease;
}

.bamdad-th-hwc--animate-fade-in .bamdad-th-hwc__feature-item {
    animation-name: bamdadThHwcFadeIn;
}

.bamdad-th-hwc--animate-fade-up .bamdad-th-hwc__feature-item {
    animation-name: bamdadThHwcFadeUp;
}

.bamdad-th-hwc--animate-zoom-in .bamdad-th-hwc__feature-item {
    animation-name: bamdadThHwcZoomIn;
}

@keyframes bamdadThHwcFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bamdadThHwcFadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bamdadThHwcZoomIn {
    from { opacity: 0; transform: scale(.96); }
    to { opacity: 1; transform: scale(1); }
}

@media (max-width: 1024px) {
    .bamdad-th-hwc__heading {
        font-size: 42px;
    }
}

@media (max-width: 767px) {
    .bamdad-th-hwc__heading {
        font-size: 34px;
    }

    .bamdad-th-hwc__features {
        grid-template-columns: 1fr;
    }

    .bamdad-th-hwc__feature-title {
        font-size: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bamdad-th-hwc__feature-item {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}
