/**
 * Course Highlights Module
 */

.edmark-course-highlights {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    font-family: inherit;
    color: #333;
    --ch-primary: #ef4444;
}

.edmark-course-highlights-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 40px;
    text-align: left;
}

.edmark-ch-grid {
    display: grid;
    grid-template-columns: repeat(var(--ch-columns, 2), 1fr);
    gap: 48px 60px;
    align-items: start;
}

.edmark-ch-cols-1 { grid-template-columns: 1fr; }
.edmark-ch-cols-2 { grid-template-columns: repeat(2, 1fr); }
.edmark-ch-cols-3 { grid-template-columns: repeat(3, 1fr); }
.edmark-ch-cols-4 { grid-template-columns: repeat(4, 1fr); }

.edmark-ch-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.edmark-ch-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: #FFF0F0;
    color: var(--ch-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    font-size: 24px;
}

.edmark-ch-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.edmark-ch-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.edmark-ch-content {
    flex: 1;
    min-width: 0;
}

.edmark-ch-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 6px;
    line-height: 1.3;
}

.edmark-ch-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    word-wrap: break-word;
}

/* Responsive */
@media (max-width: 768px) {
    .edmark-course-highlights {
        margin: 40px auto;
    }

    .edmark-course-highlights-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
    }

    .edmark-ch-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .edmark-ch-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }

    .edmark-ch-icon svg {
        width: 24px;
        height: 24px;
    }

    .edmark-ch-content h4 {
        font-size: 1rem;
    }
}
