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

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

.sv-wrapper {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
}

.sv-header {
    max-width: 780px;
    margin: 0 auto 51px;
    text-align: center;
}

.sv-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
    padding: 3px 16px;
    border-radius: 30px;
    background: #FFF1DB;
    color: #000000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .3px;
}

.sv-badge-icon,
.sv-card-icon,
.sv-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sv-badge-icon,
.sv-card-icon {
    color: #FF9600;
}

.sv-badge-icon svg,
.sv-card-icon svg,
.sv-button-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.sv-heading {
    margin: 0 0 10px;
    color: #000000;
    font-family: inherit;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.sv-intro {
    color: #000000;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.6;
}

.sv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 29px;
    row-gap: 32px;
    align-items: stretch;
}

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

.sv-section.sv-section--global-design { background:var(--rwds-section-bg,#FFFDF9)!important; color:var(--rwds-text,#000)!important; font-family:var(--rwds-body-font,inherit)!important; }
.sv-section.sv-section--global-design .sv-heading,
.sv-section.sv-section--global-design .sv-card-title { color:var(--rwds-heading,#000)!important; font-family:var(--rwds-heading-font,inherit)!important; }
.sv-section.sv-section--global-design .sv-intro,
.sv-section.sv-section--global-design .sv-card-text,
.sv-section.sv-section--global-design .sv-badge { color:var(--rwds-text,#000)!important; font-family:var(--rwds-body-font,inherit)!important; }
.sv-section.sv-section--global-design .sv-badge,
.sv-section.sv-section--global-design .sv-card-icon { background:var(--rwds-accent-light,#FFF1DB)!important; }
.sv-section.sv-section--global-design .sv-badge-icon,
.sv-section.sv-section--global-design .sv-card-icon { color:var(--rwds-icon,#FF9600)!important; }
.sv-section.sv-section--global-design .sv-card { background:var(--rwds-card-bg,#FFF)!important; border-color:var(--rwds-border,#F2E6D6)!important; }
.sv-section.sv-section--global-design .sv-card:hover { border-color:var(--rwds-accent,#FF9600)!important; }
.sv-section.sv-section--global-design .sv-card::before { background:var(--rwds-accent,#FF9600)!important; }
.sv-section.sv-section--global-design .sv-button { background:var(--rwds-button-bg,#FF9600)!important; color:var(--rwds-button-text,#000)!important; font-family:var(--rwds-button-font,inherit)!important; }
.sv-section.sv-section--global-design .sv-button:hover,
.sv-section.sv-section--global-design .sv-button:focus { background:var(--rwds-button-hover,#DF7615)!important; color:var(--rwds-button-text,#000)!important; }

.sv-card:hover {
    transform: translateY(-6px);
    border-color: #FFD49A;
    box-shadow: 0 28px 48px -14px rgba(82, 47, 0, .12);
}

.sv-card-icon {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    margin-bottom: 21px;
    border-radius: 19px;
    background: #FFF1DB;
    font-size: 35px;
}

.sv-card-title {
    margin: 0 0 10px;
    color: #000000;
    font-family: inherit;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.sv-card-text {
    flex: 1 1 auto;
    margin-bottom: 29px;
    color: #000000;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
}

.sv-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    gap: 8px;
    width: fit-content;
    min-height: 44px;
    padding: 12px 22px;
    border: 0;
    border-radius: 60px;
    background: #FF9600;
    color: #000000;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.sv-button:hover,
.sv-button:focus {
    background: #DF7615;
    color: #000000;
    text-decoration: none;
}

.sv-button:focus-visible {
    outline: 3px solid rgba(255, 150, 0, .35);
    outline-offset: 3px;
}

.sv-button-icon {
    transition: transform .2s ease;
}

.sv-button:hover .sv-button-icon {
    transform: translateX(4px);
}

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

@media (max-width: 767px) {
    .sv-section {
        padding: 24px 16px;
    }

    .sv-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 540px;
        margin-inline: auto;
    }

    .sv-heading {
        font-size: 34px;
    }

    .sv-card {
        padding: 29px 24px;
    }

    .sv-button {
        width: 100%;
        align-self: stretch;
    }
}

@media (max-width: 480px) {
    .sv-heading {
        font-size: 29px;
    }

    .sv-card-title {
        font-size: 21px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sv-card,
    .sv-button,
    .sv-button-icon {
        transition: none;
    }

    .sv-card:hover,
    .sv-button:hover .sv-button-icon {
        transform: none;
    }
}
