.courses-grid-68a40d40 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    font-family: sans-serif;
}

.course-card-68a40d40 {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.course-image-wrapper-68a40d40 {
    position: relative;
    width: 100%;
    height: 220px;
}

.course-image-wrapper-68a40d40 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-indicator-68a40d40 {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.course-indicator-68a40d40 .dot-68a40d40 {
    width: 8px;
    height: 8px;
    background: red;
    border-radius: 50%;
}

.course-content-68a40d40 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-title-68a40d40 {
    font-size: 18px;
    color: #111b3d;
    margin: 0 0 16px 0;
    line-height: 1.4;
    font-weight: 600;
}

.course-meta-68a40d40 {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    color: #6b7280;
    font-size: 14px;
}

.meta-item-68a40d40 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item-68a40d40 svg {
    width: 16px;
    height: 16px;
    fill: #a3894a;
}

.course-price-68a40d40 {
    font-size: 20px;
    font-weight: 700;
    color: #111b3d;
    margin-bottom: 24px;
}

.course-actions-68a40d40 {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

.btn-68a40d40 {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.btn-68a40d40:hover {
    opacity: 0.9;
}

.btn-dark-68a40d40 {
    background: #111b3d;
    color: #fff;
}

.btn-gold-68a40d40 {
    background: #b1924b;
    color: #fff;
}

@media (max-width: 1024px) {
    .courses-grid-68a40d40 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .courses-grid-68a40d40 {
        grid-template-columns: 1fr;
    }
    .course-actions-68a40d40 {
        flex-direction: column;
    }
}