.course-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.course-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.course-card-link:hover .cpc {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    border-color: #fcd34d;
}

.cpc {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    gap: 16px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.cpc-photo {
    width: 88px;
    height: 100px;
    border-radius: 8%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
}

.cpc-body {
    flex: 1;
    min-width: 0;
}

.cpc-subj {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cpc-tut {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 6px;
    padding-top: 6px;
    border-bottom: 1px solid #f5f5f5;
}

.cpc-tut i {
    width: 14px;
    font-size: 0.72rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cpc {
        padding: 12px 14px;
        gap: 12px;
    }

    .cpc-photo {
        width: 68px;
        height: 68px;
    }

    .cpc-subj {
        font-size: 0.88rem;
        margin-bottom: 6px;
    }

}

@media (max-width: 480px) {
    .cpc-photo {
        width: 60px;
        height: 60px;
    }

    .cpc-subj {
        font-size: 0.85rem;
    }

    .cpc-tut {
        font-size: 0.72rem;
    }
}