/* === SIDEBAR / WIDGETS === */
.widget,
.sidebar,
.wp-block-widget-group {
    background-color: #121212; /* Dark background for sidebar */
    color: #EAEAEA; /* Light gray text */
    padding: 1em; /* Comfortable spacing inside widgets */
    margin-bottom: 1.5em; /* Space between widgets */
    border-radius: 6px; /* Rounded corners for modern look */
}

/* Widget titles */
.widget-title,
.wp-block-widget-title {
    font-family: 'Oswald', sans-serif; /* Bold, clean font */
    font-weight: 700;
    font-size: 18px;
    color: #FFDD00; /* Bright yellow for emphasis */
    margin-bottom: 0.8em;
}

/* Links inside widgets */
.widget a,
.sidebar a,
.wp-block-widget-group a {
    color: #FFDD00; /* Bright yellow links */
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

.widget a:hover,
.sidebar a:hover,
.wp-block-widget-group a:hover {
    color: #FFD633; /* Slightly lighter yellow on hover */
    text-decoration: underline;
}