/* ======= Variables ======= */
:root {
	--card-bg: #fff;
	--card-br: 14px;
	--card-shadow: 0 1px 7px rgba(0,0,0,.06);
	--border: 1px solid #c9c9c9b0;

	--text: #111827;
	--muted: #6b7280;
	--badge-ok-bg: #e8f5ee;
	--badge-ok-fg: #14804a;
	--badge-warn-bg: #ededed;
	--badge-warn-fg: #c81e1e;

	--cta-bg: #ffb703;      /* amarillo botón */
	--cta-bg-h: #f5a402;
	--cta-fg: #1f2937;      /* texto oscuro */
}

/* ======= Layout contenedor ======= */
.odds1x2-wrap {
	display: flex;
	flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
	gap: 15px;
}

@media (max-width: 900px) {
    .d-none-mobile { display: none !important; }
    .d-none-desktop { display: inline !important; }
    .odd-body {justify-content: center !important;}
    .odd-card { width: 100% !important; }
}

.title_odds1x2 {font-size: 18px !important;padding: 1rem !important;margin-bottom: 0.5rem;background-color: var(--badge-warn-bg);text-align: center;}

/* ======= Tarjeta ======= */
.d-none-desktop { display: none; }
.odd-card {
    display: flex;
	flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    width: 32%;
    gap: 14px;
    background: var(--card-bg);
    border-radius: var(--card-br);
    padding: 18px;
    border: var(--border);
    box-shadow: var(--card-shadow);

}

.odd-head {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column
}

.odd-body {
    display: flex;
    gap: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-end;
    justify-content: space-between;
}

.odd-side {
    font-size: .95rem;
    color: var(--muted);
}

.odd-team {
    margin: 0;
    font-size: 1rem;
    color: var(--text);
    font-weight: 700;
}

.odd-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text);
    margin-top: 0rem;
}

.odd-cta {
    --pad-y: 10px;
    --pad-x: 15px;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: var(--pad-y) var(--pad-x) var(--pad-y) var(--pad-x);
    color: var(--cta-fg) !important;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none !important;
    border: 1px solid #bbb;
    position: relative;
    transition: transform .04s ease, background .15s ease;
}

.odd-badge {
    width: 4rem;
    height: 4rem;
    overflow: hidden;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
}