.sky-tc-wrap,
.sky-tc-wrap * {
    box-sizing: border-box;
}

.sky-tc-wrap {
    width: 100%;
}

.sky-tc-grid {
    display: grid;
    width: 100%;
    align-items: stretch;
}

.sky-tc-card {
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f5;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(38, 57, 105, 0.08);
    transition-property: transform, box-shadow, border-color, background-color;
    transition-timing-function: cubic-bezier(.2, .7, .2, 1);
    will-change: transform;
}

.sky-tc-card-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: inherit;
    height: 100%;
    padding: 32px 28px 28px;
}

.sky-tc-stars {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 3px;
    color: #f2a100;
    margin: 0 0 25px;
    line-height: 1;
}

.sky-tc-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    font-size: 17px;
    line-height: 1;
}

.sky-tc-star i,
.sky-tc-star svg {
    display: block;
    color: currentColor;
    fill: currentColor;
}

.sky-tc-quote {
    margin: 0 0 18px;
    padding: 0;
    border: 0;
    color: #112b62;
    font-family: Arial, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.48;
    font-style: normal;
    quotes: none;
    overflow-wrap: anywhere;
}

.sky-tc-quote::before,
.sky-tc-quote::after {
    content: none;
}

.sky-tc-quote-mark {
    display: inline;
}

.sky-tc-author {
    margin-top: auto;
    color: #082780;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.sky-tc-author-dash {
    display: inline-block;
    margin-right: 3px;
}

@media (max-width: 767px) {
    .sky-tc-card {
        min-width: 0;
    }

    .sky-tc-card-inner {
        padding: 26px 22px 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sky-tc-card {
        transition-duration: 0.01ms !important;
    }

    .sky-tc-card:hover {
        transform: none !important;
    }
}
