/*
Theme Name: Soukhya Living
Theme URI: https://soukhyaliving.com
Author: Soukhya Living
Description: Custom theme for Soukhya Living
Version: 1.0
*/

@import url("https://soukhyaliving.com/assets/css/style.css");

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.blog-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-content {
    padding: 20px 0px;
    text-align: left;
}

.blog-date {
    font-size: 13px;
    color: #888;
    display: block;
    margin-bottom: 8px;
}

.blog-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-card p {
    font-size: 14px;
    color: #555;
}

.read-more {
    font-size: 14px;
    color: #7a532f;
    font-weight: 600;
    text-decoration: none;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.pagination {
    justify-content: center;
    margin-top: 30px;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 14px;
    margin: 0 5px;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.pagination .current {
    background: #7a532f;
    color: #fff;
}

.pagination a:hover {
    background: #7a532f;
    color: #fff;
}

.blog-single h1 {
    font-weight: 700;
}

.blog-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}

/* SIDEBAR */
.sidebar-widget {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.widget-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: #7a532f;
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    margin-bottom: 10px;
}

.sidebar-list a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.sidebar-list a:hover {
    color: #7a532f;
}