.stat-card-link {
    display: block;
    height: 100%;
    color: #fff;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.stat-card-link:hover,
.stat-card-link:focus {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 24px 60px rgba(16, 24, 32, 0.2);
}

.stat-card-link small {
    display: block;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.62);
}

.booking-detail-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.booking-detail-list div {
    display: grid;
    grid-template-columns: minmax(140px, 0.35fr) 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.booking-detail-list div:last-child {
    border-bottom: 0;
}

.booking-detail-list dt {
    color: var(--muted);
    font-weight: 700;
}

.booking-detail-list dd {
    margin: 0;
    font-weight: 700;
}

.booking-detail-list a {
    color: var(--red);
}

@media (max-width: 575.98px) {
    .booking-detail-list div {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
}
