/**
 * Ninjabet Recurrentes - Estilos
 * Diseño moderno de cards con Bootstrap 5
 */

/* Container principal */
.ninjabet-recurrentes-container {
    padding: 2rem 0;
}

/* Títulos de sección */
.ninjabet-section-title {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #198754;
    display: inline-block;
}

.ninjabet-section-title .badge {
    font-size: 1rem;
    padding: 0.5rem 1rem;
}

.ninjabet-section-subtitle {
    color: #6c757d;
    font-weight: 500;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
}

/* Cards */
.ninjabet-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e9ecef;
}

.ninjabet-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Card BIENVENIDA - estilo destacado (legacy) */
.ninjabet-card-bienvenida {
    border: 2px solid #198754;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.15);
}

.ninjabet-card-bienvenida:hover {
    box-shadow: 0 8px 30px rgba(25, 135, 84, 0.25);
}

/* Card de post fijo - más destacada */
.ninjabet-card-fijo {
    border: 2px solid #28a745;
    box-shadow: 0 8px 24px rgba(40, 167, 69, 0.15);
}

.ninjabet-card-fijo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(40, 167, 69, 0.25);
    border-color: #20c997;
}

/* Badge para posts fijos */
.ninjabet-card-badge-fijo {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Badge BIENVENIDA (legacy) */
.ninjabet-card-badge {
    background: linear-gradient(135deg, #198754 0%, #157347 100%);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ninjabet-card-badge i {
    font-size: 0.875rem;
}

/* Imagen del card */
.ninjabet-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #f8f9fa;
}

.ninjabet-card-bienvenida .ninjabet-card-image {
    height: 220px;
}

.ninjabet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ninjabet-card:hover .ninjabet-card-image img {
    transform: scale(1.05);
}

/* Placeholder sin imagen */
.ninjabet-card-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #adb5bd;
    font-size: 3rem;
}

/* Casa de apuestas en la imagen */
.ninjabet-card-casa {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: #fff;
    padding: 2rem 1rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Body del card */
.ninjabet-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Título */
.ninjabet-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #212529;
    line-height: 1.4;
}

.ninjabet-card-bienvenida .ninjabet-card-title {
    font-size: 1.25rem;
}

/* Descripción */
.ninjabet-card-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex: 1;
}

/* Meta información */
.ninjabet-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e9ecef;
}

/* Cuota */
.ninjabet-card-cuota {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: #0d6efd;
    color: #fff;
    padding: 0.375rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.ninjabet-card-cuota i {
    font-size: 0.75rem;
}

/* Acciones */
.ninjabet-card-actions {
    margin-top: auto;
}

.ninjabet-card-actions .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.ninjabet-card-actions .btn-primary {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
    border: none;
}

.ninjabet-card-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0b5ed7 0%, #0a58ca 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

/* Filtros */
.ninjabet-filters {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 10px;
    border: 1px solid #e9ecef;
}

.ninjabet-filters .form-select {
    border-radius: 8px;
    border-color: #ced4da;
    padding: 0.625rem 2rem 0.625rem 0.75rem;
    font-size: 0.95rem;
}

.ninjabet-filters .form-select:focus {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Sección BIENVENIDA */
.ninjabet-bienvenida-section {
    position: relative;
}

/* Alertas */
.ninjabet-recurrentes-container .alert {
    border-radius: 10px;
    padding: 1.25rem;
}

/* Responsive */
@media (max-width: 767.98px) {
    .ninjabet-recurrentes-container {
        padding: 1rem 0;
    }
    
    .ninjabet-card-image {
        height: 150px;
    }
    
    .ninjabet-card-bienvenida .ninjabet-card-image {
        height: 180px;
    }
    
    .ninjabet-card-title {
        font-size: 1rem;
    }
    
    .ninjabet-card-bienvenida .ninjabet-card-title {
        font-size: 1.1rem;
    }
    
    .ninjabet-filters {
        padding: 1rem;
    }
}

@media (max-width: 575.98px) {
    .ninjabet-card-body {
        padding: 1rem;
    }
    
    .ninjabet-card-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ninjabet-card {
    animation: fadeInUp 0.5s ease forwards;
}

/* Stagger animation para cards */
.ninjabet-recurrentes-container .row > div:nth-child(1) .ninjabet-card { animation-delay: 0.05s; }
.ninjabet-recurrentes-container .row > div:nth-child(2) .ninjabet-card { animation-delay: 0.1s; }
.ninjabet-recurrentes-container .row > div:nth-child(3) .ninjabet-card { animation-delay: 0.15s; }
.ninjabet-recurrentes-container .row > div:nth-child(4) .ninjabet-card { animation-delay: 0.2s; }
.ninjabet-recurrentes-container .row > div:nth-child(5) .ninjabet-card { animation-delay: 0.25s; }
.ninjabet-recurrentes-container .row > div:nth-child(6) .ninjabet-card { animation-delay: 0.3s; }

/* Loading state */
.ninjabet-loading {
    text-align: center;
    padding: 3rem;
}

.ninjabet-loading .spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Empty state */
.ninjabet-empty {
    text-align: center;
    padding: 3rem 1rem;
}

.ninjabet-empty i {
    font-size: 4rem;
    color: #adb5bd;
    margin-bottom: 1rem;
}

/* --- Nuevo layout de recurrentes (disponibles/completas) --- */
.ninjabet-recurrentes-board {
    background: #ef6b63;
    border-radius: 8px;
    padding: 1.5rem;
}

.ninjabet-recurrentes-board-header {
    text-align: center;
    color: #fff;
    margin-bottom: 1.25rem;
}

.ninjabet-recurrentes-board-icon {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.ninjabet-recurrentes-board-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
}

.ninjabet-recurrentes-tabs {
    display: flex;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
}

.ninjabet-tab-btn {
    border: 0;
    background: #f5f5f5;
    color: #e25c53;
    font-weight: 700;
    border-radius: 8px 8px 0 0;
    padding: 0.75rem 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.ninjabet-tab-btn.active {
    background: #fff;
    color: #de5a51;
}

.ninjabet-tab-count {
    background: rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    padding: 0.1rem 0.45rem;
    font-size: 0.8rem;
}

.ninjabet-tab-panel {
    display: none;
}

.ninjabet-tab-panel.active {
    display: block;
}

.ninjabet-recurrente-item {
    background: #efefef;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.ninjabet-recurrente-item.is-complete {
    opacity: 0.94;
}

.ninjabet-recurrente-main {
    display: grid;
    grid-template-columns: 220px 1fr 130px;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
}

.ninjabet-recurrente-logo {
    height: 120px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.ninjabet-recurrente-logo img {
    max-height: 105px;
    width: auto;
    object-fit: contain;
}

.ninjabet-guide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Placeholders SVG: sin img-fluid; cover + height:auto recorta texto (Bootstrap vs caja fija). */
.ninjabet-guide-image--placeholder {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
}

.ninjabet-recurrente-logo img.ninjabet-guide-image--placeholder {
    width: 100%;
    height: auto;
    max-height: 105px;
    object-fit: contain;
    object-position: center center;
}

.ninjabet-recurrente-no-image {
    color: #adb5bd;
    font-size: 2rem;
}

.ninjabet-recurrente-title {
    font-size: 2rem;
    margin: 0 0 0.35rem;
    color: #334c6f;
    font-weight: 700;
}

.ninjabet-guide-type {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.4rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
}

.ninjabet-guide-type--fija {
    color: #0f766e;
    background: #ccfbf1;
    border: 1px solid #99f6e4;
}

.ninjabet-guide-type--recurrente {
    color: #1d4ed8;
    background: #dbeafe;
    border: 1px solid #bfdbfe;
}

.ninjabet-guide-card--fija {
    border-left: 4px solid #14b8a6;
}

.ninjabet-guide-card--recurrente {
    border-left: 4px solid #3b82f6;
}

/* --- Diseno actualizado para guias fijas --- */
.ninjabet-fijo-item {
    background: #ffffff;
    border: 1px solid #dbe3ed;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.ninjabet-fijo-item:hover {
    transform: translateY(-2px);
    border-color: #7dd3c7;
    box-shadow: 0 10px 26px rgba(20, 184, 166, 0.18);
}

.ninjabet-fijo-content {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1rem;
    padding: 1rem;
    align-items: start;
}

.ninjabet-fijo-content > .ninjabet-fijo-image {
    min-width: 0;
}

.ninjabet-fijo-image {
    position: relative;
    height: 172px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #d9efe9;
    background: #f8fafc;
}

.ninjabet-fijo-image .ninjabet-guide-image:not(.ninjabet-guide-image--placeholder) {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ninjabet-fijo-image .ninjabet-guide-image--placeholder {
    box-sizing: border-box;
    padding: 0.35rem;
}

.ninjabet-fijo-badge {
    position: absolute;
    top: 0.65rem;
    right: 0.65rem;
    z-index: 2;
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    color: #ffffff;
    border-radius: 999px;
    padding: 0.22rem 0.58rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(15, 118, 110, 0.3);
}

.ninjabet-fijo-title {
    margin: 0 0 0.45rem;
    color: #0f2a42;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.35;
}

.ninjabet-fijo-tipo,
.ninjabet-fijo-dificultad {
    margin: 0 0 0.35rem;
    color: #334155;
    font-size: 0.94rem;
}

.ninjabet-fijo-tipo strong,
.ninjabet-fijo-dificultad strong {
    color: #0f172a;
}

.ninjabet-fijo-toggle {
    margin-top: 0.55rem;
    border: 0;
    background: linear-gradient(135deg, #0ea5a4 0%, #0d8f8e 100%);
    color: #ffffff;
    border-radius: 10px;
    padding: 0.5rem 0.95rem;
    font-weight: 700;
    font-size: 0.84rem;
    letter-spacing: 0.15px;
    box-shadow: 0 6px 15px rgba(14, 165, 164, 0.24);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.ninjabet-fijo-toggle:hover,
.ninjabet-fijo-toggle:focus {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 9px 18px rgba(14, 165, 164, 0.28);
    filter: brightness(1.02);
}

.ninjabet-fijo-expanded {
    border-top: 1px dashed #cfe2f3;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 0 1rem 1rem;
}

.ninjabet-fijo-expanded-content {
    color: #334155;
    font-size: 0.95rem;
    line-height: 1.6;
    padding-top: 0.85rem;
}

.ninjabet-fijo-expanded-content .btn.btn-primary {
    border: 0;
    border-radius: 10px;
    background: #1d4ed8;
}

.ninjabet-fijo-expanded-content .btn.btn-primary:hover {
    background: #1e40af;
}

.ninjabet-recurrente-meta-line,
.ninjabet-recurrente-dates {
    margin: 0;
    color: #334c6f;
    font-size: 1.7rem;
}

.ninjabet-recurrente-meta-line strong,
.ninjabet-recurrente-dates strong {
    color: #2f4462;
}

.ninjabet-recurrente-actions {
    margin-top: 0.55rem;
    display: flex;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.ninjabet-btn-muestra,
.ninjabet-btn-tab-jump,
.ninjabet-btn-open {
    border: 0;
    border-radius: 3px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.ninjabet-btn-muestra,
.ninjabet-btn-open {
    background: #3ab3b6;
    color: #fff;
}

.ninjabet-btn-tab-jump {
    background: #00a6a8;
    color: #fff;
}

.ninjabet-btn-muestra:hover,
.ninjabet-btn-tab-jump:hover,
.ninjabet-btn-open:hover {
    color: #fff;
    filter: brightness(0.95);
}

.ninjabet-recurrente-garantizado {
    background: #33b8bc;
    color: #fff;
    border-radius: 0 0 6px 6px;
    text-align: center;
    padding: 0.6rem 0.5rem;
    position: relative;
}

.ninjabet-recurrente-garantizado::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #209598;
}

.ninjabet-recurrente-garantizado span {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
}

.ninjabet-recurrente-garantizado strong {
    display: block;
    font-size: 2.3rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.ninjabet-recurrente-detail {
    border-top: 1px dashed #cfd3d7;
    padding: 0.85rem 1rem;
    color: #2f4462;
    background: #f7f7f7;
}

.ninjabet-recurrente-detail p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .ninjabet-recurrente-main {
        grid-template-columns: 170px 1fr;
    }

    .ninjabet-recurrente-garantizado {
        grid-column: 1 / -1;
        max-width: 160px;
        justify-self: end;
    }
}

@media (max-width: 767.98px) {
    .ninjabet-recurrentes-board-title {
        font-size: 1.45rem;
    }

    .ninjabet-recurrente-main {
        grid-template-columns: 1fr;
    }

    .ninjabet-recurrente-logo {
        height: 100px;
    }

    .ninjabet-recurrente-title {
        font-size: 1.15rem;
    }

    .ninjabet-recurrente-meta-line,
    .ninjabet-recurrente-dates {
        font-size: 0.95rem;
    }

    .ninjabet-recurrente-garantizado {
        justify-self: start;
    }
}

/* --- Ajuste visual v2 (alineado al theme) --- */
.ninjabet-recurrentes-board {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1rem;
}

.ninjabet-recurrentes-board-header {
    color: #0f172a;
    margin-bottom: 0.85rem;
}

.ninjabet-recurrentes-board-icon {
    color: #14b8a6;
    margin-bottom: 0.35rem;
}

.ninjabet-recurrentes-board-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1e293b;
}

.ninjabet-recurrentes-tabs {
    margin-bottom: 0.85rem;
    background: #e2e8f0;
    padding: 0.25rem;
    border-radius: 10px;
    display: inline-flex;
}

.ninjabet-tab-btn {
    background: #ffffff;
    color: #334155;
    border: 1px solid transparent;
    border-radius: 8px;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.ninjabet-tab-btn.active {
    background: #0ea5a4;
    color: #ffffff;
    border-color: #0ea5a4;
    box-shadow: 0 4px 12px rgba(14, 165, 164, 0.25);
}

.ninjabet-tab-btn:not(.active):hover {
    background: #f8fafc;
    color: #1e293b;
    border-color: #cbd5e1;
}

.ninjabet-tab-count {
    background: rgba(255, 255, 255, 0.25);
}

.ninjabet-tab-btn:not(.active) .ninjabet-tab-count {
    background: #e2e8f0;
    color: #334155;
}

.ninjabet-recurrente-item {
    background: #ffffff;
    border: 1px solid #dbe3ed;
    border-radius: 10px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.ninjabet-recurrente-item.is-complete {
    opacity: 1;
    border-left: 4px solid #94a3b8;
}

.ninjabet-recurrente-main {
    grid-template-columns: 160px 1fr minmax(118px, 140px);
    gap: 0.9rem;
    padding: 0.9rem;
}

.ninjabet-recurrente-logo {
    height: 92px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.ninjabet-recurrente-logo img {
    max-height: 72px;
}

.ninjabet-recurrente-title {
    font-size: 1.28rem;
    line-height: 1.35;
    color: #1e3a5f;
    margin-bottom: 0.4rem;
}

.ninjabet-recurrente-meta-line,
.ninjabet-recurrente-dates {
    font-size: 0.98rem;
    color: #334155;
    line-height: 1.45;
}

.ninjabet-recurrente-actions {
    margin-top: 0.65rem;
    gap: 0.5rem;
}

.ninjabet-btn-muestra,
.ninjabet-btn-open,
.ninjabet-btn-tab-jump {
    padding: 0.46rem 0.75rem;
    font-size: 0.8rem;
    border-radius: 8px;
    letter-spacing: 0.1px;
    text-transform: none;
    box-shadow: none;
    border: none;
    transition: all 0.2s ease;
}

.ninjabet-btn-muestra,
.ninjabet-btn-open {
    background: #0ea5a4 !important;
    color: #ffffff !important;
    font-weight: 600;
}

.ninjabet-btn-muestra:hover,
.ninjabet-btn-open:hover {
    background: #0d8f8e !important;
    transform: translateY(-1px);
}

.ninjabet-btn-muestra i,
.ninjabet-btn-open i {
    margin-left: 0.25rem;
}

.ninjabet-btn-tab-jump {
    min-width: auto;
    padding: 0.46rem 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    background: #334155 !important;
    color: #ffffff !important;
    white-space: nowrap;
}

.ninjabet-btn-tab-jump:hover {
    background: #1e293b !important;
}

.ninjabet-btn-tab-jump i {
    font-size: 0.95rem;
    flex-shrink: 0;
}

.ninjabet-recurrente-garantizado {
    border-radius: 8px;
    padding: 0.45rem 0.4rem;
    min-height: 74px;
    background: linear-gradient(180deg, #14b8a6 0%, #0f9f97 100%);
}

.ninjabet-recurrente-garantizado::after {
    display: none;
}

.ninjabet-recurrente-garantizado span {
    font-size: 0.68rem;
    letter-spacing: 0.2px;
}

.ninjabet-recurrente-garantizado strong {
    font-size: 1.35rem;
    line-height: 1.1;
    margin-top: 0.15rem;
    word-break: break-word;
}

/* Estilo para ganancia probable (fondo gris oscuro) */
.ninjabet-recurrente-probable {
    background: linear-gradient(180deg, #4a5568 0%, #2d3748 100%) !important;
}

.ninjabet-recurrente-detail {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    color: #334155;
    font-size: 0.95rem;
}

.ninjabet-muestra-content {
    padding: 1rem;
    line-height: 1.6;
}

.ninjabet-muestra-content p {
    margin-bottom: 0.75rem;
}

.ninjabet-muestra-content p:last-child {
    margin-bottom: 0;
}

.ninjabet-muestra-content ul,
.ninjabet-muestra-content ol {
    margin: 0.75rem 0;
    padding-left: 1.5rem;
}

.ninjabet-muestra-content li {
    margin-bottom: 0.5rem;
}

.ninjabet-muestra-content strong {
    color: #0ea5a4;
    font-weight: 600;
}

.ninjabet-muestra-content a {
    color: #0ea5a4;
    text-decoration: underline;
}

.ninjabet-muestra-content a:hover {
    color: #0d8f8e;
}

.ninjabet-muestra-content blockquote {
    border-left: 3px solid #0ea5a4;
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #64748b;
}

@media (max-width: 991.98px) {
    .ninjabet-recurrente-main {
        grid-template-columns: 130px 1fr;
    }

    .ninjabet-recurrente-garantizado {
        max-width: 140px;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .ninjabet-recurrentes-board-title {
        font-size: 1.12rem;
    }

    .ninjabet-recurrente-main {
        grid-template-columns: 1fr;
    }

    .ninjabet-recurrente-title {
        font-size: 1.02rem;
    }

    .ninjabet-recurrente-meta-line,
    .ninjabet-recurrente-dates {
        font-size: 0.9rem;
    }

    .ninjabet-fijo-content {
        grid-template-columns: 1fr;
    }

    .ninjabet-fijo-image {
        height: 200px;
    }
}
