.cursos-grid {
    display: grid;
    gap: 20px;
}

.cursos-grid.columnas-2 {
    grid-template-columns: repeat(2, 1fr);
}

.cursos-grid.columnas-3 {
    grid-template-columns: repeat(3, 1fr);
}

.cursos-grid.columnas-4 {
    grid-template-columns: repeat(4, 1fr);
}

.curso-card {
    overflow: hidden;
}

.curso-image img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.curso-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curso-content {
    padding-top: 12px;
}

.curso-content h3.curso-title {
    margin: 0 0 8px 0;
    font-size: 1.2em;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.curso-details{
    margin: 0;
}

.curso-button {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 12px;
}

.curso-pills {
    min-height: 1em !important;
    display: flex;
    gap: 8px;
    align-items: center;
    margin: .5em 0;
}

.curso-pills:empty {
    visibility: hidden;
}

.curso-pill{
    padding: 4px 8px;
    border-radius: .5em;
    font-size: 0.5em;
    font-weight: bold;
    color: #fff;
}

.curso-pill.curso-featured {
    background-color: #ff3131;
}

.curso-pill.curso-updated {
    background-color: #ffd6d6;
}