.vc-tml {
    padding: 90px 0;
    background: #fff;
}

.vc-tml-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.vc-tml-heading h2 {
    margin: 12px 0 10px;
    color: #001736;
}

.vc-tml-heading p {
    margin: 0;
    color: #60697b;
}

.vc-tml-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding: 24px 28px;
    margin-bottom: 18px;
    border-left: 4px solid #bb0000;
    border-radius: 8px;
    background: #f6f7f9;
}

.vc-tml-google {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 7px;
    color: #001736;
    font-size: 18px;
    font-weight: 800;
}

.vc-tml-google-icon {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e9ef;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 5px 14px rgba(0, 23, 54, 0.12);
}

.vc-tml-google-icon img {
    width: 19px;
    height: 19px;
}

.vc-tml-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vc-tml-rating strong {
    color: #001736;
}

.vc-tml-rating span,
.vc-tml-stars {
    color: #f5ad00;
}

.vc-tml-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.vc-tml-card {
    position: relative;
    min-height: 260px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid #edf0f4;
    border-radius: 8px;
    background: #f8f9fa;
    box-shadow: 0 12px 35px rgba(0, 23, 54, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.vc-tml-card:hover {
    transform: translateY(-8px);
    border-color: rgba(187, 0, 0, 0.25);
    box-shadow: 0 20px 45px rgba(0, 23, 54, 0.15);
}

.vc-tml-card-top {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vc-tml-avatar {
    display: inline-flex;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid #e5e9ef;
    background: #fff;
    box-shadow: 0 7px 18px rgba(0, 23, 54, 0.14);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vc-tml-card:hover .vc-tml-avatar {
    transform: rotate(-6deg) scale(1.08);
    box-shadow: 0 10px 24px rgba(187, 0, 0, 0.18);
}

.vc-tml-avatar img {
    width: 27px;
    height: 27px;
}

.vc-tml-author-info {
    display: flex;
    flex-direction: column;
}

.vc-tml-author-name {
    margin: 0;
    color: #001736;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.vc-tml-author-title {
    font-size: 13px;
    color: #60697b;
    font-weight: 500;
    margin-top: 2px;
}

.vc-tml-stars {
    margin: 16px 0 11px;
    font-size: 14px;
    letter-spacing: 2px;
}

.vc-tml-card p {
    margin: 0;
    color: #505b6b;
    line-height: 1.75;
}

@media screen and (max-width: 991px) {
    .vc-tml {
        padding: 70px 0;
    }

    .vc-tml-summary {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .vc-tml-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 575px) {
    .vc-tml {
        padding: 55px 0;
    }

    .vc-tml-summary {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
    }

    .vc-tml-grid {
        grid-template-columns: 1fr;
    }

    .vc-tml-card {
        min-height: auto;
    }
}
