.news-sidebar {
    padding-left: 24px;
}

.news-sidebar > section + section {
    margin-top: 24px;
}

.news-sidebar__search,
.news-sidebar__panel,
.news-sidebar__simrs {
    padding: 23px;
    background: #ffffff;
    border: 1px solid #dfe9e3;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(23, 51, 42, .055);
}

.news-sidebar__search {
    color: #ffffff;
    background:
        radial-gradient(circle at 90% 15%, rgba(255, 216, 20, .2), transparent 28%),
        linear-gradient(135deg, #075b35, #079447);
    border: 0;
}

.news-sidebar__eyebrow {
    display: block;
    margin-bottom: 5px;
    color: #079447;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.news-sidebar__search .news-sidebar__eyebrow {
    color: #b3edcc;
}

.news-sidebar__search h2,
.news-sidebar__heading h2,
.news-sidebar__location h2,
.news-sidebar__simrs h2 {
    margin: 0;
    color: #17332a;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
}

.news-sidebar__search h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: 1.18rem;
}

.news-sidebar__search-control {
    display: grid;
    overflow: hidden;
    align-items: center;
    padding-left: 13px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 11px;
    box-shadow: 0 8px 22px rgba(0, 52, 30, .17);
    grid-template-columns: 20px minmax(0, 1fr) auto;
}

.news-sidebar__search-control > i {
    color: #079447;
    font-size: .78rem;
}

.news-sidebar__search-control input {
    min-width: 0;
    padding: 12px 9px;
    color: #17332a;
    font-size: .8rem;
    background: transparent;
    border: 0;
    outline: 0;
}

.news-sidebar__search-control input::placeholder {
    color: #8a9a93;
}

.news-sidebar__search-control button {
    align-self: stretch;
    padding: 0 16px;
    color: #ffffff;
    font-size: .76rem;
    font-weight: 700;
    background: #17332a;
    border: 0;
    cursor: pointer;
    transition: background-color .2s ease;
}

.news-sidebar__search-control button:hover,
.news-sidebar__search-control button:focus-visible {
    background: #071c15;
}

.news-sidebar__heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 17px;
}

.news-sidebar__heading > i {
    color: #079447;
    font-size: 1.25rem;
}

.news-sidebar__heading > a {
    flex: 0 0 auto;
    margin-top: 18px;
    color: #087443;
    font-size: .7rem;
    font-weight: 700;
}

.news-sidebar__services {
    display: flex;
    flex-direction: column;
}

.news-sidebar__services > a {
    display: grid;
    align-items: center;
    gap: 11px;
    padding: 12px 0;
    color: #17332a;
    border-top: 1px solid #edf2ef;
    grid-template-columns: 40px minmax(0, 1fr) auto;
}

.news-sidebar__services > a:first-child {
    padding-top: 2px;
    border-top: 0;
}

.news-sidebar__services > a:last-child {
    padding-bottom: 0;
}

.news-sidebar__services > a > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: #087443;
    background: #eaf6ef;
    border-radius: 10px;
    transition: color .2s ease, background-color .2s ease;
}

.news-sidebar__services strong,
.news-sidebar__services small {
    display: block;
}

.news-sidebar__services strong {
    margin-bottom: 2px;
    font-size: .79rem;
}

.news-sidebar__services small {
    color: #7a8982;
    font-size: .67rem;
}

.news-sidebar__services > a > i {
    color: #a3b2ab;
    font-size: .62rem;
    transition: color .2s ease, transform .2s ease;
}

.news-sidebar__services > a:hover > span {
    color: #ffffff;
    background: #079447;
}

.news-sidebar__services > a:hover > i {
    color: #079447;
    transform: translateX(3px);
}

.news-sidebar__popular {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.news-sidebar__popular article {
    display: grid;
    align-items: start;
    gap: 12px;
    grid-template-columns: 92px minmax(0, 1fr);
}

.news-sidebar__popular-image {
    display: block;
    overflow: hidden;
    height: 78px;
    background: #eaf6ef;
    border-radius: 10px;
}

.news-sidebar__popular-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.news-sidebar__popular article:hover img {
    transform: scale(1.06);
}

.news-sidebar__popular time,
.news-sidebar__popular article > div > span {
    display: block;
    color: #839189;
    font-size: .63rem;
}

.news-sidebar__popular time i,
.news-sidebar__popular article > div > span i {
    margin-right: 4px;
    color: #079447;
}

.news-sidebar__popular h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 5px 0;
    font-size: .79rem;
    font-weight: 700;
    line-height: 1.38;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.news-sidebar__popular h3 a {
    color: #17332a;
}

.news-sidebar__popular h3 a:hover {
    color: #079447;
}

.news-sidebar__location {
    position: relative;
    overflow: hidden;
    min-height: 280px;
    color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(23, 51, 42, .14);
}

.news-sidebar__location > img,
.news-sidebar__location-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.news-sidebar__location > img {
    object-fit: cover;
}

.news-sidebar__location-overlay {
    background: linear-gradient(to top, rgba(4, 28, 19, .94), rgba(4, 28, 19, .08) 75%);
}

.news-sidebar__location-content {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 23px;
}

.news-sidebar__location-content > span {
    display: block;
    margin-bottom: 7px;
    color: #8ee7b6;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
}

.news-sidebar__location h2 {
    color: #ffffff;
}

.news-sidebar__location p {
    margin: 7px 0 13px;
    color: rgba(255, 255, 255, .75);
    font-size: .75rem;
    line-height: 1.5;
}

.news-sidebar__location a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    color: #17332a;
    font-size: .7rem;
    font-weight: 700;
    background: #ffd814;
    border-radius: 8px;
}

.news-sidebar__location a:hover {
    color: #17332a;
    background: #ffe45a;
}

.news-sidebar__simrs {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.news-sidebar__simrs-icon {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    color: #ffffff;
    font-size: 1.15rem;
    background: #087443;
    border-radius: 13px;
    box-shadow: 0 8px 20px rgba(7, 116, 67, .18);
}

.news-sidebar__simrs p {
    margin: 8px 0 0;
    color: #6e7e76;
    font-size: .74rem;
    line-height: 1.58;
}

@media (max-width: 991.98px) {
    .news-sidebar {
        padding-left: 15px;
    }

    .news-sidebar__panel,
    .news-sidebar__search,
    .news-sidebar__simrs {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .news-sidebar__location {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }
}

@media (max-width: 479.98px) {
    .news-sidebar__search,
    .news-sidebar__panel,
    .news-sidebar__simrs {
        padding: 19px;
    }

    .news-sidebar__popular article {
        grid-template-columns: 82px minmax(0, 1fr);
    }

    .news-sidebar__search-control button {
        padding: 0 12px;
    }
}
