.tlrr-reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.tlrr-review-card {
    background: #f8faff;
    border: 1px solid #eef2ff;
    border-radius: 12px;
    padding: 60px 30px 30px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tlrr-avatar-wrapper {
    position: absolute;
    top: -40px;
    left: 40px;
}

.tlrr-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tlrr-reviewer-name {
    margin: 0 0 15px;
    font-size: 1.25rem;
    color: #1a1a1a;
    font-weight: 700;
}

.tlrr-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 25px;
    flex-grow: 1;
}

.tlrr-course-link {
    font-size: 0.95rem;
    color: #6a6a6a;
    text-decoration: none;
    font-style: italic;
    font-weight: 500;
    margin-top: auto;
}

.tlrr-course-link:hover {
    color: #333;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .tlrr-reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tlrr-reviews-container {
        grid-template-columns: 1fr;
        padding-top: 80px;
    }
    
    .tlrr-review-card {
        margin-bottom: 50px;
    }
}
