/* Footer - Recent Posts widget */
#footer .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
#footer .widget_recent_entries li {
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.75rem;
}
#footer .widget_recent_entries li:last-child {
    border-bottom: none;
}
#footer .widget_recent_entries li a {
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
    font-style: normal;
    flex: 1;
    transition: color 0.2s;
}
#footer .widget_recent_entries li a:hover {
    color: #e8740e !important;
}
#footer .widget_recent_entries .post-date {
    font-size: 0.72rem;
    opacity: 0.45;
    white-space: nowrap;
    flex-shrink: 0;
    font-style: normal;
}
#footer .widget_recent_entries + .seperator {
    display: none;
}

/* ===== Enfold Content Slider - dots ===== */
.avia-slideshow-dots.avia-slideshow-controls {
    text-align: center;
    padding: 1.2rem 0 0.5rem;
}
.avia-slideshow-dots .goto-slide {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 3px;
    font-size: 0;
    line-height: 0;
    color: transparent;
    text-indent: -9999px;
    overflow: hidden;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    vertical-align: middle;
}
.avia-slideshow-dots .goto-slide.active {
    background: #e8740e;
    transform: scale(1.3);
}
.avia-slideshow-dots .goto-slide:hover {
    background: #e8740e;
}

/* ===== Enfold Content Slider - prev/next arrows ===== */
.avia-content-slider .avia-slideshow-controls.avia-slideshow-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}
/* Make the parent slider position relative */
.avia-content-slider {
    position: relative;
}
.avia-content-slider .avia-slideshow-arrows a {
    pointer-events: auto;
    position: absolute;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.05);
    border-radius: 50%;
    transition: all 0.25s ease;
    color: #555 !important;
}
.avia-content-slider .avia-slideshow-arrows a:hover {
    background: #e8740e;
    color: #fff !important;
}
.avia-content-slider .avia-slideshow-arrows a svg {
    width: 18px;
    height: 18px;
}
.avia-content-slider .avia-slideshow-arrows .prev-slide {
    left: -22px;
}
.avia-content-slider .avia-slideshow-arrows .next-slide {
    right: -22px;
}
/* Hide arrow text */
.avia-content-slider .avia-slideshow-arrows .avia_hidden_link_text {
    display: none;
}

@media (max-width: 991px) {
    .avia-content-slider .avia-slideshow-arrows .prev-slide {
        left: 0;
    }
    .avia-content-slider .avia-slideshow-arrows .next-slide {
        right: 0;
    }
}
