/* assets/css/sections/coverage.css */

/* --- KOMPAKTNÍ SEKCE --- */
.coverage-section-compact {
    padding: 60px 0 70px; /* Výrazně menší padding */
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

/* --- HLAVIČKA --- */
.coverage-header-mini {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f1f5f9;
    flex-wrap: wrap;
    gap: 20px;
}

.header-text { display: flex; flex-direction: column; gap: 10px; }

.badge-pill-mini {
    display: inline-block;
    background: #eff6ff;
    color: #0056D2;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    width: fit-content;
}

.coverage-header-mini h2 {
    font-size: 2rem;
    margin: 0;
    line-height: 1;
    color: #0f172a;
}

.header-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    text-align: right;
    max-width: 450px;
    line-height: 1.5;
}

.header-desc strong { color: #0056D2; }


/* --- GRID A KARTY --- */
.coverage-grid-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* 1. PRAHA LIŠTA (HERO) */
.region-bar-prague {
    background: linear-gradient(90deg, #0056D2 0%, #0046aa 100%);
    border-radius: 16px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 86, 210, 0.2);
}

.region-bar-prague:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 210, 0.3);
}

.bar-left { display: flex; align-items: center; gap: 15px; }

.icon-circle-blue {
    width: 44px; height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: white;
}

.bar-info h3 { font-size: 1.1rem; color: white; margin: 0; font-weight: 800; }
.bar-sub { font-size: 0.85rem; color: rgba(255,255,255,0.8); }

.bar-right { display: flex; align-items: center; gap: 20px; }

.mini-tags { display: flex; gap: 6px; }
.mini-tags span {
    background: rgba(255,255,255,0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
}
.mini-tags .more-tag { background: #FF5E00; color: white; }

.arrow-indicator { font-size: 1rem; color: rgba(255,255,255,0.6); }


/* 2. SPODNÍ KARTY */
.sub-regions-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mini-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 15px 20px;
    border-radius: 12px;
    transition: all 0.2s;
}

.mini-card:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mc-header { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.mc-header i { font-size: 1rem; }
.mc-header h4 { font-size: 1rem; margin: 0; color: #334155; font-weight: 700; }

.mc-list {
    margin: 0;
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.text-orange { color: #FF5E00; }
.text-blue { color: #0056D2; }
.text-teal { color: #0d9488; }


/* --- FOOTER --- */
.coverage-footer-mini {
    text-align: center;
    margin-top: 25px;
}

.btn-text-action {
    background: none;
    border: none;
    color: #475569;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: color 0.2s;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2px;
}

.btn-text-action:hover { color: #0056D2; border-color: #0056D2; }


/* --- RESPONSIVITA --- */
@media (max-width: 992px) {
    .mini-tags span:nth-child(n+4) { display: none; } /* Schovat tagy na tabletu */
    .mini-tags .more-tag { display: inline-block !important; }
}

@media (max-width: 768px) {
    .coverage-header-mini { flex-direction: column; align-items: flex-start; gap: 10px; }
    .header-desc { text-align: left; }
    
    .region-bar-prague { flex-direction: column; align-items: flex-start; gap: 15px; }
    .bar-right { width: 100%; justify-content: space-between; }
    .mini-tags { flex-wrap: wrap; }
    
    .sub-regions-row { grid-template-columns: 1fr; }
}