.rw-tc-section,
.rw-tc-section * {
    box-sizing: border-box;
}

.rw-tc-section {
    width: 100%;
    padding: 40px 24px;
    background: #FFFDF9;
    color: #000000;
    font-family: inherit;
}

.rw-tc-wrapper {
    width: 100%;
    max-width: 1280px;
    margin-inline: auto;
}

.rw-tc-header {
    margin-bottom: 56px;
    text-align: center;
}

.rw-tc-heading {
    margin: 0;
    color: #000000;
    font-family: inherit;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.rw-tc-highlight {
    color: #FF9600;
}

.rw-tc-subtitle {
    margin-top: 6px;
    color: #000000;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.5;
}

.rw-tc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
}

.rw-tc-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 0;
    min-height: 200px;
    padding: 35px 29px 32px;
    border: 1px solid #F2E8DC;
    border-radius: 32px;
    background: #FFFFFF;
    text-align: center;
    box-shadow: 0 16px 40px -12px rgba(56, 35, 5, .08);
    transition: transform .25s ease, box-shadow .3s ease, border-color .2s ease, background-color .2s ease;
}
.rw-tc-card::before { position:absolute; top:0; left:0; width:100%; height:3px; background:#FF9600; content:''; opacity:0; transition:opacity .25s ease; }
.rw-tc-card:hover::before { opacity:1; }
.rw-tc-section:not(.rw-tc-section--has-accent) .rw-tc-card::before { display:none; }

.rw-tc-section.rw-tc-section--global-design { background:var(--rwds-section-bg,#FFFDF9)!important; color:var(--rwds-text,#000)!important; font-family:var(--rwds-body-font,inherit)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-heading,
.rw-tc-section.rw-tc-section--global-design .rw-tc-value { color:var(--rwds-heading,#000)!important; font-family:var(--rwds-heading-font,inherit)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-subtitle,
.rw-tc-section.rw-tc-section--global-design .rw-tc-label { color:var(--rwds-text,#000)!important; font-family:var(--rwds-body-font,inherit)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-highlight,
.rw-tc-section.rw-tc-section--global-design .rw-tc-verified-icon { color:var(--rwds-accent,#FF9600)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-icon { background:var(--rwds-accent-light,#FFF1DB)!important; color:var(--rwds-icon,#FF9600)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-card { background:var(--rwds-card-bg,#FFF)!important; border-color:var(--rwds-border,#F2E6D6)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-card:hover { border-color:var(--rwds-accent,#FF9600)!important; }
.rw-tc-section.rw-tc-section--global-design .rw-tc-card::before { background:var(--rwds-accent,#FF9600)!important; }

.rw-tc-card:hover {
    transform: translateY(-8px);
    border-color: #FFD49A;
    box-shadow: 0 28px 56px -16px rgba(82, 47, 0, .12);
}

.rw-tc-icon {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 74px;
    height: 74px;
    margin-bottom: 16px;
    border-radius: 22px;
    background: #FFF1DB;
    color: #FF9600;
    font-size: 42px;
}

.rw-tc-icon svg,
.rw-tc-verified-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.rw-tc-value {
    color: #000000;
    font-family: inherit;
    font-size: 51px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}

.rw-tc-counter {
    white-space: nowrap;
}

.rw-tc-verified {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.rw-tc-verified-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    color: #FF9600;
    font-size: 28px;
}

.rw-tc-label {
    margin-top: 3px;
    color: #000000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .rw-tc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 29px;
    }
}

@media (max-width: 600px) {
    .rw-tc-section {
        padding: 24px 13px;
    }

    .rw-tc-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .rw-tc-heading {
        font-size: 32px;
    }

    .rw-tc-card {
        min-height: 170px;
        padding: 26px 16px;
    }

    .rw-tc-value {
        font-size: 42px;
    }

    .rw-tc-icon {
        width: 61px;
        height: 61px;
        font-size: 32px;
    }
}

@media (max-width: 420px) {
    .rw-tc-card {
        min-height: 150px;
        padding: 19px 10px;
        border-radius: 24px;
    }

    .rw-tc-value {
        font-size: 35px;
    }

    .rw-tc-label {
        font-size: 14px;
    }

    .rw-tc-heading {
        font-size: 27px;
    }
}

@media (max-width: 360px) {
    .rw-tc-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 280px;
        margin-inline: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .rw-tc-card {
        transition: none;
    }

    .rw-tc-card:hover {
        transform: none;
    }
}
