/*
// Created :: 2026-03-28
// Updated :: 2026-03-28
// Camp Herzog — redesign v2
*/

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }

/* Offset pro sticky nav při scroll na anchor */
html { scroll-padding-top: 90px; }

/* ============================================================
   INNER WRAPPER — sdílená šířka obsahu
   ============================================================ */
.nav_in,
.content_wrap {
    max-width: 95%;
    margin: 0 auto;
}

/* ============================================================
   NAVIGATION BAR  (sticky — přímo v DOM toku, ne v headeru)
   ============================================================ */
#nav_bar {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #1c1c1c;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}

.nav_in {
    display: flex;
    align-items: center;
    gap: 0;
    min-height: 58px;
    padding: 15px 0;
}

/* Menu — vlevo */
#menu { flex: 1; overflow: hidden; }

#menu ul {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    padding: 0;
}

#menu ul li a {
    display: block;
    padding: 10px 16px;
    font-size: 1.45rem;
    font-weight: 700;
    letter-spacing: .025em;
    color: rgba(255,255,255,.82);
    border-radius: 5px;
    transition: background .18s, color .18s;
    white-space: nowrap;
}

#menu ul li a:hover,
#menu ul li.active a {
    background: #5aaa38;
    color: #fff;
    text-decoration: none;
}

/* ── Pravá strana: kontakty + jazyk ── */
.nav_right {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 0 0 16px;
    flex-shrink: 0;
}

.kontakty {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.kontakty a {
    font-size: 1.2rem;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    text-decoration: none;
    transition: color .15s;
}

.kontakty a:hover { color: #6cba47; }

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lng_switcher { position: relative; }

.lng_btn {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
    padding: 10px 16px;
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    white-space: nowrap;
    transition: background .18s, border-color .18s;
    user-select: none;
}

.lng_btn:hover { background: rgba(90,170,56,.25); border-color: #6cba47; }
.lng_btn .lng_arrow { font-size: 1.2rem; opacity: .75; transition: transform .2s; }
.lng_btn[aria-expanded="true"] .lng_arrow { transform: rotate(180deg); }

.lng_dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border: 1px solid #dde8d5;
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    list-style: none;
    min-width: 170px;
    overflow: hidden;
    z-index: 500;
    animation: fadeDown .16s ease;
}

.lng_dropdown.open { display: block; }

.lng_dropdown li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    font-size: 1.35rem;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: background .13s;
}

.lng_dropdown li a:hover { background: #eef7e6; color: #2d6a1f; }
.lng_dropdown li a img { width: 24px; height: auto; border-radius: 2px; }
.lng_dropdown li.lng_current a { background: #eef7e6; color: #2d6a1f; font-weight: 600; }

/* ============================================================
   BURGER
   ============================================================ */
.nav_toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 10px;
    cursor: pointer;
    margin-right: 8px;
}

.nav_toggle_box { display: inline-block; }
.nav_toggle_bar {
    display: block;
    width: 26px; height: 2px;
    background: #fff;
    margin: 6px 0;
    transition: transform .25s, opacity .25s;
}

.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(2) { opacity: 0; }
.nav_toggle[aria-expanded="true"] .nav_toggle_bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Drawer ── */
.nav_drawer { position: fixed; inset: 0; z-index: 999; }
.nav_drawer[hidden] { display: none !important; }
.nav_drawer { background: rgba(0,0,0,.5); }

.nav_drawer_inner {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: min(86vw, 380px);
    background: #fff;
    padding: 20px 24px 40px;
    box-shadow: -8px 0 32px rgba(0,0,0,.2);
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .28s ease;
}

.nav_drawer.open .nav_drawer_inner { transform: translateX(0); }

.nav_close {
    position: absolute; right: 14px; top: 10px;
    background: transparent; border: 0;
    font-size: 32px; cursor: pointer; color: #333; line-height: 1;
}

.menu_all { list-style: none; margin: 55px 0 0; padding: 0; }
.menu_all li { border-bottom: 1px solid #eee; }
.menu_all li.lng_drawer_title {
    padding: 14px 6px 6px;
    font-size: 1.2rem; font-weight: 800;
    color: #2d6a1f; text-transform: uppercase; letter-spacing: .06em;
    border-bottom: none;
}
.menu_all li a {
    display: flex; align-items: center; gap: 9px;
    padding: 13px 6px; font-size: 1.5rem; color: #222;
    text-decoration: none; transition: background .15s, color .15s;
}
.menu_all li a:hover,
.menu_all li.active a { background: #eef7e6; color: #2d6a1f; }
.menu_all li a img { width: 24px; height: auto; border-radius: 2px; }

body.no_scroll { overflow: hidden; }

/* ============================================================
   LOGO SEKCE — 100% šířka, zelené pozadí, logo uprostřed
   ============================================================ */
#header_logo {
    width: 100%;
    background:
        radial-gradient(ellipse at 20% 70%, rgba(255,255,255,.18) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.12) 0%, transparent 55%),
        linear-gradient(160deg, #3d8828 0%, #5aaa38 50%, #6cba47 75%, #4d9530 100%);
    padding: 58px 0 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}


.logo_wrap {
    display: inline-block;
    position: relative;
    z-index: 1;
}

.logo_wrap img {
    max-height: 100px;
    width: auto;
    display: inline-block;
    filter: drop-shadow(0 3px 12px rgba(0,0,0,.3));
    transition: transform .3s;
}

.logo_wrap:hover img { transform: scale(1.03); }

/* ============================================================
   SLIDER
   ============================================================ */
.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #111;
    line-height: 0;
    border-radius: 12px;
}

.slider_track { position: relative; width: 100%; }

.slide {
    position: absolute;
    top: 0; left: 0; width: 100%;
    opacity: 0;
    transition: opacity .9s ease;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    position: relative;
    pointer-events: auto;
}

.slide img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    display: block;
}

.slider_prev, .slider_next {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,.4);
    border: none; color: #fff;
    font-size: 3rem;
    width: 48px; height: 64px;
    cursor: pointer; z-index: 10;
    transition: background .2s;
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
}

.slider_prev { left: 12px; }
.slider_next { right: 12px; }
.slider_prev:hover, .slider_next:hover { background: rgba(45,106,31,.85); }

.slider_dots {
    position: absolute;
    bottom: 14px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}

.slider_dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,.8);
    background: transparent;
    cursor: pointer; padding: 0;
    transition: background .2s, transform .2s;
}

.slider_dot.active { background: #6cba47; border-color: #6cba47; transform: scale(1.2); }

/* ============================================================
   CONTENT AREA — obecné
   ============================================================ */
#content { padding: 0; }

#content_obsah {
    max-width: 1100px;
    margin: 0 auto;
    padding: 44px 24px 70px;
}

/* ── H1 podstránek ── */
#content_obsah header h1 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1c3d0f;
    padding: 0 0 14px 22px;
    margin-bottom: 32px;
    border-left: 6px solid #6cba47;
    position: relative;
    letter-spacing: -.01em;
    line-height: 1.2;
}

/* ============================================================
   HP — plná šířka obsahu
   ============================================================ */
#content_obsah.hp {
    max-width: 100%;
    padding: 0;
}

/* Elementy s centrovaným layoutem uvnitř HP */
#content_obsah.hp > main > header,
#content_obsah.hp > main > .loga,
#content_obsah.hp > main > .piktogramy,
#content_obsah.hp > main > hr.breaker {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}

#content_obsah.hp > main > header {
    padding-top: 49px;
    padding-bottom: 8px;
}

#content_obsah.hp > main > header h1 { margin-bottom: 10px; }

/* Slider na HP — kraje stránky, bez border-radius */
#content_obsah.hp > main > .slider {
    border-radius: 0;
    margin: 0;
}

/* ============================================================
   HP — LOGA (ACSI, ADAC) — 2 sloupce
   ============================================================ */
.loga {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 28px 0 20px;
}

.loga .box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid #dde8d5;
    border-radius: 10px;
    padding: 20px 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    transition: box-shadow .2s, transform .2s;
}

.loga .box:hover {
    box-shadow: 0 6px 20px rgba(45,106,31,.12);
    transform: translateY(-2px);
}

.loga .box img { height: 54px; width: auto; flex-shrink: 0; }

.loga .box p {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.lngbox {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.lngbox a { display: inline-block; line-height: 0; border-radius: 3px; overflow: hidden; }

.lngbox img {
  width: 28px;
  height: auto;
  display: block;
  border-radius: 3px;
  transition: opacity .2s, box-shadow .2s, transform .15s;
}

.lngbox a:hover img { opacity: 1 !important; transform: scale(1.12); }
.lngbox a.lng_active img { opacity: 1 !important; }

/* ============================================================
   PIKTOGRAMY — centrované, boxíky s animací
   ============================================================ */
.piktogramy {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 24px 0 20px;
}

.piktogramy img {
    width: 52px;
    height: auto;
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    border: 1px solid #dde8d5;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    transition: transform .22s cubic-bezier(.34,1.56,.64,1), box-shadow .22s;
}

.piktogramy img:hover {
    animation: none !important;
    transform: translateY(-6px) scale(1.2);
    box-shadow: 0 10px 22px rgba(45,106,31,.3);
    border-color: #6cba47;
}

/* Vlna jen při načtení stránky */
body.loaded .piktogramy img { animation: pikt_wave .55s ease forwards; }

body.loaded .piktogramy img:nth-child(1)  { animation-delay: .00s; }
body.loaded .piktogramy img:nth-child(2)  { animation-delay: .06s; }
body.loaded .piktogramy img:nth-child(3)  { animation-delay: .12s; }
body.loaded .piktogramy img:nth-child(4)  { animation-delay: .18s; }
body.loaded .piktogramy img:nth-child(5)  { animation-delay: .24s; }
body.loaded .piktogramy img:nth-child(6)  { animation-delay: .30s; }
body.loaded .piktogramy img:nth-child(7)  { animation-delay: .36s; }
body.loaded .piktogramy img:nth-child(8)  { animation-delay: .42s; }
body.loaded .piktogramy img:nth-child(9)  { animation-delay: .48s; }
body.loaded .piktogramy img:nth-child(10) { animation-delay: .54s; }
body.loaded .piktogramy img:nth-child(11) { animation-delay: .60s; }
body.loaded .piktogramy img:nth-child(12) { animation-delay: .66s; }
body.loaded .piktogramy img:nth-child(13) { animation-delay: .72s; }
body.loaded .piktogramy img:nth-child(14) { animation-delay: .78s; }
body.loaded .piktogramy img:nth-child(15) { animation-delay: .84s; }

/* ============================================================
   HP SEKCE (next_articles) — plná šířka, střídavé pozadí
   ============================================================ */
.next_articles.hp { width: 100%; }
.next_articles.hp > div { width: 100%; }

.vypis_box.text {
    margin: 0;
    padding: 56px 24px;
    border: none;
    border-radius: 0;
    box-shadow: none;
    transition: none;
    animation: none;
}

.next_articles.hp > div:nth-child(odd)  > .vypis_box { background: #fff; }
.next_articles.hp > div:nth-child(even) > .vypis_box { background: #f3f7ef; }

/* Vnitřní obal — centruje obsah na max 1100px */
.vypis_inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vypis_box.text h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1c3d0f;
    margin-bottom: 36px;
    padding-bottom: 12px;
    border-bottom: 3px solid #6cba47;
    letter-spacing: -.01em;
    line-height: 1.2;
}

/* ── TinyMCE texty ── */
.tinymce { font-size: 1.55rem; line-height: 1.75; color: #333; }
.tinymce p { margin-bottom: 14px; }
.tinymce a { color: #2d6a1f; }
.tinymce a:hover { color: #5aaa38; }
.tinymce ul, .tinymce ol { margin: 12px 0 28px 22px; }
.tinymce li { margin-bottom: 8px; font-size: 1.55rem; }
.tinymce strong { font-weight: 700; }
.tinymce .mapa { margin: 20px 0; }
.tinymce iframe { max-width: 100%; border-radius: 8px; border: 0; }

/* Ceník tabulka */
.tinymce table.cenik {
    width: 100%;
    max-width: 560px;
    border-collapse: collapse;
    margin: 20px 0 28px;
    font-size: 1.5rem;
}

.tinymce table.cenik tr {
    border-bottom: 1px solid #e4eedd;
    transition: background .15s;
}

.tinymce table.cenik tr:nth-child(even) { background: #f3f7ef; }
.tinymce table.cenik tr:hover { background: #e6f3de; }

.tinymce table.cenik td {
    padding: 10px 14px;
    vertical-align: middle;
    color: #333;
    line-height: 1.4;
}

.tinymce table.cenik td:last-child {
    text-align: right;
    font-weight: 700;
    color: #2d6a1f;
    white-space: nowrap;
}

/* TinyMCE nadpisy — oranžové, větší */
.tinymce h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #d96000;
    margin: 22px 0 12px;
    letter-spacing: -.01em;
}

.tinymce h3 {
    font-size: 1.7rem;
    font-weight: 700;
    color: #2d6a1f;
    margin: 18px 0 10px;
}

/* ── sekce nadpis (h2 v .vypis_box) ── */
.vypis_box.text .tinymce h2 {
    font-size: 1.7rem;
    color: #d96000;
    border: none;
    padding: 0;
    margin: 18px 0 10px;
    display: block;
}

/* ============================================================
   GALERIE MINI
   ============================================================ */
.galerie_mini {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.galerie_mini a {
    display: block;
    overflow: hidden;
    border-radius: 6px;
    transition: transform .25s, box-shadow .25s;
}

.galerie_mini a:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 18px rgba(0,0,0,.28);
}

.galerie_mini img {
    height: 120px;
    width: auto;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
}

/* ============================================================
   NOVINKY — sekce s nadpisem NEWS
   ============================================================ */
.news_section {
    background: #fff;
    padding: 0 24px;
}

.news_section_inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 52px 0 48px;
}

.news_heading {
    font-size: 2.4rem;
    font-weight: 900;
    color: #1c3d0f;
    padding-bottom: 14px;
    margin-bottom: 0;
    border-bottom: 3px solid #6cba47;
    letter-spacing: -.01em;
}

.next_articles.hp.novinky {
    margin-top: 28px;
}

.vypis_box.novinky {
    padding: 20px 0;
    border-bottom: 1px solid #e4ddd3;
}

.vypis_box.novinky h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #1c3d0f;
    margin-bottom: 8px;
}

.vypis_box.novinky h2 a { color: #1c3d0f; }
.vypis_box.novinky h2 a:hover { color: #5aaa38; }

.vypis_box.novinky .datum {
    font-size: 1.25rem;
    color: #888;
    margin-bottom: 10px;
}

/* ============================================================
   HP FORMULÁŘ — full-width, světlá zelená
   ============================================================ */
.hp_formular_wrap {
    width: 100%;
    background: linear-gradient(160deg, #e8f5de 0%, #d5ecbf 55%, #c8e6aa 100%);
    margin: 0;
    padding: 56px 24px;
    position: relative;
    overflow: hidden;
}

.hp_formular_wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 30px,
        rgba(0,0,0,.025) 30px,
        rgba(0,0,0,.025) 31px
    );
    pointer-events: none;
}

.hp_formular_inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hp_formular_inner h2 {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1c3d0f;
    margin-bottom: 8px;
    letter-spacing: -.01em;
}

.hp_formular_perex {
    font-size: 1.5rem;
    color: #4a7a35;
    margin-bottom: 32px;
}

/* Formulář — pole pod sebou */
.hp_form .form_row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form_line_name  { max-width: 420px; }
.form_line_phone { max-width: 300px; }
.form_line_email { max-width: 420px; }
.form_line_message { margin-top: 4px; }
.form_line_message .inputdivokraj textarea { width: 100%; max-width: 600px; }

/* ============================================================
   FORMULÁŘE — obecné styly
   ============================================================ */
.form_line { margin-bottom: 14px; }

.form_line label {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d5a1a;
    margin-bottom: 6px;
    letter-spacing: .02em;
    text-transform: uppercase;
}

/* Label v bílém formuláři */
#content_obsah .form_line label { color: #444; text-transform: none; }

.inputdiv .inputdivokraj input,
.inputdiv .inputdivokraj textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1.5px solid #b8d8a0;
    border-radius: 7px;
    font-size: 1.45rem;
    font-family: inherit;
    background: rgba(255,255,255,.88);
    color: #1a1a1a;
    transition: border-color .2s, box-shadow .2s;
}

/* Pole v bílém formuláři */
#content_obsah .inputdiv .inputdivokraj input,
#content_obsah .inputdiv .inputdivokraj textarea {
    border-color: #cdd8c5;
    background: #fff;
}

.inputdiv .inputdivokraj input:focus,
.inputdiv .inputdivokraj textarea:focus {
    border-color: #6cba47;
    box-shadow: 0 0 0 3px rgba(108,186,71,.22);
    outline: none;
}

.inputdiv .inputdivokraj textarea { resize: vertical; min-height: 110px; }

#form_control_point, #form_control_point_hp { display: none; }

.btn {
    display: inline-block;
    background: #5aaa38;
    color: #fff;
    font-size: 1.55rem;
    font-weight: 800;
    padding: 13px 34px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    letter-spacing: .03em;
    transition: background .2s, transform .15s, box-shadow .2s;
    margin-top: 10px;
    text-decoration: none;
}

.btn:hover {
    background: #3d8a28;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(45,106,31,.35);
    text-decoration: none;
    color: #fff;
}

/* Tlačítko v HP formuláři — tmavě zelené na světlém pozadí */
.btn_send { background: #2d6a1f; color: #fff !important; }
.btn_send:hover { background: #1c3d0f; box-shadow: 0 6px 18px rgba(45,106,31,.4); }

/* ============================================================
   ZÁJEM stránka
   ============================================================ */
#content_obsah.zajem { max-width: 800px; }
fieldset#zajem { border: none; padding: 0; }
.column.column1 { width: 100%; }

/* Pole šířky na stránce zájem */
#content_obsah .inpt_jmeno  { max-width: 420px; }
#content_obsah .inpt_email  { max-width: 100%; }
#content_obsah .inpt_telefon { max-width: 300px; }
#content_obsah .inpt_zprava  { width: 100%; max-width: 600px; }

/* ============================================================
   FLASH ZPRÁVY
   ============================================================ */
div.error_box, div.success_box, div.info_box, div.warning_box {
    padding: 14px 20px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 1.45rem;
    font-weight: 600;
}

div.error_box   { background: #fde8e8; color: #b91c1c; border-left: 4px solid #b91c1c; }
div.success_box { background: #e8f7e4; color: #166534; border-left: 4px solid #22c55e; }
div.info_box    { background: #eff6ff; color: #1e40af; border-left: 4px solid #3b82f6; }
div.warning_box { background: #fffbeb; color: #92400e; border-left: 4px solid #f59e0b; }

/* ============================================================
   BREAKER
   ============================================================ */
.breaker { clear: both; border: 0; height: 0; }
hr.breaker { margin: 28px 0; border: 0; border-top: 1px solid #e4eedd; }
#content > hr.breaker { display: none; }

/* ============================================================
   SITEMAP
   ============================================================ */
#sitemap { margin: 20px 0; }
#sitemap ul { list-style: disc; padding-left: 22px; }
#sitemap ul.sub { list-style: circle; padding-left: 38px; margin-top: 4px; }
#sitemap li { margin: 6px 0; font-size: 1.5rem; }
#sitemap a { color: #2d6a1f; }
#sitemap a:hover { color: #5aaa38; }

/* ============================================================
   ADMIN BOX
   ============================================================ */
.admin_box {
    margin-top: 10px;
    padding: 5px 10px;
    background: #fff3cd;
    border-radius: 4px;
    font-size: 1.2rem;
    display: inline-block;
}

/* ============================================================
   PATIČKA — jemnější, vzdušnější
   ============================================================ */
footer {
    background: #1e1e1e;
    margin-top: 0;
    padding: 0 24px;
}

#paticka {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 0 90px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

#paticka .column { flex: 1 1 220px; }

#paticka h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #6cba47;
    margin-bottom: 16px;
    letter-spacing: .07em;
    text-transform: uppercase;
}

#paticka .tinymce, #paticka p {
    font-size: 1.35rem;
    color: rgba(255,255,255,.55);
    line-height: 1.9;
}

#paticka a { color: rgba(255,255,255,.55); }
#paticka a:hover { color: #6cba47; text-decoration: none; }

#copyright {
    background: #1e1e1e;
    text-align: center;
    padding: 14px 24px;
    font-size: 1.1rem;
    color: rgba(255,255,255,.3);
}

#copyright a { color: rgba(255,255,255,.3); }
#copyright a:hover { color: #6cba47; }
#copyright span { margin: 0 4px; }
#copyright span::before { content: "·"; margin-right: 8px; opacity: .4; }
#copyright span:first-child::before { content: ""; margin: 0; }

/* ============================================================
   ANIMACE
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes pikt_wave {
    0%   { transform: scale(1)    translateY(0); }
    35%  { transform: scale(1.18) translateY(-8px); box-shadow: 0 10px 22px rgba(45,106,31,.3); }
    70%  { transform: scale(1.05) translateY(-2px); }
    100% { transform: scale(1)    translateY(0); }
}
