/*
 Theme Name: Divi Child
 Theme URI: https://www.elegantthemes.com/
 Description: Custom Divi Child Theme for Blog Website
 Author: Your Name
 Template: Divi
 Version: 1.0.0
*/

/* Import parent theme styles */
@import url("../Divi/style.css");

/* Global Styling */
body {
    font-family: 'Noto Sans', sans-serif;
    background-color: #f5f5f5;
}

/* Blog Card Style */
.et_pb_post {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.et_pb_post:hover {
    transform: translateY(-5px);
}

/* Title */
.et_pb_post h2 {
    font-size: 20px;
    font-weight: 600;
}

/* Sidebar */
#sidebar {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
}

/* Category Menu */
.category-menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
}