/* Custom Sidebar Styles for Beautiful Hugo */

.sidebar-section {
    background: transparent;
    border: none;
    padding: 15px 0;
    margin-bottom: 30px;
}

.sidebar-section h5 {
    margin-top: 0;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    color: #404040;
    font-weight: 600;
    text-align: left;
}

.sidebar-section.text-center h5 {
    text-align: center;
}

.sidebar-section img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-section img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.sidebar-section ul {
    padding-left: 0;
}

.sidebar-section ul li {
    margin-bottom: 10px;
    list-style: none;
}

.sidebar-section ul li a {
    color: #008AFF;
    text-decoration: none;
}

.sidebar-section ul li a:hover {
    color: #0085a1;
    text-decoration: underline;
}

.sidebar-section .badge {
    background-color: #008AFF;
    color: white;
    padding: 3px 7px;
    border-radius: 3px;
    font-size: 11px;
}

.sidebar-section small {
    display: block;
    color: #777;
    margin-top: 3px;
}

/* Responsive sidebar */
@media (max-width: 991px) {
    .col-lg-4.col-md-4 {
        margin-top: 30px;
    }
}

/* Sidebar scrolls with page - not sticky */
@media (min-width: 992px) {
    .col-lg-4.col-md-4 {
        position: relative;
    }
}

