#trc-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}
.trc-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.trc-card-header {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: #f7f7f7;
}
.trc-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-right: 1rem;
    object-fit: cover;
}
.trc-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.trc-author-name {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
}
.trc-stars {
    margin: 0.5rem 0;
    font-size: 1rem;
    color: #FFD700;
}
.trc-course-name {
    font-size: 0.9rem;
    color: #555;
}
.trc-date {
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #777;
}
.trc-content {
    padding: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    border-top: 1px solid #eee;
}
.trc-no-reviews {
    text-align: center;
    font-style: italic;
    color: #888;
    padding: 2rem;
}