.coures-inner {
    padding: 50px 0;
}

.coures-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coures-item {
    background-color: var(--white-color);
    box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
    border-radius: 5px;
    padding: 20px;
    row-gap: 10px;
}

.coures-img img {
    height: 200px;
    border-radius: 5px;
    object-fit: cover;
}

.coures-title {
    row-gap: 2px;
}

.coures-title h2 {
    font-size: 1.4rem;
    font-weight: 500;
}

.coures-title h4 {
    font-size: 1.2rem;
    font-weight: 500;
}

.coures-price {
    column-gap: 10px;
    font-weight: 500;
}

.coures-description p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
    color: var(--gray-color);
}

@media only screen and (max-width: 767px) {
    .coures-inner {
        padding: 30px 0;
    }
    .coures-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .coures-title h4 {
        font-size: 1rem;
    }
    .coures-price {
        font-weight: 400;
    }
}