@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&family=Syne:wght@400..800&display=swap');

h1,
h2,
h3,
h4,
h5,
h6{
    font-family: "Syne", sans-serif;
}

body{
    font-family: "Rubik", sans-serif;
}
.blog-grid-wrapper {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
}

.blog-thumb {
    position: relative;
    overflow: hidden;
}

.blog-thumb img {
    width: 100%;
    display: block;
}

.blog-cat {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #f57c00;
    color: #fff;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 3px;
}

.blog-content {
    padding: 15px 0;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.blog-title {
    font-size: 20px;
    line-height: 1.4;
}

.blog-title a {
    text-decoration: none;
    color: #1e2d3b;
}

.read-more {
    display: inline-block;
    margin-top: 12px;
    color: #f57c00;
    font-weight: 500;
}

/* Pagination */
.blog-pagination {
    margin-top: 40px;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 8px 14px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #333;
}

.blog-pagination .current {
    background: #f57c00;
    color: #fff;
    border-color: #f57c00;
}

.blog-pagination a:hover {
    background: #f57c00;
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}


.page-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.page-banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.page-title {
    font-size: 48px;
    margin-bottom: 12px;
}

.breadcrumb {
    font-size: 14px;
    text-transform: uppercase;
}

.breadcrumb a {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 32px;
    }
}

.blog-page-banner .page-title {
    margin: 0;
}

section.blog-page-banner {
    height: 320px;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

section.blog-page-banner .page-banner-content {
    color: #fff;
}

section.blog-page-banner .page-banner-content .breadcrumb a {
    color: #fff;
}


/*======================= single blog page ==========================*/
/* Single Blog Layout */
.single-blog-wrapper {
    padding: 80px 20px;
}

.single-blog-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 40px;
}

.single-thumb img {
    width: 100%;
    margin-bottom: 20px;
}

.post-meta {
    font-size: 14px;
    color: #777;
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-content blockquote {
    border-left: 4px solid #f57c00;
    background: #fff6ee;
    padding: 20px;
    margin: 30px 0;
    font-style: italic;
}

.post-taxonomy {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 14px;
}

.post-taxonomy a {
    background: #f57c00;
    color: #fff;
    padding: 5px 10px;
    margin-right: 5px;
    text-decoration: none;
    font-size: 13px;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
}

.post-comments {
    margin-top: 40px;
}

/* Sidebar */
aside.blog-sidebar section {
    padding: 20px;
    background: #f6efea;
}

aside.blog-sidebar section label.wp-block-search__label {
    display: none;
}

aside.blog-sidebar section .wp-block-search__inside-wrapper {
    margin: 0;
}

aside.blog-sidebar section .wp-block-search__inside-wrapper input {
    padding: 8px;
    border: none;
}

aside.blog-sidebar section .wp-block-search__inside-wrapper button {
    background: #b27a50;
    line-height: 1;
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    border: none;
    font-weight: 600;
    letter-spacing: 2px;
}

aside.blog-sidebar section ul, aside.blog-sidebar section ol {
    padding-left: 0;
    margin: 0;
    list-style: none;
}
aside.blog-sidebar section ul li a, aside.blog-sidebar section ol li a{
    color:#4C4E70;
    text-decoration:none;
}
aside.blog-sidebar section ul li:not(:last-child), aside.blog-sidebar section ol li:not(:last-child){
    margin-bottom:10px;
}

.blog-sidebar .widget {
    margin-bottom: 30px;
}

.blog-sidebar h2,
.blog-sidebar h3 {
    font-size: 18px;
    margin-bottom: 15px;
    border-left: 3px solid #f57c00;
    padding-left: 10px;
}

/* Responsive */
@media (max-width: 991px) {
    .single-blog-container {
        grid-template-columns: 1fr;
    }
}

/*======================= single blog page ==========================*/