/* General widget styling */
aside#sidebar-1 .widget {
    margin-bottom: 1.5rem; /* 24px */
    color: #4b5563; /* Tailwind text-gray-600 */
}

/* Widget title */
aside#sidebar-1 .widget-title {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #1f2937; /* Tailwind gray-900 */
    margin-bottom: 1rem; /* 16px */
    border-bottom: 1px solid #e5e7eb; /* Tailwind gray-200 */
    padding-bottom: 0.5rem; /* 8px */
}

/* Ensure h2, h3, and search block label are styled consistently */
aside#sidebar-1 .widget h2,
aside#sidebar-1 .widget h3,
aside#sidebar-1 .wp-block-search__label {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #1f2937; /* Tailwind gray-900 */
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb; /* Tailwind gray-200 */
    padding-bottom: 0.5rem;
}

/* Search bar */
aside#sidebar-1 .widget_search .search-form {
    display: flex;
    gap: 0.5rem; /* 8px */
}
aside#sidebar-1 .widget_search .wp-block-search__inside-wrapper input  {
    width: 100%;
    padding: 0.5rem 1rem; /* 8px 16px */
    background-color: #ffffff; /* White */
    border: 1px solid #d1d5db; /* Tailwind gray-300 */
    border-radius: 0.375rem; /* 6px */
    color: #1f2937; /* Tailwind gray-900 */
    font-size: 1rem; /* 16px */
    transition: border-color 0.2s ease;
}
aside#sidebar-1 .widget_search .wp-block-search__inside-wrapper input:focus {
    outline: none;
    border-color: #c084fc; /* Tailwind purple-400 */
    box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.2);
}
aside#sidebar-1 .widget_search .wp-block-search__button {
    padding: 0.75rem 1.5rem; /* 12px 24px */
    background-color: #7C3AED;
    color: #ffffff;
    border: none;
    border-radius: 0.375rem; /* 6px */
    cursor: pointer;
    font-size: 1rem; /* 16px */
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}
aside#sidebar-1 .widget_search .wp-block-search__button:hover {
    background-color: #8B5CF6;
}

/* Recent posts */
aside#sidebar-1 .widget_recent_entries ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
aside#sidebar-1 .widget_recent_entries li {
    margin-bottom: 1rem; /* 16px */
    padding: 0.75rem; /* 12px */
    background-color: #ffffff; /* White */
    border-radius: 0.375rem; /* 6px */
    transition: background-color 0.2s ease;
}
aside#sidebar-1 .widget_recent_entries li:hover {
    background-color: #f3f4f6; /* Tailwind bg-gray-100 */
}
aside#sidebar-1 .widget_recent_entries a {
    color: #c084fc; /* Tailwind purple-400 */
    font-size: 1rem; /* 16px */
    font-weight: 500;
    text-decoration: none;
}
aside#sidebar-1 .widget_recent_entries a:hover {
    text-decoration: underline;
}
aside#sidebar-1 .widget_recent_entries .post-date {
    display: block;
    font-size: 0.875rem; /* 14px */
    color: #6b7280; /* Tailwind gray-500 */
    margin-top: 0.25rem; /* 4px */
}