.wrap__article-content img {
    max-width: 100%;
    height: auto;
}

.text-xs {
    font-size: 0.75rem;
}

.text-decoration-underline {
    text-decoration: underline;
}

.breadcrumbs__item {
    display: inline;
}

button.nav-link {
    border: 0;
}

button.nav-link:focus {
    outline: none;
}

.post-carousel .item .post-title {
    font-size: 1.2rem;
    font-weight: bold;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.post-carousel .item .post-date {
    font-size: 0.75rem;
    font-weight: normal;
}

.post-carousel .item .post-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.logo {
    max-width: 240px;
}

.logo-footer {
    max-width: 100%;
}

.card__post__ad:hover img{
    transform: scale(1);
    transition: transform 0.3s ease-in-out;
}

#header-ads {
    position: relative;
    width: 100%;
    height: 90px;
    margin: auto;
}

#header-ads a {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#header-ads a img {
    width: 100%;
    height: auto;
    display: block;
}

#tabs-ads {
    position: relative;
    width: 100%;
    min-height: 384px;
    margin: auto;
}

#tabs-ads a {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#tabs-ads a img {
    width: 100%;
    height: auto;
    display: block;
}

.popular__section-tabs {
    background-color: #f8f9fa;
    border-top: 4px solid #c00;
    padding: 20px;
}

.dropdown-item.active:hover,
.dropdown-item:active:hover {
    background-color: #c00;
    color: #fff;
}

@media screen and (max-width: 768px) {
    #header-ads {
        height: 36px;
    }
    #tabs-ads {
        min-height: 760px;
    }
    .popular__section-tabs .nav-link {
        font-size: 0.875rem;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.aspect-ratio-16-9 {
    aspect-ratio: 16 / 9;
}

.aspect-ratio-5-4 {
    aspect-ratio: 5 / 4;
}

.aspect-ratio-4-3 {
    aspect-ratio: 4 / 3;
}

@media screen and (min-width: 992px) {
    .aspect-ratio-lg-5-4 {
        aspect-ratio: 5 / 4;
    }
}

.article__entry-carousel-three h5 {
    font-size: 1rem;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.object-contain {
    object-fit: contain!important;
}

.vertical-post-widget.block-header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 0.875rem;
    padding: 0 15px;
}

.vertical-post-widget.block-header h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.article__content h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: calc(1.15em * 2);
    max-height: calc(1.15em * 2);
}

.article__content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    height: calc(24px * 3);
    max-height: calc(24px * 3);
}

.card__post__list .list-number {
    background-color: #e80202;
    color: #ffffff;
}

.widget__footer__address a {
    font-weight: 400!important;
    line-height: 16px !important;
}

/*
.ticker-wrapper {
    position: relative;
    overflow: hidden;
}
.ticker-wrapper::before,
.ticker-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 48px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #fff 0%, rgba(255,255,255,0) 100%);
}
.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #fff 0%, rgba(255,255,255,0) 100%);
}
#ticker { position: relative; white-space: nowrap; will-change: transform; }
#ticker > li { white-space: nowrap; }
*/

.ticker {
  position: relative;
  overflow: hidden;
  --duration: 40s;
}

.ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: ticker-scroll var(--duration) linear infinite;
}

.ticker__list {
  display: inline-flex;
  white-space: nowrap;
  padding: 0;
  margin: 0;
}

.ticker {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}

.ticker:hover .ticker__track { animation-play-state: paused; }

@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.exchange__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    justify-items: center;
}

@media (max-width: 768px) {
    .exchange__list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .exchange__list {
        grid-template-columns: 1fr;
    }
}

.slick-dots {
    gap: 5px;
    bottom: -65px!important;
}

.slick-dots li {
    background-color: #efefef;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.slick-dots li.slick-active {
    background-color: #c00;
    color: #ffffff;
}

@media (max-width: 768px) {
    .slick-dots {
        bottom: -35px!important;
    }

    .slick-dots li {
        width: 24px;
        height: 24px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .slick-dots {
        bottom: 8px!important;
    }
    .slick-dots li {
        width: 20px;
        height: 20px;
        font-size: 0.75rem;
    }
}

.list-inline-social-item a {
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}

.list-inline-social-item a:hover {
    background-color: #c00;
    border-color: #c00;
    color: #ffffff!important;
    text-decoration: none;
}

.list-inline-social-item {
    display: block;
    margin-bottom: 10px!important;
}

.list-inline-social-item:last-child {
    margin-bottom: 0;
}

section {
    padding: 15px 0;
}

.btn-rek-ver {
    font-size: 13px;
    color: #ffffff!important;
}

.btn-rek-ver:hover {
    text-decoration: none;
    color: #c00!important;
}

.wrapper__footer .widget__footer .link__category ul li a {
    font-weight: 400;
}

@media (max-width: 1366px) {
    .footer-bottom span,
    .footer-bottom a {
        font-size: 11px!important;
    }
}
