.rihlatk-sv {
    --sv-ink: #142B54;
    --sv-mid: #3F6EAE;
    --sv-blue: #147DFB;
    --sv-muted: #667085;
    --sv-line: #E3E5E8;
    --sv-soft: #E8F3FF;
    font-family: inherit;
    color: var(--sv-ink);
    width: 100%;
}
.rihlatk-sv,
.rihlatk-sv * {
    box-sizing: border-box;
}
.rihlatk-sv__inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}
.rihlatk-sv__head {
    background:
        radial-gradient(900px 220px at 100% 120%, rgba(20, 125, 251, 0.22), transparent 58%),
        linear-gradient(135deg, #142B54 0%, #1A3A6C 62%, #243F78 100%);
    color: #fff;
    padding: 72px 0 80px;
}
.rihlatk-sv__kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #9EC4FF;
    line-height: 1.4;
}
.rihlatk-sv__kicker::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--sv-blue);
    box-shadow: 0 0 0 3px rgba(20, 125, 251, 0.28);
    flex-shrink: 0;
}
.rihlatk-sv__title {
    margin: 0;
    max-width: 14em;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    letter-spacing: -0.035em;
    line-height: 1.25;
    color: #fff;
}
.rihlatk-sv__body {
    background: #fff;
    padding: 48px 0 80px;
}
.rihlatk-sv__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}
.rihlatk-sv__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--sv-line);
    border-radius: 22px;
    padding: 28px 26px 24px;
    box-shadow: 0 1px 0 rgba(20, 43, 84, 0.03);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
}
.rihlatk-sv__card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 24px;
    left: 24px;
    height: 2px;
    border-radius: 0 0 2px 2px;
    background: linear-gradient(to left, var(--sv-blue), var(--sv-mid));
    opacity: 0;
    transition: opacity 0.2s ease;
}
.rihlatk-sv__card:hover {
    border-color: #C9DBF2;
    box-shadow: 0 22px 48px -28px rgba(20, 43, 84, 0.32);
    transform: translateY(-3px);
}
.rihlatk-sv__card:hover::after {
    opacity: 1;
}
.rihlatk-sv__ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(180deg, #F7FBFF 0%, var(--sv-soft) 100%);
    color: var(--sv-blue);
    border: 1px solid #D4E6FA;
    box-shadow: inset 0 1px 0 #fff;
}
.rihlatk-sv__svg {
    width: 22px;
    height: 22px;
    display: block;
}
.rihlatk-sv__name {
    margin: 20px 0 10px;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--sv-ink);
}
.rihlatk-sv__text {
    margin: 0 0 22px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: var(--sv-muted);
    flex: 1 1 auto;
}
.rihlatk-sv__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--sv-ink);
    text-decoration: none;
    transition: color 0.15s ease;
}
.rihlatk-sv__link:hover {
    color: var(--sv-blue);
}
.rihlatk-sv__arrow {
    width: 14px;
    height: 14px;
    display: block;
}
@media (max-width: 900px) {
    .rihlatk-sv__grid {
        grid-template-columns: 1fr;
        max-width: 460px;
        margin: 0 auto;
    }
    .rihlatk-sv__head {
        padding: 56px 0 60px;
    }
    .rihlatk-sv__body {
        padding: 32px 0 56px;
    }
    .rihlatk-sv__title {
        max-width: none;
    }
}
@media (max-width: 640px) {
    .rihlatk-sv__inner {
        padding: 0 16px;
    }
    .rihlatk-sv__card {
        padding: 24px 20px 20px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .rihlatk-sv__card {
        transition: none;
    }
    .rihlatk-sv__card:hover {
        transform: none;
    }
}
