.show_card_list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
    background-color: var(--primary-light);
    padding: 24px;
    margin: 0 auto;
    max-width: 1400px;
}

.show_card_list .card_show {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.show_card_list .card_show:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.show_card_list .card_show h1,
.show_card_list .card_show h2 {
    font-size: 1.4rem;
    color: white;
    background-color: var(--primary);
    margin: 0;
    padding: 1.2rem;
    text-align: center;
    border-radius: 12px 12px 0 0;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    line-height: 1.4;
}

.show_card_list .card_show article div h3 {
    font-size: 16px;    
    text-align: center;
    color:red;
}
.show_card_list .card_show > div {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.show_card_list .card_show .badge-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0;
    justify-content: center;
}

.show_card_list .card_show span {
    background-color: var(--secondary-light);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;

    margin: 4px;
    margin-bottom: 8px;
}

.show_card_list .card_show .card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1024px) {
    .show_card_list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .show_card_list {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 16px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .show_card_list {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 12px;
    }
}