/* Custom Product ACF CSS */
.cpaw-course-meta {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.cpaw-course-meta:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cpaw-meta-title {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #4f46e5;
    color: #1e293b;
    font-size: 16px;
    font-weight: 600;
}

.cpaw-meta-title .cpaw-icon {
    margin-right: 10px;
    font-size: 18px;
}

.cpaw-meta-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cpaw-meta-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.cpaw-meta-item:not(:last-child) {
    border-bottom: 1px solid #f1f5f9;
}

.cpaw-meta-icon {
    font-size: 18px;
    margin-right: 12px;
    width: 30px;
    height: 30px;
    background: #f8fafc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cpaw-meta-content {
    flex: 1;
}

.cpaw-meta-label {
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.cpaw-meta-value {
    font-size: 14px;
    color: #1e293b;
    font-weight: 500;
}

.cpaw-available {
    color: #10b981;
    font-weight: 500;
}

.cpaw-not-available {
    color: #ef4444;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cpaw-course-meta {
        margin: 15px 0;
    }
}