/* ===========================
   TCG EXPO – prodejci (vertikální layout)
   =========================== */
.tcgexpo-prodejci {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem 4rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Nadpis + intro */
.tcgexpo-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;
}

.tcgexpo-intro {
    text-align: center;
    margin: 0 auto 1.8rem;
    font-size: 1.5rem;
    color: #4b5563;
}

.tcgexpo-banner {
    margin: 0 auto 1.5rem;
    max-width: 900px;
}

.tcgexpo-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
}

.tcgexpo-logo {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tcgexpo-logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 5rem 0;
}

.tcgexpo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.tcgexpo-card {
    background-color: #ffffff;
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease;
}

.tcgexpo-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-primary, #8e44ad);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

.tcgexpo-image {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tcgexpo-image img {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
}

.tcgexpo-content h2 {
    margin: 0 0 0.85rem;
    font-size: 2.2rem;
    font-weight: 800;
    color: #111827;
}

.tcgexpo-content p {
    margin: 0 0 0.4rem;
    font-size: 1.5rem;
    color: #111827;
    word-wrap: break-word;
    overflow-wrap: anywhere;
}

.tcgexpo-content p strong {
    font-weight: 800;
}

.tcgexpo-content a {
    color: #111827;
    text-decoration: underline;
}

.tcgexpo-content a:hover {
    color: var(--color-primary, #8e44ad);
}

.tcgexpo-prodejci,
.tcgexpo-banner,
.tcgexpo-logo,
.tcgexpo-card {
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .tcgexpo-card {
        padding: 1.5rem 1.25rem;
    }

    .tcgexpo-content h2 {
        font-size: 1.6rem;
    }
}


