.sasc-card {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    margin: 22px 0 0;
    padding: 14px 18px;
    border: 1px solid rgba(220, 174, 85, .58);
    border-radius: 7px;
    background: linear-gradient(90deg, #fffdf9 0%, #fff 62%, #fffaf0 100%);
    box-shadow: 0 8px 25px rgba(24, 20, 14, .04);
}
.sasc-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(220, 174, 85, .28);
    padding-right: 16px;
}
.sasc-icon svg {
    width: 62px;
    height: 62px;
    fill: none;
    stroke: #d39d2f;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.sasc-title {
    margin-bottom: 7px;
    color: #161616;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
}
.sasc-text {
    max-width: 440px;
    color: #3f3f3f;
    font-size: 14px;
    line-height: 1.55;
}
.sasc-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 9px 2px 8px;
    border-bottom: 1px solid #dcae55;
    color: #c88612 !important;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .2s ease, gap .2s ease;
}
.sasc-link:hover {
    color: #9c6507 !important;
    gap: 21px;
}
.sasc-arrow {
    font-size: 21px;
    font-weight: 300;
    line-height: 1;
}
@media (max-width: 767px) {
    .sasc-card {
        grid-template-columns: 62px 1fr;
        gap: 12px;
        padding: 14px;
    }
    .sasc-icon {
        width: 56px;
        height: 64px;
        padding-right: 10px;
    }
    .sasc-icon svg {
        width: 50px;
        height: 50px;
    }
    .sasc-link {
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: space-between;
        margin-top: 2px;
    }
}
