.st-root {
    --st-accent: #0074c7;
    --st-gap: 24px;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.st-root *,
.st-root *::before,
.st-root *::after {
    box-sizing: border-box;
}

.st-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

.st-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    min-height: 360px;
    padding: 30px 30px 28px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(17, 36, 58, .08);
    box-shadow: 0 14px 44px rgba(17, 36, 58, .08);
    overflow: hidden;
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.st-card.st-style-modern::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -80px;
    right: -75px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--st-accent) 10%, transparent);
    z-index: -1;
    pointer-events: none;
}

.st-card.st-style-glass {
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-color: rgba(255,255,255,.55);
    box-shadow: 0 20px 55px rgba(20, 42, 64, .10);
}

.st-card.st-style-minimal {
    box-shadow: none;
    border-width: 1px;
}

.st-card.st-hover-lift:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 58px rgba(17, 36, 58, .14);
    border-color: color-mix(in srgb, var(--st-accent) 28%, transparent);
}

.st-card.st-equal-height {
    height: 100%;
}

.st-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    min-height: 40px;
}

.st-quote {
    flex: 0 0 auto;
    color: rgba(0,116,199,.12);
    font-size: 54px;
    line-height: .8;
}

.st-quote i,
.st-quote svg {
    display: block;
    width: 1em;
    height: 1em;
}

.st-stars {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
    font-size: 16px;
    line-height: 1;
    white-space: nowrap;
}

.st-star {
    display: inline-block;
}

.st-star-fill { color: #f6bd00; }
.st-star-empty { color: #d8dee5; }

.st-star-half {
    position: relative;
    display: inline-block;
    width: 1em;
    height: 1em;
}

.st-star-half > span {
    position: absolute;
    inset: 0;
}

.st-star-half .st-star-fill {
    width: 50%;
    overflow: hidden;
    display: block;
}

.st-text-wrap {
    margin-top: 18px;
}

.st-text {
    color: #203040;
    font-size: 17px;
    line-height: 1.65;
}

.st-text p:first-child { margin-top: 0; }
.st-text p:last-child { margin-bottom: 0; }

.st-text-wrap.is-collapsible:not(.is-expanded) .st-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--st-clamp-lines, 5);
    overflow: hidden;
}

.st-read-more {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin-top: 10px;
    color: var(--st-accent);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.st-divider {
    height: 1px;
    background: rgba(17, 36, 58, .08);
    margin: auto 0 22px;
    padding-top: 24px;
    background-clip: content-box;
}

.st-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
}

.st-author {
    display: flex;
    align-items: center;
    gap: 13px;
    min-width: 0;
}

.st-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    flex: 0 0 auto;
    background: #eef2f5;
}

.st-avatar-circle { border-radius: 50%; }
.st-avatar-rounded { border-radius: 14px; }
.st-avatar-square { border-radius: 0; }

.st-author-info {
    min-width: 0;
}

.st-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
}

.st-name {
    color: #10243a;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 750;
    overflow-wrap: anywhere;
}

.st-verified {
    display: inline-flex;
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: #18a957;
}

.st-verified svg {
    width: 100%;
    height: 100%;
}

.st-meta,
.st-date {
    margin-top: 4px;
    color: #6d7b8a;
    font-size: 12.5px;
    line-height: 1.4;
}

.st-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.st-sep { opacity: .45; }

.st-footer-side {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.st-company-logo img {
    display: block;
    width: auto;
    max-width: 90px;
    max-height: 38px;
    object-fit: contain;
}

.st-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #596a7a;
    font-size: 11px;
    line-height: 1.2;
    text-decoration: none !important;
}

.st-source i,
.st-source svg {
    width: 1.2em;
    height: 1.2em;
    display: block;
}

.st-source:hover {
    color: var(--st-accent);
}

.st-align-center .st-card-top,
.st-align-center .st-footer {
    justify-content: center;
}

.st-align-center .st-card-top {
    flex-direction: column;
    align-items: center;
}

.st-align-center .st-text,
.st-align-center .st-name-row,
.st-align-center .st-meta,
.st-align-center .st-date {
    text-align: center;
    justify-content: center;
}

.st-align-center .st-footer {
    flex-direction: column;
}

.st-align-center .st-author {
    flex-direction: column;
    text-align: center;
}

.st-align-center .st-footer-side {
    margin-left: 0;
    align-items: center;
}

.st-align-right .st-card-top {
    flex-direction: row-reverse;
}

.st-align-right .st-text,
.st-align-right .st-name,
.st-align-right .st-meta,
.st-align-right .st-date {
    text-align: right;
    justify-content: flex-end;
}

.st-align-right .st-footer {
    flex-direction: row-reverse;
}

.st-align-right .st-author {
    flex-direction: row-reverse;
    text-align: right;
}

.st-align-right .st-footer-side {
    margin-left: 0;
    margin-right: auto;
    align-items: flex-start;
}

/* Carousel */
.st-carousel-shell {
    position: relative;
    padding: 10px 0 44px;
}

.st-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    outline: none;
}

.st-track {
    display: flex;
    align-items: stretch;
    gap: var(--st-gap);
    will-change: transform;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.22,.61,.36,1);
}

.st-slide {
    flex: 0 0 auto;
    min-width: 0;
    display: flex;
}

.st-slide .st-card {
    width: 100%;
}

.st-arrow {
    position: absolute;
    top: 50%;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: 1px solid rgba(17,36,58,.08);
    border-radius: 50%;
    background: #fff;
    color: #10243a;
    box-shadow: 0 10px 28px rgba(17,36,58,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.st-arrow:hover {
    transform: scale(1.06);
    box-shadow: 0 14px 34px rgba(17,36,58,.18);
}

.st-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.st-arrow svg {
    width: 50%;
    height: 50%;
}

.st-prev { left: -18px; }
.st-next { right: -18px; }

.st-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.st-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #c9d2da;
    cursor: pointer;
    transition: width .2s ease, transform .2s ease, background-color .2s ease;
}

.st-dot.is-active {
    width: 24px;
    background: var(--st-accent);
}

@media (max-width: 1024px) {
    .st-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .st-prev { left: 4px; }
    .st-next { right: 4px; }
}

@media (max-width: 767px) {
    .st-grid {
        grid-template-columns: 1fr;
    }

    .st-card {
        min-height: 320px;
        padding: 24px 22px 22px;
        border-radius: 18px;
    }

    .st-footer {
        align-items: flex-start;
    }

    .st-footer-side {
        align-items: flex-end;
    }

    .st-company-logo img {
        max-width: 70px;
        max-height: 32px;
    }

    .st-carousel-shell {
        padding-bottom: 38px;
    }

    .st-arrow {
        top: auto;
        bottom: -2px;
        width: 38px;
        height: 38px;
        margin: 0;
    }

    .st-prev { left: calc(50% - 76px); }
    .st-next { right: calc(50% - 76px); }
    .st-dots { margin-top: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .st-card,
    .st-track,
    .st-arrow,
    .st-dot {
        transition-duration: .01ms !important;
    }
}
