/* ================================
   EVENTS TIMELINE - čtverec s datem
================================ */
/* Seznam událostí v roce */
.we-year-events {
    display: flex;
    flex-direction: column;
    gap: 12px; /* mezera mezi událostmi */
}
/* Jedna položka */
.we-timeline-item {
    border: 1px solid #ddd;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden; /* čtverec lícuje s okraji */
}
/* Hover rámečku */
.we-timeline-item:hover {
    border-color: #3e9ce4;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* Klikací celý box */
.we-timeline-item a {
    display: flex;
    align-items: stretch; /* čtverec se natáhne přes celou výšku */
    gap: 16px; /* mezera mezi čtvercem a textem */
    text-decoration: none;
    color: inherit;
    width: 100%;
}
/* Čtverec s datem */
.we-item-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 55px;
    padding: 12px 12px;
    background: #eee;
    color: #333;
    font-weight: 600;
    font-size: 1.1em;
    align-self: stretch; /* natáhne se přes celou výšku */
    flex-shrink: 0;
    line-height: 0.9; /* menší mezera mezi řádky */
    text-align: center; /* centrování textu včetně pomlčky */
    transition: background 0.2s ease, color 0.2s ease;
}

/* Zmenšení mezer kolem pomlčky */
.we-item-date-box br {
    display: block;
    content: "";
    margin: -5px 0;
}

/* Hover čtverce */
.we-timeline-item:hover .we-item-date-box {
    background: #3e9ce4;
    color: #fff;
}
/* Obsah vpravo */
.we-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 8px 8px 0;
    flex: 1;
}
/* Název */
.we-item-title {
    font-size: 1.2em;
    font-weight: 500;
    margin-bottom: 0px;
}
/* Označení proběhlo */
.we-item-past {
    font-size: 0.75em;
    color: #888;
    font-weight: 400;
    margin-left: 6px;
}
/* Druhý řádek – čas + místo */
.we-item-meta {
    font-size: 0.95em;
    color: #666;
}
/* ================================
   TLAČÍTKO
================================ */
.we-load-more {
    display: inline-block;
    margin: 20px auto 0;
    padding: 10px 15px;
    font-family: inherit;
	font-size: 1.1em;
    font-weight: 400;
    text-align: center;
    background-color: #3e9ce4;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.15s ease;
}
.we-load-more:hover {
    background-color: #2f7fc0;
    transform: translateY(-2px);
}
.we-load-more:active {
    transform: translateY(0);
}
/* ================================
   MOBIL
================================ */
@media (max-width: 768px) {
    .we-timeline-item a {
        gap: 12px; /* mezera i na mobilu */
    }
    .we-item-date-box {
        min-width: 65px;
        font-size: 1.1em;
        padding: 12px 6px;
    }
    .we-item-title {
        font-size: 1.05em;
    }
}