



/* ===========================
   PokéTour stránka
   =========================== */

.poketour-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
    font-size: 1.1rem;      /* globální zvětšení textu */
    line-height: 1.75;
}

.poketour-title {
    font-family: var(--template-headings-font, "Nunito"), system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #1f2933;
}

.poketour-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 2rem;
    font-size: 1.5rem;
    line-height: 1.7;
    color: #4b5563;
}

/* Video – responsivní 16:9 */

.poketour-video {
    margin-bottom: 2rem;
}

.poketour-video__ratio {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.poketour-video__ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Hero obrázek pod videem */

.poketour-hero-image {
    margin: 1.5rem auto 2.5rem;
    max-width: 480px;
}

.poketour-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Bloky sekcí */

.poketour-block {
    margin-bottom: 2.5rem;
}

.poketour-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: #111827;
}

.poketour-year {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1.5rem 0 0.75rem;
}

/* Seznam akcí */

.poketour-events {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .poketour-events--upcoming {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.poketour-event {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    background-color: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.poketour-event__date {
    font-weight: 800;
    color: var(--color-primary, #8e44ad);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

/* Vertikální centrování obsahu akce */
.poketour-event__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.poketour-event__content h3,
.poketour-event__content h4 {
    margin: 0 0 0.2rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #111827;
}

.poketour-event__content p {
    margin: 0 !important;
    font-size: 1rem;
    color: #4b5563;
}

/* Card Show logo / partner sekce */

.poketour-cardshow {
    text-align: center;
    margin-top: 3rem;
}

.poketour-cardshow img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: inline-block;
}

.poketour-event__content h3 a {
    color: #111827 !important;
}

.poketour-event:hover {
    border-color: var(--color-primary, #8e44ad);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}