main {
    position: relative;
    background-image: url('../img/fundo-branco-urb-grill.webp');
    background-color: #F0EFEB;
    overflow: hidden;
    padding: 10px;
}
main::before {
    content: "\e901";
    font-family: 'icomoon';
    position: absolute;
    font-size: 84rem;
    color: #ff0000;
    filter: opacity(.04);
    bottom: 0;
    left: 64px;
    transform: translateY(34%);
    pointer-events: none;
}
main h1 {
    text-align: center;
    font-weight: 700;
    font-size: 2.15rem;
    margin: 32px 0 85px 0;
}
main h1 span {
    position: relative;
}
main h1 span::before {
    content: "\e901";
    font-family: 'icomoon';
    position: absolute;
    font-size: 2.6rem;
    left: -64px;
    bottom: 8px;
    font-weight: 500;
}
main .wrapper-main {
    padding: 0 56px;
    margin-bottom: 86px;
}
main .news-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 20px;
}
main .news-row .img-wrapper {
    display: inline-flex;
    position: relative;
    max-width: 600px;
    width: 100%;
    /* max-height: 720px; */
    height: auto;
    box-shadow: 0 8px 16px -4px #787878;
}
main .news-row .img-wrapper iframe {
    min-height: 350px;
}
main .news-row .img-wrapper iframe,
main .news-row .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
}
main .search .box {
    background-color: #EFEBE8;
    color: #232323;
    padding: 20px;
    box-shadow: 0 8px 16px -4px #787878;
    margin-bottom: 32px;
}
main .search h3 {
    font-size: 1.6rem;
}
main .search h3,
main .search .search-links ul {
    margin-left: 12px;
    margin-bottom: 10px;
}
main .search .search-links li {
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 24px;
}
main .search .search-links li span {
    font-size: .6rem;
}
main .search .input-field {
    position: relative;
}
main .search .input-field i {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 1.66rem;
    pointer-events: none;
}
main .search input {
    background-color: unset;
    border: #232323 1px solid;
    padding: 8px 46px 8px 12px;
    font-size: 1.4rem;
    width: 100%;
}
main .search input::placeholder {
    color: #232323;
    font-weight: 500;
    font-family: itc;
}
main .news-body .date-and-links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
main .news-body .footer-share a {
    margin-right: 10px;
}
main .news-body p,
main .news-body .post-date {
    font-size: 1.4rem;
}
main .news-row .search-links li span,
main .news-body .post-date {
    text-transform: uppercase;
}
main .news-body h2 {
    margin: 20px 0;
    font-size: 1.8rem;
}
main .news-body p {
    margin: 15px 0;
}
summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}
summary::after {
    content: '';
    width: 0;
    height: 0;
    border-top: 10px solid #15171b;
    border-inline: 7px solid transparent;
    transition: 0.2s;
}
details[open] > summary::after {
  transform: rotate(-180deg);
}
section.link-banner h3 span {
    text-wrap: wrap;
}
ul.pagination {
    display: flex;
    justify-content: center;
    gap: 20px;
}
ul.pagination .page-link {
    font-size: 1.4rem !important;
    font-weight: 400;
}
ul.pagination .page-item.active .page-link {
    font-weight: 600;
}
ul.box-result {
    display: block;
    position: absolute;
    background-color: #EFEBE8;
    color: #232323;
    box-shadow: 0 8px 16px -4px #787878;
    left: 0;
    width: 100%;
    z-index: 2;
}
ul.box-result p {
    padding: 8px 10px;
}
ul.box-result li:nth-child(even) p {
    background-color: #dfdad6;
}
ul.box-result p:hover {
    background-color: #d3cfcc !important;
}
@media(max-width: 1000px) {
    main .news-row {
        flex-direction: column-reverse;
    }
}
@media(max-width: 640px) {
    div.search.desktop{
        display: none !important;
    }
    div.search.mobile{
        display: block !important;
    }
    main h1{
        margin: 32px 0;
    }
    main h1 span::before {
        left: 50%;
        transform: translateX(-50%);
        bottom: 112%;
    }
    main .wrapper-main {
        padding: unset;
    }
}
