/* =========================================================
   2. TITULEK STRÁNKY
========================================================= */

.tato-kniha-first-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
    font-size: 50px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: bold;
    color: #000;
    margin-bottom: 2vh;
}

.tato-kniha-first-section-title::before {
    content: "";
    width: 100px;
    height: 14px;
    display: block;

    background:
        linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0)) top / 150px 2px no-repeat,
        linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0)) bottom / 50px 2px no-repeat;
}

.tato-kniha-first-section-title::after {
    content: "";
    width: 100px;
    height: 14px;
    display: block;

    background:
        linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0)) top / 150px 2px no-repeat,
        linear-gradient(to right, rgba(0,0,0,1), rgba(0,0,0,0)) bottom / 50px 2px no-repeat;
}


/* =========================================================
   3. TATO KNIHA - FIRST SECTION
========================================================= */

#tato-kniha-first-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #F7F2EC;
}

.tato-kniha-first-section-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}


/* =========================================================
   3A. LEVÁ ČÁST (OBRÁZEK)
========================================================= */

.tato-kniha-first-section-content-left {
    width: 100%;
}

.tato-kniha-book-image-box img {
    width: 78%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.18));
}


/* =========================================================
   3B. PRAVÁ ČÁST (TEXT)
========================================================= */

.tato-kniha-first-section-content-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.tato-kniha-book-title h2 {
    font-size: 50px;
    line-height: 1.1;
    color: #000;
    margin: 0 0 20px;
    font-weight: 700;
}

.tato-kniha-book-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #1b1b1b;
    font-style: italic;
    margin: 0;
}


/* =========================================================
   3C. INFO GRID
========================================================= */

.tato-kniha-book-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 50px;
}

.tato-kniha-first-box h3 {
    font-size: 22px;
    line-height: 1.2;
    color: #000;
    margin: 0 0 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.tato-kniha-first-box p {
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin: 0;
}

.tato-kniha-first-box p + p {
    margin-top: 4px;
}


/* =========================================================
   3D. TLAČÍTKA
========================================================= */

.tato-kniha-book-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.tato-kniha-book-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 220px;
    height: 52px;
    padding: 0 24px;
    background-color: #616952;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s ease;
}

.tato-kniha-book-buttons a:hover {
    color: #000;
}


/* =========================================================
   4. BOOK AUTHORS SECTION
========================================================= */

#book-authors-section {
    width: 100%;
    padding: 10px 20px;
    background-color: #E5DCD3;
}

.book-authors-wrap {
    max-width: 1150px;
    margin: 0 auto;
}

.book-authors-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.book-authors-heading h2 {
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 15px;
}

.book-authors-heading p {
    font-size: 17px;
    line-height: 1.7;
    color: #000;
}


/* =========================================================
   4A. AUTOŘI GRID
========================================================= */

.book-authors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.book-author-card {
    background-color: #F7F2EC;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.book-author-text {
    padding: 30px;
}

.book-author-role {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #616952;
    margin-bottom: 20px;
}

.book-author-text h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.book-author-text p {
    font-size: 16px;
    line-height: 1.7;
}

.book-authors-quote {
    text-align: center;
    margin: 40px 0px;
}

.book-authors-quote p {
    font-size: 28px;
    line-height: 1.4;
    font-style: italic;
}

/* =========================================================
   GALLERY SECTION
========================================================= */

#gallery-section {
    width: 100%;
    padding: 70px 20px 10px;
}

#gallery-section h2 {
    text-align: center;
    font-size: 40px;
    line-height: 1.2;
    color: #000;
    margin-bottom: 10px;
}

#gallery-section p {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    color: #000;
    margin-bottom: 20px;
}

.gallery-wrap {
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;	
    align-items: center;
    justify-items: center;
}

.gallery-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================================
   BOOK AUTHORS RESPONSIVE
========================================================= */

@media (min-width: 769px) and (max-width: 1100px) {
    .tato-kniha-first-section-content {
    grid-template-columns: 1fr;
    }

    .tato-kniha-book-image-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tato-kniha-book-image-box img {
        width: 40%;
        height: 100%;
        object-fit: cover;
    }

    .tato-kniha-first-section-content-right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .tato-kniha-first-section-content {
        grid-template-columns: 1fr;
    }

    .tato-kniha-book-image-box {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .tato-kniha-first-section-content-right {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .tato-kniha-book-title h2 {
        font-size: 30px;
    }

    .tato-kniha-first-box h3 {
        font-size: 18px;
    }

    .tato-kniha-first-box p + p {
        font-size: 16px;
    }

    .tato-kniha-book-buttons {
        justify-content: center;
        align-items: center;
    }

    .tato-kniha-book-image-box img {
        width: 40%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-wrap {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #book-authors-section {
        padding: 50px 15px;
    }

    .book-authors-heading h2 {
        font-size: 30px;
    }

    .book-authors-heading p {
        font-size: 16px;
    }

    .book-authors-grid {
        grid-template-columns: 1fr;
    }

    .book-author-text {
        padding: 24px 20px;
    }

    .book-author-text h3 {
        font-size: 24px;
    }

    .book-authors-quote p {
        font-size: 22px;
    }

    .tato-kniha-first-section-title {
        font-size: 40px;
        gap: 10px;
        margin-bottom: 10px;
    }

    .tato-kniha-first-section-title::before {
        width: 50px;
        height: 10px;
    }

    .tato-kniha-first-section-title::after {
        width: 50px;
        height: 10px;
    }

}











.excerpt-cta__button {
      display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 250px;
    height: 50px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #616952;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fa-solid fa-circle-check {
  color: #616952;
}

.about-book__list {
  list-style-type: none;
}