@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --blue: #00508E;
    --primary: #316494;
    --orange: #E1571A;
    --l-blue: #e5f2fe;
    --dark: #333333;
    --l-gray: #ebebeb;
    --tfont: "Roboto", sans-serif;
}

html {
    font-size: 15px;
    overflow-x: hidden;
}

html :where(.wp-block) {
    max-width: unset;
}

#adminmenu .wp-menu-image img {
    width: 20px;
}

body {
    color: var(--dark);
    font-family: var(--tfont);
    overflow-x: hidden;
    width: 100%;
    text-align: left;
}

.elementor-element {
    text-align: left !important;
}

.elementor-button {
    background: var(--primary) !important;
    text-transform: uppercase !important;
    font-weight: 500 !important;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
}

img {
    object-fit: cover;
}

img.alignright {
    float: right;
    margin-left: 1rem;
}

img.alignleft {
    float: left;
    margin-right: 1rem;
}

.hr {
    height: 2px;
    margin: 1rem 0;
    background: var(--primary);
}

a {
    color: var(--primary);
    text-decoration: none;
}

.mark,
mark {
    padding-left: 0;
    padding-right: 0;
    background: inherit;
    color: inherit;
}

mark.hightlight {
    background: #fef2c3;
}

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover,
.btn-primary:active {
    background: var(--orange);
    border-color: var(--orange);
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: var(--orange);
    border-color: var(--orange);
}

.btn-outline-primary {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-primary:hover,
.btn-outline-primary:active {
    background: var(--primary);
    border-color: var(--primary);
}

.wp-admin .search-form input {
    border: 1px solid;
    width: inherit;
}

.elementor-widget-video+.elementor-widget-heading .elementor-heading-title,
.elementor-button span {
    color: #fff;
}



/*HEADER*/
.header {
    margin-bottom: 1rem;
}

.header .logo img {
    max-width: 200px;
    height: auto;
}

.phone-mail {
    color: var(--primary);
    display: flex;
    gap: 1rem;
}

.phone-mail a {
    text-decoration: none;
    font-weight: 500;
    color: inherit;
    font-weight: bold;
}

.header .contacts {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    align-items: center;
}

.phone-mail svg {
    border: 1px solid;
    border-radius: 100%;
    padding: 2px;
    width: 16px;
    height: 16px;
    stroke-width: 2px;
}

.header .socials {
    gap: .5rem;
    display: flex;
}

.header .socials svg {
    stroke-width: 1.5px;
}

header.header .socials a {
    background: var(--l-gray);
    border-radius: 100%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    color: var(--blue);
    transition: 0.3s;
}

header.header .socials a:hover {
    background: var(--blue);
    color: white;
}

.search-bar {
    border: 1px solid var(--primary);
    border-radius: 2rem;
}

.search-form {
    display: flex;
}

.search-form input {
    border: none;
    background: none;
    width: 100%;
    padding-left: 1rem;
}

.search-form input::placeholder {
    color: var(--primary);
}

.search-bar svg {
    stroke: var(--primary);
    stroke-width: 2px;
}

.search-form input:focus {
    outline: none;
}

.nav-menu {
    background: var(--blue);
}

a.nav-link {
    color: white;
    text-transform: uppercase;
    transition: 0.3s;
    text-align: center;
    line-height: 1.1;
}


.navbar-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

a.nav-link:hover,
a.nav-link:focus,
a.nav-link:active {
    color: white;
    opacity: 0.7;
}

.fixed-menubtn {
    width: 50px;
    height: 50px;
    margin-left: auto;
}

.fixed-menu-container.hidden {
    right: -100%;
}

.fixed-menu-container {
    position: fixed;
    background: var(--blue);
    width: 100%;
    right: 0;
    z-index: 555;
    transition: 0.6s;
    height: 100%;
    top: 0;
    color: white;
    overflow: auto;
}

.fixed-menu-container a,
.fixed-menu-container h4 {
    color: white;
    text-decoration: none;
}

.fixed-menu-container h4 {
    text-transform: uppercase;
    font-size: 1.2rem;
}

.fixed-menu-container ul {
    padding: 0;
    list-style: none;
}

.weather {
    display: flex;
    color: white;
    align-items: center;
}

.weather .temp {
    font-weight: 300;
    font-size: 1.5rem;
}

body.fixed-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

body.fixed-menu-open::after {
    content: '';
    width: 100%;
    position: absolute;
    height: 100%;
    background: #00000087;
    top: 0;
    left: 0;
}

/*FOOTER*/
.footer {
    background: var(--blue);
    padding-top: 2rem;
    margin-top: 1rem;
}

.copyrights {
    color: white;
    font-size: .8rem;
    text-align: center;
    padding: 1rem 0;
}

.copyrights a {
    color: white;
    opacity: .7;
}

.copyrights p {
    margin: 0;
}

.footer h4,
.footer h4 a {
    color: white;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-transform: uppercase;
}

.footer ul {
    padding: 0;
    list-style: none;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.footer ul a {
    color: white;
    text-decoration: none;
}

.footer li {
    margin-bottom: 5px;
}

/*NEWONSITE*/
.articles-grid {
    display: flex;
    gap: 1rem;
}

.article-content p {
    margin-bottom: 0;
}

.blocks-header {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 0.2rem;
    width: fit-content;
    white-space: nowrap;
}

.cat-buttons {
    font-size: .8rem;
    justify-content: end;
    column-gap: 1rem;
    row-gap: 3px;
    margin-bottom: 1rem;
}

.cat-buttons .nav-link {
    color: var(--primary);
    padding: 2px 5px;
}

.cat-buttons .nav-link.active {
    color: white;
    background: var(--orange);
}

.blocks-header {
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: bold;
    display: flex;
    align-items: start;
    gap: 0.2rem;
    min-width: 30%;
}

.post-tabs {
    padding-bottom: 1rem;
}

.block-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 1rem 0;
}


.blocks-header svg {
    stroke: var(--orange);
    width: 32px;
    height: 32px;
}

.big-article {
    background: var(--l-blue);
    position: relative;
    width: 55%;
}

.stack-articles {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.small-article {
    position: relative;
    display: flex;
    background: var(--l-blue);
    margin-bottom: 1rem;
    justify-content: space-between;
    height: fit-content;
    align-items: center;
}

.small-article .article-content {
    padding: 1rem .5rem;
    margin-right: auto;
    width: 100%;
}

.big-article .article-content {
    padding: 1.5rem;
}

.article-text {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.big-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.big-article .featured-image {
    aspect-ratio: 1000/620;
}

.small-article .featured-image {
    /* aspect-ratio: 1000/620; */
    width: 65%;
    height: 100px;
}

.small-article h5 {
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    max-height: 55px;
}

/*SIDEBAR*/
.side-banner img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
}

.side-banner {
    display: block;
}

.small-article:last-child,
.side-banner:last-child {
    margin-bottom: 0;
}

.subscription-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 256px;
    text-align: center;
    margin-top: 12px;
}

.subscription-sidebar h3,
.subscription-sidebar p {
    text-align: center;
}

/*cat carousel*/
.carousel-item {
    margin-right: 1rem;
    aspect-ratio: 1000/620;
    background-size: cover;
    position: relative;
}

.overlay {
    background: linear-gradient(0deg, #505050, transparent 39%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.carousel-item h4 {
    font-size: 1rem;
    color: white;
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    font-weight: 400;
    text-shadow: 0 0 5px black;
}

.slick-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    height: 40px;
    width: 40px;
    border: none;
    border-radius: 100%;
    margin: auto;
    z-index: 55;
    background: white;
}

.slick-arrow svg {
    stroke: var(--orange);
}

.custom-prev-arrow {
    left: 0;
}

.custom-next-arrow {
    right: 0;
}

/*ICONLINKS*/
.iconlinks {
    margin-top: 1rem;
}

.ikonki-wrap {
    display: flex;
    flex-wrap: wrap;
    background: var(--l-blue);
    height: 100%;
}

.ikonka-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding: 1rem;
}

.ikonka-item img {
    width: 50%;
    height: auto;
}

.iconlinks h5 {
    font-size: 1rem;
}

.iconlinks a {
    text-decoration: none;
}

/*post tabs*/
.post-tabs .articles-grid .article-item {
    flex: 1;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.post-tabs .articles-grid h5 {
    font-size: 1rem;
    margin-bottom: 0;
}

.post-tabs .featured-image {
    aspect-ratio: 1000/620;
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    object-position: left;
}

.slick-list {
    padding: 0 20% 0 0 !important;
}

/*SINGLE*/
.entry-meta-stripe {
    display: flex;
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    margin-bottom: 1rem;
    justify-content: space-between;
}

.entry-meta .views,
.entry-meta-stripe .views {
    display: flex;
    gap: 3px;
}

.single-header .entry-date {
    color: gray;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 1rem;
    text-transform: lowercase;
}

.videogallery1-template-default .entry-date,
.videogallery1-template-default .entry-meta-stripe,
.photosgallery-template-default .entry-date,
.photosgallery-template-default .entry-meta-stripe {
    display: none;
}


.single .the-content {
    margin-bottom: 1rem;
}

.single .the-content a {
    font-weight: 600;
    color: var(--primary);
}

.the-content img {
    max-width: 100%;
}

.single-header .entry-date svg {
    width: 16px;
    height: 16px;
}


.entry-meta-stripe svg {
    width: 14px;
    height: 14px;
}

.entry-meta-stripe a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dotted;
    transition: .3s;
}

.entry-meta-stripe a:hover {
    background: #c6c6c6;
}

.single .featured-image {
    width: 100%;
    margin-bottom: 1rem;
}

.single .featured-image:has(+ .featured-caption),
.single .featured-image:has(+ .wp-caption-text) {
    margin: 0;
}


.featured-caption,
.wp-caption-text {
    font-size: .8rem;
    color: gray;
    font-style: italic;
    text-align: right;
}

.share-to svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5px;
}

.share-to a {
    background: var(--l-gray);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    transition: .3s;
}

.share-to {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin: 1rem 0;
}

.share-to a:hover {
    background: var(--primary);
    color: white;
}

.recent-posts {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recent-posts>article {
    flex: 1;
}

.recent-posts .entry-title {
    font-size: 1rem;
    margin: 0;
}

.recent-posts .entry-item img {
    margin-bottom: 1rem;
    width: 100%;
    aspect-ratio: 1000/620;
}

.recent-posts .entry-date {
    font-size: 0.8rem;
    color: gray;
    font-weight: 600;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 5px;
}

.entry-meta-stripe.meta-bottom {
    background: var(--l-gray);
    color: #646262;
    margin-top: 1rem;
    font-size: 0.8rem;
    align-items: center;
}

.entry-meta-stripe>div {
    max-width: 30%;
}

/* Always show arrows without breaking layout */
.elementor-lightbox .elementor-swiper-button {
    display: flex !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    z-index: 9999;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* Optional: adjust positions if needed */
.elementor-lightbox .elementor-swiper-button-next {
    right: 10px;
}

.elementor-lightbox .elementor-swiper-button-prev {
    left: 10px;
}


/*ARCHIVE*/
.archive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--primary);
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.topad-cat {
    max-width: 370px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.topad-cat img {
    height: 100%;
    object-fit: contain;
    max-height: 70px;
    width: fit-content;
}

.topad-cat span {
    color: black;
    font-size: 1;
    white-space: nowrap;
    font-weight: 600;
}

.entry-archive {
    display: flex;
    gap: 1rem;
    position: relative;
    max-height: 200px;
}

.entry-archive .entry-thumbnail {
    flex-basis: 50%;
    display: block;
}

.entry-archive h2.entry-title {
    font-size: 1.6rem;
}

.archive .entry-item,
.blog .entry-item,
.search .entry-item,
.page-template-tmp-razdel .entry-item {
    margin-bottom: 1rem;
}

.entry-archive .entry-thumbnail img {
    width: 100%;
    aspect-ratio: 1000/620;
}

.entry-archive .entry-header {
    width: 100%;
}

.entry-archive p.excerpt {
    height: 66px;
    overflow: hidden;
    position: relative;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    word-break: break-word;
}

.entry-archive .entry-header>.entry-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: gray;
    margin-bottom: .5rem;
}

.entry-archive .entry-link {
    display: flex;
    justify-content: end;
}

.custom-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0;
}

.custom-pagination .page-numbers {
    padding: 6px 12px;
    background: #f5f5f5;
    color: #7d7d7d;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 1px solid var(--l-gray);
    border-radius: .5rem;
}

.custom-pagination .page-numbers:hover {
    background: var(--primary);
    color: #fff;
}

.custom-pagination .current {
    background: var(--primary);
    color: #fff;
    font-weight: bold;
}

.wpcf7 input[type="url"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
    width: 100%;
    padding: 1rem;
    border-color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 5px;
}

.wpcf7-submit {
    background: var(--primary);
    color: white;
    padding: 0.5rem 2rem;
    border: none;
    border-radius: 4px;
    margin: a;
}

.formsum {
    display: flex;
    justify-content: center;
    position: relative;
}

.cf7-cf-turnstile {
    display: none;
}

.wpcf7-spinner {
    position: absolute;
}

.bannery-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/*NEWSPAPER-ARCHIVE*/
.gazeti {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.odna-gazeta {
    width: calc(25% - 1rem);
}

.odna-gazeta img {
    width: 100%;
}

.act-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
}

.btn-cat {
    background: var(--l-blue);
    color: var(--primary);
    padding: 3px 5px;
    font-size: .8rem;
}

.btn-cat.active {
    color: white;
}

.btn-cat:hover {
    background: var(--orange);
    color: white;
}

.single .content:has(.single-photogallery) .featured-image {
    display: none;
}

.classifieldcyprus-template-default .recent-posts {
    display: none;
}

.photogal-img {
    aspect-ratio: 1/1;
    border-radius: 1rem;
    width: 100%;
}

.single-photogallery {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.single-photogallery a {
    width: 32%;
}

.single-videogallery1 .featured-image {
    display: none;
}

.newonsite .bannery-wrap+.bannery-wrap {
    margin-top: 20px;
}

.newonsite .bannery-wrap {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-row {
    display: flex;
    gap: 20px;
}

.single-benefit {
    flex: 1;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--primary);
    padding: 1rem 0;
}

.single-benefit h5,
.single-benefit .text {
    flex: 0 0 auto;
}

.single-benefit .coupon-link {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

.benefit-row:last-child .single-benefit {
    border-bottom: none;
    padding-bottom: 0;
}

.single-benefit h5 {
    margin-bottom: 2rem;
}

.single-benefit .text {
    margin-bottom: 1rem;
}

.newonsiteandslider>div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.image-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--primary);
    padding: 1rem;
}

.images-links-block {
    flex-direction: column;
    display: flex;
    gap: 1rem;
}


/*MOBILE*/
@media (max-width: 767px) {
    .content {
        font-size: 20px;
    }

    a.nav-link {
        text-align: start;
    }

    h1.entry-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 1rem;
    }

    .newonsiteandslider>div {
        flex-direction: column-reverse;
    }

    .header .logo img {
        max-width: 100%;
    }

    .wp-block-separator,
    .hr {
        display: none;
    }

    section.iconlinks {
        display: none;
    }

    header.header .socials a {
        width: 35px;
        height: 35px;
        background: white
    }

    .share-to {
        flex-wrap: wrap;
        margin: 2rem 0;
        justify-content: space-between;
    }

    .share-to strong {
        width: 100%;
    }

    .header .socials {
        justify-content: end;
    }

    .fixed-menu-container {
        width: 100%;
        left: 0;
        right: auto;
        background: #00508ee3;
        backdrop-filter: blur(5px);
    }

    .fixed-menu-container.hidden {
        left: -100%;
    }

    .post-item .featured-image {
        width: 100%;
        margin-bottom: .5rem;
    }

    .recent-posts a {
        text-decoration: none;
    }

    .post-item h3 {
        font-size: 1.4rem;
    }

    .post-item {
        margin-bottom: 1.5rem;
        position: relative;
    }

    .newonsite-side {
        position: absolute;
        writing-mode: vertical-rl;
        text-orientation: mixed;
        transform: rotate(180deg);
        left: -18px;
        top: 0;
        bottom: 0;
        margin: auto;
        height: fit-content;
        font-size: 0.85rem;
        color: var(--primary);
    }

    .bannery-wrap {
        padding: 1rem 0;
        border-top: 1px solid var(--primary);
        border-bottom: 1px solid var(--primary);
        margin-bottom: 1rem;
    }

    .block-header {
        flex-wrap: wrap;
    }

    .post-tabs .articles-grid .article-item {
        flex: unset;
        width: 100%;
    }

    .articles-grid {
        flex-wrap: wrap;
        margin-bottom: 1rem;
    }

    .post-tabs .featured-image {
        width: 100%;
    }

    .footer h4:after,
    .accordion-menu h4:after {
        content: '';
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' class='icon icon-tabler icons-tabler-outline icon-tabler-chevron-down'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'/%3E%3Cpath d='M6 9l6 6l6 -6' /%3E%3C/svg%3E");
        width: 16px;
        height: 16px;
        display: block;
        transition: 0.3s;
        opacity: 0.5;
        background-size: cover;
    }

    .footer h4,
    .accordion-menu h4 {
        position: relative;
        display: flex;
        align-items: center;
        gap: 5px;
        width: fit-content;
        line-height: 2;
        font-size: 1rem;
        font-weight: 400;
    }

    .footer h4.active:after,
    .accordion-menu h4.active:after {
        transform: rotate(180deg);
    }

    .footer h4.active,
    .accordion-menu h4.active {
        border-bottom: 1px solid #ffffff80;
        margin-bottom: 1rem;
    }

    .recent-posts {
        flex-direction: column;
    }

    .entry-archive {
        flex-direction: column;
    }

    .share-to a {
        width: 35px;
        height: 35px;
        padding: 7px;
    }

    .entry-meta-stripe>div {
        max-width: 45%;
        width: 45%;
    }

    .entry-meta-stripe {
        flex-wrap: wrap;
        gap: 5px;
    }

    .mobile-banner {
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--primary);
        padding-bottom: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .topad-cat {
        flex-direction: column;
        max-width: 50%;
        align-items: start;
        gap: 0.5rem;
    }

    .topad-cat span {
        font-size: 1rem;
    }

    .topad-cat img {
        max-height: 50px;
    }

    h3.divider {
        color: white;
        text-transform: uppercase;
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }

    h3.divider::after {
        content: '';
        width: 100%;
        display: block;
        background: var(--orange);
        height: 2px;
    }

    .btn-group {
        flex-wrap: wrap;
        gap: 5px;
    }

    .btn-group>.btn,
    .btn-group>.btn-group:not(:last-child)>.btn,
    .btn-group>.btn.dropdown-toggle-split:first-child,
    .btn-group>.btn:not(:last-child):not(.dropdown-toggle),
    .btn-group>.btn-group:not(:first-child)>.btn,
    .btn-group>.btn:nth-child(n+3),
    .btn-group>:not(.btn-check)+.btn {
        border-radius: 5px;
    }

    .gazeti {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        flex-direction: column;
    }

    .odna-gazeta {
        width: 100%;
    }

    .btn-cat {
        padding: 0px 3px;
    }

    .footer h4,
    .footer h4 a {
        margin: 0;
        font-size: 1.2rem;
    }

    .single-photogallery a {
        width: 100%;
    }

    .blocks-header {
        white-space: normal;
    }

    .entry-archive .entry-link {
        display: none;
    }

    .archive .entry-item,
    .blog .entry-item,
    .search .entry-item,
    .page-template-tmp-razdel .entry-item {
        border-bottom: 1px solid gray;
    }

    div#conta p {
        text-align: initial
    }

    .sposor-banner-mob .mobile-banner {
        display: none
    }

    .mobile-small-banner img {
        width: 100%;
        margin-bottom: 1rem;
    }

    .topads-after-menu .mobile-small-banner {
        display: none;
    }

    section.linkscarousel {
        margin-bottom: 1rem;
    }

    .cat-buttons {
        font-size: 1rem;
        width: 100%;
    }

    .post-tabs .articles-grid h5 {
        font-size: 1.4rem;
    }

    .post-tabs .featured-image {
        max-height: none;
    }

    .recent-posts .entry-title {
        font-size: 1.4rem;
    }

    .entry-archive {
        max-height: unset;
    }

    .the-content h5 {
        font-size: 1.5rem;
    }

    .single-benefit {
        width: 100%;
        flex: none;
    }

    .entry-archive p.excerpt {
        height: unset;
    }

    .benefit-row {
        flex-direction: column;
    }
}