﻿/* CONTENEDOR */
.turnos-container {
    padding: 1.5rem;
}

/* TITLE */
.turnos-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

/* GRID */
.turnos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* CARD */
.turno-card {
    border-radius: 18px;
    padding: 1.2rem;
    background: var(--rz-base-default);
    border-color: var(--rz-secondary);
    transition: .25s ease;
}

    /* HOVER */
    .turno-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0,0,0,.12);
    }

/* HEADER */
.turno-header {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 700;
    color: var(--rz-primary);
}

/* BODY */
.turno-body {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
}

/* BLOQUES DE HORA */
.hora {
    display: flex;
    flex-direction: column;
    gap: .2rem;
}

    /* INICIO */
    .hora.inicio strong {
        color: #e11d48; /* rojo suave */
    }

    /* FIN */
    .hora.fin strong {
        color: #0284c7; /* azul */
    }

/* FOOTER */
.turno-footer {
    margin-top: 1rem;
    border-top: 1px dashed rgba(var(--rz-base-contrast-rgb), .2);
    padding-top: .7rem;
    display: flex;
    justify-content: flex-end;
}
