    .filter-causas_dlc {
        padding-top: 80px;
    }

    .grid-causas {
        display: grid;
        gap: 32px;
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-causas .tag-card-category {
        display: inline-block;
        width: auto;
        padding: 6px 12px;
        background-color: #fff; /* o el color que uses */
        border-radius: 20px;
        margin-bottom: 10px;
    }

    .grid-causas .card-item {
        display: flex;
        flex-direction: column;
        border: 1px solid #ddd;
        border-radius: 10px;
        overflow: hidden;
        background-color: #fff;
        height: 100%;
        /* altura uniforme */
    }

    .grid-causas .card-thumbnail {
        width: 100%;
        height: 540px; /* ajusta según diseño */
        background-color: #f5f5f5; /* opcional */
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }

    .grid-causas .card-thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain; /* muestra la imagen completa */
    }

    .grid-causas .card-content-wrapper {
        display: flex;
        flex-direction: column;
        flex: 1;
        /* ocupa todo el espacio restante empujando el footer abajo */
    }

    .grid-causas .card-body {
        padding: 0px;
        flex: 1;
        /* espacio que crece con el contenido */
    }

    .grid-causas .card-footer {
        display: block;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        width: 100%;
        background-color: var(--primary-color);
        color: #fff;
        box-sizing: border-box;
        bottom: 0;
        left: 0;
        /*border-radius: 10px !important;*/
    }

    .grid-causas .card-footer .btn-dlc-primary,
    .grid-causas .card-footer .btn-dlc-primary a {
        background-color: #fff;
        color: var(--primary-color) !important;
        border-color: none;
        min-width: 100%;
        border-radius: 50px;
        font-weight: 700;
    }

    .grid-causas .card-footer .btn-dlc-primary:hover,
    .grid-causas .card-footer .btn-dlc-primary:hover a {
        background-color: var(--octonary-color) !important;
        color: white !important;
        border-color: var(--octonary-color);
    }

    .grid-causas .card-footer .btn-dlc-primary i::before {
        transform: rotate(-45deg);
    }

    .grid-causas .card-footer h3 {
        flex: 0 0 65%;
        margin: 0;
        font-size: 1.2rem;
        margin-top: 40px;
    }

    .grid-causas .card-footer h3 a {
        color: #fff;
        text-decoration: none;
    }

    .grid-causas .card-footer .btn-dlc {
        flex: 0 0 35%;
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .full-banner-progress-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        margin: 20px 0;
    }

    /* Labels arriba de la barra */
    .full-banner-progress-labels {
        display: flex;
        justify-content: space-between;
        margin-bottom: 5px;
    }

    .full-banner-progress-labels .label-left,
    .full-banner-progress-labels .label-right {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: white;
        /* blanco */
        font-weight: 500;
    }

    .full-banner-progress-labels .label-right {
        align-items: flex-end;
    }

    /* Títulos "Recaudado" y "Meta" */
    .full-banner-progress-labels .label-title {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 2px;
    }

    /* Barra de fondo */
    .full-banner-progress {
        width: 100%;
        height: 15px;
        background: transparent;
        border: 2px solid white;
        /* borde blanco */
        border-radius: 12px;
        overflow: hidden;
        position: relative;
    }

    /* Barra de progreso rellena */
    .full-banner-progress__bar {
        height: 100%;
        width: 0%;
        background: white;
        /* barra blanca */
        border-radius: 12px;
        transition: width 0.5s ease;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding-right: 8px;
    }

    /* Porcentaje dentro de la barra */
    .full-banner-progress__percent {
        color: var(--primary-color);
        font-size: 12px;
        font-weight: bold;
        white-space: nowrap;
    }

@media screen and (max-width: 768px) {
    .filter-causas_dlc {
        padding-block: 40px;
    }
}