.sw-save {
    background: #ffffff;
    padding: 100px 0;
}
.sw-save__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.sw-save__card {
    border-radius: 16px;
    padding: 50px;
    border: 2px solid rgba(13, 193, 92, 0.3);
    background: linear-gradient(104.55deg, #FFFFFF 0%, #F0F6F3 100%);
}
.sw-save__title {
    font-size: 28px;
    font-weight: 600;
    color: #0d1f2d;
    text-align: center;
    margin: 0 0 33px;
    line-height: 38px;
}
.sw-save__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 33px;
}
.sw-save__stat {
    text-align: center;
}
.sw-save__at {
    font-size: 14px;
    color: #000000;
    margin: 0 0 12px;
    line-height: 21px;
}
.sw-save__amount {
    font-size: 20px;
    font-weight: 600;
    color: #0DC15C;
    margin: 0 0 8px;
    line-height: 27px;
}
.sw-save__compare {
    font-size: 12px;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
    font-weight: 400;
    line-height: 18px;
}
.sw-save__note p {
    font-size: 14px;
    color: #000000;
    line-height: 24px;
    margin: 0;
    text-align: left;
    font-weight: 400;
  text-align: center;
}
.sw-save__note strong {
    color: #000000;
    font-weight: 600;
}
@media (max-width: 768px) {
    .sw-save__container {
        padding: 0 20px;
    }
    .sw-save__card {
        padding: 32px 24px 28px;
    }
    .sw-save__title {
        font-size: 22px;
        margin-bottom: 28px;
    }
    .sw-save__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .sw-save__stat {
        border-right: none;
        border-bottom: 1px dashed rgba(0,0,0,0.12);
        padding: 0 0 24px;
    }
    .sw-save__stat:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}
