body {
    max-width: none !important;
}

.faq__item .accordion-button {
    font-family: "Poppins", sans-serif;
}

div.ls-subtitle {
    margin-top: 0;
    margin-bottom: .5rem;
    font-family: "Rammetto One", cursive;
    font-weight: 400;
    line-height: 1.25;
}

.map__item-title {
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-size: 14px;
}


.header__search {
    margin: 0;
    position: relative;
}

.header__input {
    background-color: #f6f6f6;
    border: 0;
    border-radius: 5px;
    padding: 5px 10px;
}

.header__search-button {
    background: transparent;
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    padding: 0;
}

.header__search-button:hover {
    background-color: transparent;
}

.header__search-button svg {
    fill: #757575;
}

.header__search-wrapper {
    display: none;
}

.blog .header__search-wrapper {
    display: block;
}

@media (max-width: 1199px) {
    .ls-form-wrapper > iframe {
        height: 430px !important;
    }
}

@media (max-width: 992px) {
    .header__search-wrapper {
        order: 1;
    }

    #burger {
        order: 2;
    }
}


@media (max-width: 599px) {
    .header__input {
        width: 200px;
    }
}
@media (max-width: 399px) {
    .header__input {
        font-size: 12px;
        width: 170px;
    }
}

.post-meta-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.post-meta-bottom img {
    border-radius: 50%;
}

.post-meta-bottom .author-info {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.post-meta-bottom .author-info a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.post-meta-bottom .author-info .author-name {
    margin-left: 8px;
    font-weight: 500;
    font-size: 14px;
}

.post-meta-bottom .post-dates {
    text-align: right;
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

@media (max-width: 480px) {
    .post-meta-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .post-meta-bottom .post-dates {
        text-align: left;
        margin-top: 5px;
    }
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #f6f6f6;
    color: #222;
    padding: 15px 20px;
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.cookie-banner.show {
    display: block;
    opacity: 1;
}

.cookie-banner-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.cookie-banner p {
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 1.4;
    text-align: center;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-banner button {
    background: #0073e6;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-banner button:hover {
    background: #005bb5;
}

.cookie-banner button:last-child {
    background: #555;
}

.cookie-banner button:last-child:hover {
    background: #333;
}

@media (max-width: 480px) {
    .cookie-banner p {
        font-size: 14px;
    }
    .cookie-banner-buttons {
        flex-direction: column;
        gap: 8px;
    }
    .cookie-banner button {
        width: 100%;
    }
}