/* Fazonetka – FAQ blok pro stránku Videa */
.fazonetka-video-faq {
    margin: 30px 0 36px;
    padding: 24px;
    background: #bce194;
    border-radius: 10px;
    font-family: inherit;
    color: #222;
}

.fazonetka-video-faq * {
    box-sizing: border-box;
}

.fazonetka-video-faq__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.fazonetka-video-faq__title-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.fazonetka-video-faq__star {
    flex: 0 0 auto;
    font-size: 34px;
    line-height: 1;
    color: #296974;
}

.fazonetka-video-faq__title {
    margin: 0 !important;
    padding: 0 !important;
    font-family: inherit !important;
    font-size: 28px;
    line-height: 1.2;
    font-weight: 700;
    color: #222;
}

.fazonetka-video-faq__note {
    flex: 0 1 360px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.fazonetka-video-faq__note img {
    display: block;
    width: min(360px, 100%);
    max-width: 100%;
    height: auto;
}

.fazonetka-video-faq__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fazonetka-video-faq__item {
    margin: 0;
    background: #fff;
    border: 1px solid rgba(41, 105, 116, 0.10);
    border-radius: 7px;
    overflow: hidden;
    transition: box-shadow .18s ease, transform .18s ease;
}

.fazonetka-video-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 60px;
    padding: 15px 18px;
    cursor: pointer;
    list-style: none;
    font-family: inherit;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    color: #222;
}

.fazonetka-video-faq__item summary::-webkit-details-marker {
    display: none;
}

.fazonetka-video-faq__item summary::marker {
    display: none;
}

.fazonetka-video-faq__question {
    min-width: 0;
}

.fazonetka-video-faq__plus {
    position: relative;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(188, 225, 148, 0.36);
}

.fazonetka-video-faq__plus::before,
.fazonetka-video-faq__plus::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 14px;
    height: 2px;
    background: #296974;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transition: transform .18s ease;
}

.fazonetka-video-faq__plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.fazonetka-video-faq__item[open] .fazonetka-video-faq__plus::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.fazonetka-video-faq__answer {
    padding: 0 18px 17px;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.6;
    color: #222;
}

.fazonetka-video-faq__answer p {
    margin: 0;
}

@media (hover: hover) and (pointer: fine) {
    .fazonetka-video-faq__item:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
    }
}

@media (max-width: 767px) {
    .fazonetka-video-faq {
        margin: 24px 0 28px;
        padding: 16px 12px;
        border-radius: 8px;
    }

    .fazonetka-video-faq__head {
        display: block;
        margin-bottom: 14px;
    }

    .fazonetka-video-faq__title-wrap {
        gap: 8px;
    }

    .fazonetka-video-faq__star {
        font-size: 28px;
    }

    .fazonetka-video-faq__title {
        font-size: 23px;
        line-height: 1.2;
    }

    .fazonetka-video-faq__note {
        justify-content: flex-end;
        margin: 8px 0 0 auto;
        max-width: 250px;
    }

    .fazonetka-video-faq__note img {
        width: 250px;
    }

    .fazonetka-video-faq__list {
        gap: 8px;
    }

    .fazonetka-video-faq__item summary {
        min-height: 54px;
        padding: 13px 14px;
        gap: 12px;
        font-size: 16px;
        line-height: 1.35;
    }

    .fazonetka-video-faq__plus {
        flex-basis: 26px;
        width: 26px;
        height: 26px;
    }

    .fazonetka-video-faq__answer {
        padding: 0 14px 14px;
        font-size: 15px;
        line-height: 1.55;
    }
}