/* CONTAINER */
.cg-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* GRID */
.cg-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

/* CARD */
.cg-card {
    background: #e4f0fe;
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cg-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* IMAGEM */
.cg-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-size: cover;
    background-position: center;
}

/* CORPO */
.cg-body {
    background: #e4f0fe;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
    height: 100%;
}

/* TÍTULO */
.cg-title {
    font-size: 16px;
    font-weight: 700;
    color: F8F9FA;
    text-align: center;
    margin: 0;

    /* CONTRASTE (IMPORTANTE) 
    background: rgba(0,0,0,0.25);
    padding: 8px;
    border-radius: 4px;*/

    /* CONTROLE DE TEXTO LONGO */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.4;
    min-height: calc(1.4em * 2);
}

/* BOTÃO */
.cg-button {
    background: #172c5d;
    color: white !important;
    padding: 12px 20px;
    text-decoration: none !important;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
    align-self: center;
    display: inline-block;
}

.cg-button:hover {
    opacity: 0.85;
    text-decoration: none !important;
}

/* TABLET */
@media (max-width: 1024px) {
    .cg-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .cg-grid {
        grid-template-columns: 1fr;
    }

    .cg-title {
        font-size: 15px;
    }
}