/* =========================================================
   TURNAJ – POHÁR STAROSTY MĚSTA PODĚBRADY
   ========================================================= */

:root {
    --turnaj-blue: #073968;
    --turnaj-blue-dark: #032746;
    --turnaj-blue-light: #0b4d85;
    --turnaj-yellow: #f4bd00;
    --turnaj-yellow-dark: #ce9900;
    --turnaj-text: #17202a;
    --turnaj-light: #f4f6f8;
    --turnaj-border: #e6e9ed;
}

/* Odstranění přebytečných mezer článku Cassiopeia */

.com-content-article,
.com-content-article__body {
    width: 100%;
    max-width: none;
}

.turnaj-page {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   HERO FOTO
   ========================================================= */

.turnaj-hero{
    position:relative;
    overflow:hidden;
    border-bottom:6px solid #f4bd00;
    border-radius:10px 10px 0 0;
}

/* velikost obrázku */

.turnaj-hero-image{

    display:block;

    width:100%;

    height:clamp(320px,34vw,440px);

    object-fit:cover;

    object-position:center;
}

/* lehké přiblížení po najetí */

.turnaj-hero:hover .turnaj-hero-image{

    transform:scale(1.015);

}
/* =========================================================
   TLAČÍTKA
   ========================================================= */

.turnaj-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: -18px auto 0;
    padding: 0 30px 35px;
position:relative;

    z-index:10;
}

.turnaj-action {
    position: relative;
    display: flex;
    min-height: 82px;
    padding: 18px 52px 18px 20px;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    color: #ffffff;
    text-decoration: none !important;
    border-radius: 9px;
    box-shadow: 0 8px 20px rgba(3, 39, 70, 0.18);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.turnaj-action:hover,
.turnaj-action:focus {
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 13px 28px rgba(3, 39, 70, 0.25);
    filter: brightness(1.04);
}

.turnaj-action-blue {
    background:
        linear-gradient(135deg, var(--turnaj-blue-light), var(--turnaj-blue-dark));
    border-bottom: 6px solid #021c33;
}

.turnaj-action-yellow {
    color: var(--turnaj-blue-dark);
    background:
        linear-gradient(135deg, #ffd62f, var(--turnaj-yellow));
    border-bottom: 6px solid var(--turnaj-yellow-dark);
}

.turnaj-action-yellow:hover,
.turnaj-action-yellow:focus {
    color: var(--turnaj-blue-dark);
}

.turnaj-action-icon {
    display: flex;
    flex: 0 0 66px;
    width: 66px;
    height: 66px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
}

.turnaj-action-yellow .turnaj-action-icon {
    background: rgba(255, 255, 255, 0.55);
    border-color: rgba(3, 39, 70, 0.18);
}

.turnaj-action-icon svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.turnaj-action-text {
    display: block;
    flex: 1 1 auto;
}

.turnaj-action-text strong {
    display: block;
    font-size:30px;
    font-weight: 800;
    line-height: 1.15;
    text-transform: uppercase;
}

.turnaj-action-text small {
    display: none;
    margin-top: 7px;
    color: inherit;
    font-size: 15px;
    line-height: 1.35;
    opacity: 0.9;
}

.turnaj-action-arrow {
    position: absolute;
    right: 23px;
    font-size: 35px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.turnaj-action:hover .turnaj-action-arrow {
    transform: translateX(5px);
}

/* =========================================================
   INFORMACE
   ========================================================= */

.turnaj-info {
    padding: 25px 35px 48px;

    text-align: center;
}

.turnaj-section-heading h2,
.turnaj-finale h2 {
    margin: 0;
    color: var(--turnaj-blue);
    font-size: 42px;
    font-weight: 850;
    line-height: 1.15;
}

.turnaj-heading-decoration {
    display: flex;
    margin: 13px auto 23px;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.turnaj-heading-decoration span:not(.turnaj-crown) {
    display: block;
    width: 65px;
    height: 3px;
    background: var(--turnaj-yellow);
    border-radius: 5px;
}

.turnaj-heading-decoration .turnaj-crown {
    color: var(--turnaj-yellow);
    font-size: 27px;
    line-height: 1;
}

.turnaj-info-text {
    max-width: 1040px;
    margin: 0 auto;
}

.turnaj-info-text p {
    margin: 0 auto 18px;
    color: var(--turnaj-text);
    font-size: clamp(17px, 1.7vw, 21px);
    line-height: 1.7;
}

.turnaj-info-text p:last-child {
    margin-bottom: 0;
}

/* =========================================================
   UPOZORNĚNÍ
   ========================================================= */

.turnaj-notice {
    display: flex;
    max-width: 1240px;
    margin: 5px auto 38px;
    padding: 23px 30px;
    align-items: center;
    justify-content: center;
    gap: 17px;
    background:
        linear-gradient(90deg, #fff7cf, #fff2b6);
    border-left: 7px solid var(--turnaj-yellow);
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(206, 153, 0, 0.1);
}

.turnaj-notice-icon {
    display: flex;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--turnaj-yellow);
    border-radius: 50%;
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 700;
}

.turnaj-notice p {
    margin: 0;
    color: #171717;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.5;
}

/* =========================================================
   ZÁVĚR STRÁNKY
   ========================================================= */

.turnaj-finale {
    position: relative;
    padding: 55px 30px 60px;
    overflow: hidden;
    text-align: center;
    background:
        linear-gradient(135deg, #f3f6f9, #e8edf2);
    border-top: 1px solid var(--turnaj-border);
}

.turnaj-finale::before,
.turnaj-finale::after {
    position: absolute;
    width: 250px;
    height: 250px;
    content: "";
    background: rgba(244, 189, 0, 0.08);
    border-radius: 50%;
}

.turnaj-finale::before {
    top: -165px;
    left: -80px;
}

.turnaj-finale::after {
    right: -80px;
    bottom: -165px;
}

.turnaj-finale-symbol {
    position: relative;
    z-index: 1;
    margin-bottom: 8px;
    color: var(--turnaj-yellow);
    font-size: 35px;
}

.turnaj-finale h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(32px, 4vw, 48px);
}

.turnaj-finale p {
    position: relative;
    z-index: 1;
    margin: 14px 0 0;
    color: var(--turnaj-blue-dark);
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 750;
}

/* =========================================================
   MOBILNÍ ZOBRAZENÍ
   ========================================================= */

@media (max-width: 900px) {

    .turnaj-page {
        border-radius: 0;
    }

    .turnaj-hero-image {
        min-height: 250px;
    }

    .turnaj-actions {
        grid-template-columns: 1fr;
        max-width: 650px;
        padding: 30px 18px 20px;
    }

    .turnaj-info {
        padding: 25px 22px 38px;
    }

    .turnaj-notice {
        margin: 5px 20px 30px;
    }
}

@media (max-width: 600px) {

    .turnaj-hero-image {
        min-height: 210px;
        object-position: center;
    }

    .turnaj-action {
        min-height: 98px;
        padding: 18px 48px 18px 17px;
        gap: 14px;
    }

    .turnaj-action-icon {
        flex-basis: 52px;
        width: 52px;
        height: 52px;
    }

    .turnaj-action-icon svg {
        width: 28px;
        height: 28px;
    }

    .turnaj-action-text strong {
        font-size: 20px;
    }

    .turnaj-action-text small {
        font-size: 13px;
    }

    .turnaj-action-arrow {
        right: 16px;
        font-size: 28px;
    }

    .turnaj-info {
        padding-right: 17px;
        padding-left: 17px;
    }

    .turnaj-info-text p {
        font-size: 17px;
        line-height: 1.55;
    }

    .turnaj-notice {
        padding: 19px 17px;
        align-items: flex-start;
        text-align: left;
    }

    .turnaj-notice-icon {
        flex-basis: 35px;
        width: 35px;
        height: 35px;
        font-size: 22px;
    }

    .turnaj-finale {
        padding: 43px 18px 48px;
    }
}

.btn-icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
}

.turnaj-action-blue .btn-icon {
    color: #ffffff;
}

.turnaj-action-yellow .btn-icon {
    color: #000000;
}

@media (max-width: 768px) {

.turnaj-hero-image{
    object-position: center center !important;
}

.turnaj-hero{
    overflow:hidden;
    max-height:260px;
}

}

/* desktop */
.hero-desktop{
    display:block;
    width:100%;
    border-radius:18px;
}

/* mobil */
.hero-mobile{
    display:none;
    width:100%;
    border-radius:18px;
}

/* přepnutí na mobil */
@media (max-width:768px){

.hero-desktop{
    display:none;
}

.hero-mobile{
    display:block;
}

}