* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stuk-green: #A2AD00;
    --stuk-green-dark: #7a8500;
    --stuk-green-darker: #495400;
    --stuk-green-light: #A4BF20;
    --stuk-gray: #9B9B9B;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #343a40;
    --white: #ffffff;
    --shadow-light: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 20px rgba(0,0,0,0.15);
    --border-radius: 12px;
}

body {
    font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--white);
}

/* Header */
.header {
    background: #111;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    height: 38px;
    display: flex;
    align-items: center;
}

.logo-icon img {
    height: 100%;
    width: auto;
    max-width: 120px;
    display: block;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: white;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--stuk-green);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--stuk-green);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-join {
    background: var(--stuk-green);
    color: #ffffff !important;
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-family: inherit;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    will-change: transform;
}

.btn-join:hover,
.btn-join:focus {
    background: var(--stuk-green-dark);
    color: #fff;
    transform: scale(1.05);
}

/* Hero Section */
.hero {
    background-repeat: no-repeat;
    background-position: center 43%;
    background-size: cover;
    min-height: 60vh;
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5));
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

/* Buttons */
.btn,
.btn-primary,
.btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary {
    background: var(--stuk-green);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    background: var(--stuk-green-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.5);
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 3.5rem 0;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: left;
    padding: 0.5rem 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--stuk-green);
    line-height: 1;
}

.stat-label {
    color: var(--medium-gray);
    font-weight: 500;
    font-size: 0.85rem;
    margin-top: 0.3rem;
}

/* Events Section */
.events {
    background: var(--light-gray);
    padding: 4rem 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Pulsing live dot */
@keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(1.5); }
}

.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    flex-shrink: 0;
    animation: live-pulse 2s ease-in-out infinite;
}

/* Hero event card */
.event-hero {
    background: #111;
    border-radius: var(--border-radius);
    padding: 2.5rem 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.event-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--stuk-green) 0%, var(--stuk-green-darker) 100%);
    opacity: 0.12;
}

.event-hero-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stuk-green);
    margin-bottom: 0.75rem;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.event-hero-title {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 0.75rem;
    position: relative;
}

.event-hero-desc {
    font-size: 0.95rem;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    max-width: 560px;
}

.event-hero-meta {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 1.75rem;
    position: relative;
    display: flex;
    gap: 1.25rem;
}

.event-hero-cta {
    display: inline-block;
    background: var(--stuk-green);
    color: white;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    position: relative;
    transition: background 0.2s ease;
    align-self: flex-start;
    margin-top: auto;
}

.event-hero-cta:hover {
    background: var(--stuk-green-dark);
    color: white;
}

/* Section divider between active and upcoming */
.event-empty {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: #f8f9f2;
    border-radius: var(--border-radius);
    color: var(--medium-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.event-empty a { color: var(--stuk-green-dark); font-weight: 600; }

.event-section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2.5rem 0 0;
}

.event-section-divider span {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #aaa;
    white-space: nowrap;
}

.event-section-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e8e8e8;
}

/* Magazine rows */
.event-rows {
    border-top: 1px solid #e8e8e8;
}

.event-row {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 1.5rem;
    align-items: center;
    padding: 1.4rem 1rem;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.15s ease;
}

.event-row:hover {
    background: #fafff0;
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.event-row--active {
    background: #fafff5;
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.event-row--active:hover {
    background: #f0fae8;
}

.event-row--active .event-row-date-month {
    color: #28a745;
}

.event-row-date {
    text-align: center;
    flex-shrink: 0;
}

.event-row-date-month {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--stuk-green);
}

.event-row-date-year {
    display: block;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--dark-gray);
    line-height: 1;
}

.event-row-content { min-width: 0; }

.event-tags {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.35rem;
}

.event-category-pill {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--stuk-green);
}

.event-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-gray);
    line-height: 1.3;
    margin: 0 0 0.35rem;
}

.event-description {
    color: var(--medium-gray);
    font-size: 0.87rem;
    line-height: 1.5;
    margin: 0;
}

.event-location {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 0.35rem;
    display: block;
}

.event-cta {
    display: inline-block;
    background: none;
    color: var(--stuk-green-dark);
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.15s ease;
}

.event-cta:hover {
    color: var(--stuk-green-darker);
    text-decoration: underline;
}

/* Status indicators */
.status-active {
    background: #e8f5e3;
    color: #3a7d2c;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
}

.status-upcoming {
    background: #f2f4d8;
    color: var(--stuk-green-darker);
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    font-size: 0.68rem;
    font-weight: 700;
}

/* Services Section */
.services {
    background: var(--light-gray);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card-icon-wrap {
    background: linear-gradient(135deg, #f4f6e6 0%, #e8edc8 100%);
    padding: 2rem 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-svg {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: var(--stuk-green);
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    display: block;
}

.service-card-body {
    padding: 1rem 1rem 0.5rem;
    flex: 1;
}

.service-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.35rem;
}

.service-card-hint {
    font-size: 0.8rem;
    color: var(--medium-gray);
    line-height: 1.5;
    margin: 0;
}

.service-card-more {
    padding: 0.75rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--stuk-green);
    border-top: 1px solid #f0f0f0;
    transition: color 0.2s ease;
}

.service-card:hover .service-card-more {
    color: var(--stuk-green-dark);
}

/* Service modal */
.service-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal.open {
    display: flex;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}

.service-modal-card {
    position: relative;
    background: white;
    border-radius: var(--border-radius);
    width: 100%;
    max-width: 540px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: fadeInUp 0.25s ease-out;
    z-index: 1;
}

.service-modal-header {
    background: linear-gradient(135deg, var(--stuk-green) 0%, var(--stuk-green-darker) 100%);
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-modal-header.has-image {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.service-modal-header.has-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.service-modal-icon {
    z-index: 1;
}

.service-modal-icon svg {
    width: 56px;
    height: 56px;
    fill: none;
    stroke: rgba(255,255,255,0.9);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-modal-body {
    padding: 1.75rem 2rem 2rem;
}

.service-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.service-modal-text {
    font-size: 0.95rem;
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-modal-details {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-modal-details li {
    font-size: 0.9rem;
    color: var(--dark-gray);
    padding-left: 1.25rem;
    position: relative;
}

.service-modal-details li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--stuk-green);
    border-radius: 50%;
}

.service-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 32px;
    height: 32px;
    background: rgba(0,0,0,0.3);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    z-index: 2;
}

.service-modal-close:hover {
    background: rgba(0,0,0,0.5);
}

/* Footer */
.footer {
    background: #111;
    color: white;
    padding: 2rem 0 1rem;
    border-top: 2px solid #222;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-section {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--stuk-green);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section ul li a:hover {
    color: var(--stuk-green);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--stuk-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    padding: 7px;
}

.social-link img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.social-link:hover {
    background: var(--stuk-green-dark);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
    font-size: 0.95rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-section {
        min-width: 0;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-row {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto;
    }

    .event-row:hover {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .event-row .event-cta {
        grid-column: 2;
    }

    .event-hero-title {
        font-size: 1.5rem;
    }

    .event-hero {
        padding: 2rem 1.5rem 1.75rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-menu {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Page templates — shared ────────────────────────────────────────────────── */

.page-hero { background: #111; color: white; padding: 5rem 2rem 4rem; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--stuk-green) 0%, var(--stuk-green-darker) 100%); opacity: 0.1; }
.page-hero-inner { max-width: 800px; margin: 0 auto; position: relative; }
.page-breadcrumb { font-size: 0.8rem; color: #666; margin-bottom: 1.5rem; }
.page-breadcrumb a { color: var(--stuk-green); text-decoration: none; }
.page-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stuk-green); margin-bottom: 0.75rem; }
.page-title { font-size: 3rem; font-weight: 900; line-height: 1.1; margin-bottom: 1rem; }
.page-lead { font-size: 1.15rem; color: #aaa; line-height: 1.7; max-width: 620px; }

.content-section { padding: 4rem 2rem; }
.content-section.bg-light { background: var(--light-gray); }
.content-inner { max-width: 960px; margin: 0 auto; }
.content-inner-narrow { max-width: 720px; margin: 0 auto; }
.content-inner-narrow p { font-size: 1rem; color: var(--medium-gray); line-height: 1.8; margin-bottom: 1.25rem; }
.content-inner-narrow h2 { font-size: 1.5rem; font-weight: 700; color: var(--dark-gray); margin: 2.5rem 0 0.75rem; }
.content-inner-narrow h2:first-child { margin-top: 0; }

.section-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--stuk-green); margin-bottom: 0.4rem; }

.cta-banner { background: var(--stuk-green); color: white; padding: 3rem 2rem; text-align: center; }
.cta-banner h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 0.75rem; }
.cta-banner p { font-size: 1rem; opacity: 0.85; margin-bottom: 1.75rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.btn-white { background: white; color: var(--stuk-green); padding: 0.8rem 2rem; border-radius: var(--border-radius); text-decoration: none; font-weight: 700; font-size: 1rem; display: inline-block; transition: opacity 0.2s; }
.btn-white:hover { opacity: 0.9; }

/* ── O nás ──────────────────────────────────────────────────────────────────── */

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 2.5rem; }
.stat-block { text-align: left; }
.stat-block-num { font-size: 3rem; font-weight: 900; color: var(--stuk-green); line-height: 1; }
.stat-block-label { font-size: 0.85rem; color: var(--medium-gray); margin-top: 0.3rem; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.value-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.75rem; border-top: 3px solid var(--stuk-green); }
.value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.team-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); overflow: hidden; text-align: center; }
.team-avatar { height: 120px; background: linear-gradient(135deg, #f4f6e6 0%, #e8edc8 100%); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; }
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1rem; }
.team-name { font-size: 0.95rem; font-weight: 700; color: var(--dark-gray); }
.team-role { font-size: 0.78rem; color: var(--medium-gray); margin-top: 0.2rem; }
.team-card--more { border: 2px dashed var(--stuk-green); background: transparent; box-shadow: none; cursor: default; }
.team-card--more .team-avatar { background: transparent; }
.team-more-count { font-size: 2.6rem; font-weight: 900; color: var(--stuk-green); line-height: 1; }
.team-card--more .team-name { color: var(--dark-gray); }
.team-card--more .team-role { color: var(--stuk-green); }

.timeline { margin-top: 2.5rem; }
.timeline-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; padding: 1.25rem 0; border-bottom: 1px solid #eee; }
.timeline-item:last-child { border-bottom: none; }
.timeline-year { font-size: 1.4rem; font-weight: 900; color: var(--stuk-green); line-height: 1; padding-top: 0.15rem; }
.timeline-content h4 { font-size: 0.95rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 0.25rem; }
.timeline-content p { font-size: 0.87rem; color: var(--medium-gray); line-height: 1.5; margin: 0; }

/* ── Pro prváky ─────────────────────────────────────────────────────────────── */

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.feature-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.75rem; border-top: 3px solid var(--stuk-green); }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--dark-gray); }
.feature-card p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

.steps { list-style: none; padding: 0; margin-top: 2rem; counter-reset: steps; }
.steps li { counter-increment: steps; padding: 1.25rem 1.25rem 1.25rem 4rem; background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); margin-bottom: 1rem; position: relative; font-size: 0.95rem; color: var(--dark-gray); line-height: 1.6; }
.steps li::before { content: counter(steps); position: absolute; left: 1.25rem; top: 1.25rem; width: 28px; height: 28px; background: var(--stuk-green); color: white; border-radius: 50%; font-weight: 900; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.steps li strong { display: block; font-weight: 700; margin-bottom: 0.25rem; }

/* ── Rozcestník / praktický průvodce (link guide) ───────────────────────────── */

.section-lead { color: var(--medium-gray); max-width: 640px; line-height: 1.7; margin-top: 0.25rem; }
.guide-heading { text-align: left; font-size: 1.6rem; font-weight: 800; color: var(--dark-gray); margin-bottom: 0.5rem; }

.guide-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; margin-top: 1.75rem; align-items: start; }
.guide-item { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.1rem 1.35rem; border-left: 3px solid var(--stuk-green); }
.guide-item .guide-name { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 700; font-size: 1.02rem; color: var(--dark-gray); text-decoration: none; }
.guide-item .guide-name::after { content: '↗'; font-size: 0.8em; color: var(--stuk-green); opacity: 0; transform: translateX(-3px); transition: 0.2s ease; }
.guide-item .guide-name:hover { color: var(--stuk-green); }
.guide-item .guide-name:hover::after { opacity: 1; transform: translateX(0); }
.guide-item p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; margin: 0.4rem 0 0; }
.guide-item .guide-sublinks { margin-top: 0.6rem; font-size: 0.82rem; }
.guide-item .guide-sublinks a { color: var(--stuk-green-dark); text-decoration: none; font-weight: 600; }
.guide-item .guide-sublinks a:hover { text-decoration: underline; }
.guide-item .guide-sublinks span { color: #c4c4c4; margin: 0 0.4rem; }

.guide-note { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.25rem 1.5rem; margin-top: 1.75rem; font-size: 0.92rem; color: var(--medium-gray); line-height: 1.65; border-left: 3px solid var(--stuk-gray); }
.guide-note strong { color: var(--dark-gray); }

/* ── Editorial prose: přesunuto do css/content.css (sdílí se s editorem) ─────── */

/* ── Pro firmy ──────────────────────────────────────────────────────────────── */

.offer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.offer-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.75rem; display: flex; flex-direction: column; gap: 0.5rem; }
.offer-card-num { font-size: 2rem; font-weight: 900; color: var(--stuk-green); line-height: 1; }
.offer-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark-gray); }
.offer-card p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; margin: 0; }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2.5rem; text-align: center; }
.stat-highlight { padding: 1.5rem; }
.stat-highlight-num { font-size: 3rem; font-weight: 900; color: var(--stuk-green); line-height: 1; }
.stat-highlight-label { font-size: 0.85rem; color: var(--medium-gray); margin-top: 0.4rem; }

.contact-block { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 2rem; margin-top: 2rem; display: flex; gap: 2rem; align-items: flex-start; flex-wrap: wrap; }
.contact-block h3 { font-size: 1.1rem; font-weight: 700; color: var(--dark-gray); margin-bottom: 0.5rem; }
.contact-block p { font-size: 0.9rem; color: var(--medium-gray); line-height: 1.6; }
.contact-block a { color: var(--stuk-green); text-decoration: none; font-weight: 600; }

/* ── Členové ────────────────────────────────────────────────────────────────── */

.member-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.member-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); overflow: hidden; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.member-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.member-card.is-board { border-top: 3px solid var(--stuk-green); }
.member-photo { height: 130px; background: linear-gradient(135deg, #f4f6e6 0%, #e8edc8 100%); display: flex; align-items: center; justify-content: center; font-size: 3rem; position: relative; overflow: hidden; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; }
.member-board-badge { position: absolute; top: 0.6rem; right: 0.6rem; background: var(--stuk-green); color: white; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.15rem 0.45rem; border-radius: 20px; }
.member-info { padding: 0.9rem 1rem 1rem; }
.member-name { font-size: 0.92rem; font-weight: 700; color: var(--dark-gray); }
.member-role { font-size: 0.75rem; color: var(--stuk-green); font-weight: 600; margin-top: 0.15rem; }
.member-study { font-size: 0.73rem; color: var(--medium-gray); margin-top: 0.1rem; }
.member-more { font-size: 0.72rem; color: var(--medium-gray); padding: 0.5rem 1rem 0.75rem; border-top: 1px solid #f0f0f0; }

/* Alumni toolbar */
.alumni-toolbar { display: flex; gap: 0.4rem; margin-top: 1.5rem; }
.alumni-view-btn { background: white; border: 1px solid #ddd; border-radius: 6px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--medium-gray); transition: all 0.15s; }
.alumni-view-btn:hover { border-color: var(--stuk-green); color: var(--stuk-green); }
.alumni-view-btn.active { background: var(--stuk-green); border-color: var(--stuk-green); color: white; }

/* Alumni grid view */
.alumni-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 1.25rem; margin-top: 1rem; }
.alumni-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); overflow: hidden; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.alumni-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.alumni-photo { height: 100px; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; overflow: hidden; position: relative; }
.alumni-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4); }
.alumni-info { padding: 0.8rem 1rem 0.9rem; }
.alumni-name { font-size: 0.9rem; font-weight: 700; color: var(--dark-gray); }
.alumni-meta { font-size: 0.73rem; color: var(--medium-gray); margin-top: 0.15rem; }
.alumni-more { font-size: 0.72rem; color: var(--medium-gray); padding: 0.4rem 1rem 0.65rem; border-top: 1px solid #f0f0f0; }
.alumni-card--founder { border-top: 3px solid #C8A84B; }
.alumni-founder-badge { position: absolute; bottom: 0.35rem; left: 50%; transform: translateX(-50%); background: #C8A84B; color: white; font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; white-space: nowrap; padding: 0.15rem 0.45rem; border-radius: 20px; }
.member-modal-header.is-founder { background: linear-gradient(135deg, #C8A84B 0%, #a07830 100%); }

/* Alumni list view */
.alumni-grid.is-list { grid-template-columns: 1fr; gap: 0; border: 1px solid #eee; border-radius: var(--border-radius); overflow: hidden; }
.alumni-grid.is-list .alumni-card { display: flex; align-items: center; gap: 1rem; border-radius: 0; box-shadow: none; border-bottom: 1px solid #f0f0f0; padding: 0.6rem 1rem; }
.alumni-grid.is-list .alumni-card:last-child { border-bottom: none; }
.alumni-grid.is-list .alumni-card:hover { transform: none; box-shadow: none; background: #fafafa; }
.alumni-grid.is-list .alumni-card--founder { border-top: none; border-left: 3px solid #C8A84B; }
.alumni-grid.is-list .alumni-photo { height: 38px; width: 38px; min-width: 38px; border-radius: 50%; font-size: 1.1rem; }
.alumni-grid.is-list .alumni-founder-badge { display: none; }
.alumni-grid.is-list .alumni-info { padding: 0; flex: 1; display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; }
.alumni-grid.is-list .alumni-name { font-size: 0.88rem; }
.alumni-grid.is-list .alumni-meta { font-size: 0.73rem; margin-top: 0; }
.alumni-grid.is-list .alumni-more { display: none; }
.alumni-grid.is-list .alumni-founder-inline { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: #C8A84B; border: 1px solid #C8A84B; padding: 0.1rem 0.35rem; border-radius: 20px; white-space: nowrap; }

.member-modal { display: none; position: fixed; inset: 0; z-index: 2000; align-items: center; justify-content: center; padding: 1rem; }
.member-modal.open { display: flex; }
.member-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.member-modal-card { position: relative; background: white; border-radius: var(--border-radius); box-shadow: 0 20px 60px rgba(0,0,0,0.25); width: 100%; max-width: 420px; overflow: hidden; z-index: 1; }
.member-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(255,255,255,0.15); border: none; color: white; width: 28px; height: 28px; border-radius: 50%; font-size: 0.85rem; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 2; }
.member-modal-header { background: linear-gradient(135deg, var(--stuk-green) 0%, var(--stuk-green-darker) 100%); height: 320px; display: flex; align-items: center; justify-content: center; font-size: 4rem; overflow: hidden; }
.member-modal-header img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.member-modal-header.is-alumni { background: linear-gradient(135deg, #888 0%, #555 100%); }
.member-modal-body { padding: 1.5rem 1.75rem 1.75rem; }
.member-modal-name { font-size: 1.2rem; font-weight: 900; color: var(--dark-gray); }
.member-modal-role { font-size: 0.8rem; font-weight: 700; color: var(--stuk-green); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 0.2rem; }
.member-modal-role.is-alumni { color: var(--medium-gray); }
.member-modal-study { font-size: 0.85rem; color: var(--medium-gray); margin-top: 0.3rem; }
.member-modal-divider { border: none; border-top: 1px solid #eee; margin: 1.1rem 0; }
.member-modal-prompt { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--medium-gray); margin-bottom: 0.4rem; }
.member-modal-quote { font-size: 0.95rem; color: var(--dark-gray); line-height: 1.6; font-style: italic; }
.member-modal-quote::before,
.member-modal-quote::after { color: var(--stuk-green); font-style: normal; font-weight: 700; }
.member-modal-quote::before { content: '\201E'; margin-right: 0.15em; }
.member-modal-quote::after { content: '\201C'; margin-left: 0.1em; }

/* Org chart */
.org-chart-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin-top: 2.5rem; }
.org-chart-inner { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 2.5rem 2rem; display: inline-flex; flex-direction: column; align-items: center; min-width: 100%; box-sizing: border-box; }
.org-tree, .org-tree ul { list-style: none; padding: 0; margin: 0; }
.org-tree { display: flex; flex-direction: column; align-items: center; }
.org-tree ul { display: flex; flex-direction: row; justify-content: center; position: relative; padding-top: 30px; }
.org-tree ul::before { content: ''; position: absolute; top: 0; left: 50%; margin-left: -1px; width: 2px; height: 30px; background: #c9d46b; }
.org-tree li { display: flex; flex-direction: column; align-items: center; position: relative; padding: 30px 10px 0; }
.org-tree li::before { content: ''; position: absolute; top: 0; right: 50%; left: 0; height: 2px; background: #c9d46b; }
.org-tree li::after { content: ''; position: absolute; top: 0; left: 50%; right: 0; height: 2px; background: #c9d46b; }
.org-tree li:first-child::before { display: none; }
.org-tree li:last-child::after { display: none; }
.org-tree li:only-child::before, .org-tree li:only-child::after { display: none; }
.org-node { position: relative; padding: 0.55rem 1rem; background: white; border: 2px solid var(--stuk-green); border-radius: 8px; font-size: 0.82rem; font-weight: 600; color: var(--dark-gray); text-align: center; min-width: 110px; max-width: 150px; line-height: 1.35; white-space: normal; }
.org-node::before { content: ''; position: absolute; top: -30px; left: 50%; margin-left: -1px; width: 2px; height: 30px; background: #c9d46b; }
.org-tree > li > .org-node::before { display: none; }
.org-node--rank::before { display: none; }
.org-node--root { background: var(--stuk-green); color: white; font-size: 0.95rem; font-weight: 700; padding: 0.7rem 1.5rem; min-width: 130px; border-color: var(--stuk-green); }
.org-node--deputy { background: #f4f6e6; font-weight: 700; }
.org-node--rank { background: #fafafa; border-color: #bbb; border-style: dashed; color: var(--medium-gray); font-weight: 500; }
.org-rank-row { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; margin-top: 2rem; padding-top: 1.75rem; border-top: 1px dashed #ddd; width: 100%; }
.org-rank-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--medium-gray); }

/* ── Single event ───────────────────────────────────────────────────────────── */

.single-event { max-width: 760px; margin: 0 auto; }
.single-event-back { font-size: 0.85rem; color: var(--stuk-green); text-decoration: none; font-weight: 600; }
.single-event-back:hover { text-decoration: underline; }
.single-event-content { font-size: 1rem; line-height: 1.8; color: var(--dark-gray); }
.single-event-content h2, .single-event-content h3 { margin: 2rem 0 0.75rem; }
.single-event-content p { margin-bottom: 1.2rem; }

/* ── Events map ─────────────────────────────────────────────────────────────── */

.events-map-toolbar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.25rem; }
.events-map-controls { display: flex; align-items: center; gap: 0.75rem; }
.events-map-count { font-size: 0.8rem; color: var(--medium-gray); }
.events-map-year { font-size: 0.85rem; padding: 0.45rem 0.75rem; border-radius: 8px; border: 1px solid #ddd; color: var(--dark-gray); background: white; }
.events-map { height: 420px; width: 100%; border-radius: var(--border-radius); overflow: hidden; box-shadow: var(--shadow-light); }
.events-map .leaflet-popup-content a { color: var(--stuk-green-dark); font-weight: 700; text-decoration: none; }
.events-map .leaflet-popup-content a:hover { text-decoration: underline; }
.events-map .leaflet-popup-content-wrapper { border-radius: 10px; }
.events-map .leaflet-popup-tip,
.events-map .leaflet-popup-content-wrapper { box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.stuk-map-pin span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--stuk-green);
    border: 2px solid white;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    transition: transform 0.15s ease;
}
.stuk-map-pin:hover span { transform: scale(1.25); background: var(--stuk-green-dark); }

/* ── Archive ────────────────────────────────────────────────────────────────── */

.archive-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2.5rem; }
.archive-card { background: white; border-radius: var(--border-radius); box-shadow: var(--shadow-light); padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.archive-card-date { font-size: 0.75rem; color: var(--stuk-green); font-weight: 700; }
.archive-card-title { font-size: 1rem; font-weight: 700; color: var(--dark-gray); text-decoration: none; }
.archive-card-title:hover { color: var(--stuk-green); }
.archive-card-desc { font-size: 0.87rem; color: var(--medium-gray); line-height: 1.55; }

/* ── Stránkování archivu ────────────────────────────────────────────────────── */

/* Skryje nadpis, který WordPress generuje do <nav> jen pro odečítače obrazovky. */
.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap; border: 0;
}

.archive-pager { margin-top: 3rem; display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.archive-pager .nav-links { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 0.4rem; }
.archive-pager .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 2.5rem; height: 2.5rem; padding: 0 0.75rem;
    border: 1px solid #e6e6e6; border-radius: 8px;
    background: white; color: var(--dark-gray);
    font-size: 0.9rem; font-weight: 700; line-height: 1; text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.archive-pager a.page-numbers:hover { border-color: var(--stuk-green); color: var(--stuk-green-dark); background: #fbfcf2; }
.archive-pager a.page-numbers:focus-visible { outline: 2px solid var(--stuk-green); outline-offset: 2px; }
.archive-pager .page-numbers.current { background: var(--stuk-green); border-color: var(--stuk-green); color: white; }
.archive-pager .page-numbers.dots { border-color: transparent; background: none; color: var(--stuk-gray); min-width: 1.5rem; padding: 0; }
.archive-pager .page-numbers.prev,
.archive-pager .page-numbers.next { font-weight: 600; }
.archive-pager-status { margin: 0; font-size: 0.8rem; color: var(--medium-gray); }

@media (max-width: 480px) {
    .archive-pager .page-numbers { min-width: 2.2rem; height: 2.2rem; padding: 0 0.5rem; font-size: 0.85rem; }
}

/* ── Responsive additions ───────────────────────────────────────────────────── */

@media (max-width: 768px) {
    .page-title { font-size: 2rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: 1fr; }
    .timeline-item { grid-template-columns: 60px 1fr; gap: 1rem; }
}
