.toto-review-section {
    width: 100%;
    max-width: 1100px;
    margin: 50px auto;
    padding: 30px 20px;
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
}

.toto-review-header {
    max-width: 760px;
    margin: 0 auto 35px;
    text-align: center;
}

.toto-review-badge {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 15px;

    color: #42b5ff;
    background: rgba(21, 151, 255, .08);

    border: 1px solid rgba(66, 181, 255, .30);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
}

.toto-review-header h1 {
    margin: 0 0 14px;

    color: #fff;

    font-size: clamp(27px, 5vw, 40px);
    line-height: 1.2;
}

.toto-review-header p {
    margin: 0;

    color: #aebdd3;

    font-size: 15px;
    line-height: 1.8;
}


/* GRID */

.toto-review-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}


/* CARD */

.toto-review-card {
    position: relative;

    padding: 24px;

    background:
        linear-gradient(
            145deg,
            rgba(8, 36, 82, .95),
            rgba(4, 20, 45, .98)
        );

    border: 1px solid rgba(66, 181, 255, .18);
    border-radius: 18px;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .22);

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.toto-review-card:hover {
    transform: translateY(-4px);

    border-color: rgba(66, 181, 255, .48);

    box-shadow:
        0 16px 42px rgba(0, 0, 0, .30);
}


/* USER */

.toto-review-top {
    display: flex;
    align-items: center;
    gap: 13px;
}

.toto-review-avatar {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #075bc7,
            #1597ff
        );

    border-radius: 50%;

    color: #fff;

    font-size: 18px;
    font-weight: 800;

    box-shadow:
        0 5px 20px rgba(21, 151, 255, .25);
}

.toto-review-user h2 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 16px;
    line-height: 1.3;
}

.toto-review-user span {
    color: #8fa6c3;

    font-size: 13px;
}


/* STAR */

.toto-review-stars {
    margin: 18px 0 13px;

    color: #ffd45a;

    font-size: 17px;
    letter-spacing: 3px;
}


/* TEXT */

.toto-review-text {
    margin: 0;

    color: #c2cee0;

    font-size: 14px;
    line-height: 1.8;
}


/* FOOTER */

.toto-review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;

    margin-top: 20px;
    padding-top: 16px;

    border-top: 1px solid rgba(255, 255, 255, .08);
}

.toto-review-footer span {
    color: #42b5ff;

    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
}

.toto-review-footer time {
    color: #8095b0;

    font-size: 12px;
}


/* LAST CARD */

.toto-review-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
}


/* MOBILE */

@media (max-width: 700px) {

    .toto-review-section {
        margin: 30px auto;
        padding: 20px 12px;
    }

    .toto-review-grid {
        grid-template-columns: 1fr;
    }

    .toto-review-card:last-child:nth-child(odd) {
        grid-column: auto;
    }

    .toto-review-card {
        padding: 20px 17px;
    }

    .toto-review-header h1 {
        font-size: 27px;
    }

    .toto-review-header p {
        font-size: 14px;
    }

    .toto-review-text {
        font-size: 14px;
        line-height: 1.75;
    }

}