.ds-sync {
    padding: 50px 0 93px;
    background: #F5F7FC;
}
.ds-sync .ds-sync__icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}
.ds-sync__container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}
.ds-sync__header {
    text-align: center;
    margin-bottom: 41px;
}
span.ds-sync__label {
        display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 6px;
    line-height: 28px;
}
.ds-sync__title {
    font-size: 38px;
    font-weight: 600;
    color: #000000;
    margin: 0 0 6px 0;
    line-height: 54px;
}
.ds-sync__subtitle {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.80);
    line-height: 28px;
    max-width: 853px;
    width: 100%;
    margin: 0 auto;
    font-weight: 400;
}
.ds-sync__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.ds-sync__card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.14), 0px 0px 2px 0px rgba(0, 0, 0, 0.12);
}
.ds-sync__icon {
    margin-bottom: 32px;
    line-height: 0;
}
.ds-sync__card-title {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    line-height: 24px;
    margin: 0 0 11px;
}
.ds-sync__card-body {
    flex: 1;
    margin-bottom: 14px;
}
.ds-sync__card-body p {
    font-size: 15px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.80);
    line-height: 24px;
    margin: 0 0 10px;
}
a.ds-sync__badge {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 2px 20px 4px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    background: #F5F5F5;
    font-size: 13px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.80);
    text-decoration: none;
    line-height: 24px;
    transition: all 0.3s ease 0s;
}
a.ds-sync__badge:hover {
    border-color: rgba(0, 0, 0, 0.3);
    text-decoration: none;
  background: #fff;
}

@media (max-width: 1024px) {
    .ds-sync__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ds-sync__title {
        font-size: 34px;
    }
}
@media (max-width: 640px) {
    .ds-sync {
        padding: 52px 0 60px;
    }
    .ds-sync__container {
        padding: 0 20px;
    }
    .ds-sync__grid {
        grid-template-columns: 1fr;
    }
    .ds-sync__title {
        font-size: 26px;
    }
    .ds-sync__card {
        padding: 24px 20px;
    }
}
