/**
 * Infoprouh widget - Styly
 *
 * 3 barevné varianty: důležité (červená), normální (modrá), obecné (zelená)
 *
 * @package Eobce
 */

/* ========================================
   KONTEJNER
   ======================================== */

.eobce-infopruh-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

/* ========================================
   POLOŽKA
   ======================================== */

.eobce-infopruh-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 10px;
    border-left: 4px solid;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

a.eobce-infopruh-item:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
}

/* ========================================
   IKONA
   ======================================== */

.eobce-infopruh-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
}

/* ========================================
   OBSAH
   ======================================== */

.eobce-infopruh-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.eobce-infopruh-nazev {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.eobce-infopruh-popis {
    font-size: 13px;
    line-height: 1.4;
    opacity: 0.8;
}

/* ========================================
   ŠIPKA (odkaz)
   ======================================== */

.eobce-infopruh-arrow {
    flex-shrink: 0;
    font-size: 16px;
    opacity: 0.4;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

a.eobce-infopruh-item:hover .eobce-infopruh-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* ========================================
   TYP: DŮLEŽITÉ (červená)
   ======================================== */

.eobce-infopruh-typ-dulezite {
    background: #fef2f2;
    border-left-color: #dc3232;
    color: #7f1d1d;
}

.eobce-infopruh-typ-dulezite .eobce-infopruh-icon {
    background: rgba(220, 50, 50, 0.12);
    color: #dc3232;
}

/* ========================================
   TYP: NORMÁLNÍ (modrá — primary)
   ======================================== */

.eobce-infopruh-typ-normalni {
    background: #e8f4f8;
    border-left-color: #1a5f7a;
    color: #0c3547;
}

.eobce-infopruh-typ-normalni .eobce-infopruh-icon {
    background: rgba(26, 95, 122, 0.12);
    color: #1a5f7a;
}

/* ========================================
   TYP: OBECNÉ INFO (zelená)
   ======================================== */

.eobce-infopruh-typ-obecne {
    background: #f0fdf4;
    border-left-color: #46b450;
    color: #14532d;
}

.eobce-infopruh-typ-obecne .eobce-infopruh-icon {
    background: rgba(70, 180, 80, 0.12);
    color: #46b450;
}

/* ========================================
   RESPONZIVITA
   ======================================== */

@media (max-width: 600px) {
    .eobce-infopruh-item {
        padding: 12px 14px;
        gap: 10px;
    }

    .eobce-infopruh-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .eobce-infopruh-nazev {
        font-size: 14px;
    }

    .eobce-infopruh-popis {
        font-size: 12px;
    }
}
