/* Professional Blog Page Styles - No Featured Images Required */
.blog-section {
    padding: 80px 0;
    background: #F6F6F6;
}

.blog-section .container.inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 0;
}

.blog-post {
    background: #fff;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    border: 1px solid rgba(184, 161, 88, 0.1);
}



.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--golden);
}

.blog-post-content {
    position: relative;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    font-family: "SinkinSans-300Light";
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.blog-date {
    font-weight: 400;
    color: var(--golden);
    font-family: "SinkinSans-500Medium";
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-date::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--golden);
    border-radius: 50%;
    display: inline-block;
}

.blog-categories a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
    font-family: "SinkinSans-500Medium";
    transition: color 0.3s ease;
    background: rgba(184, 161, 88, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
}

.blog-categories a:hover {
    color: var(--golden);
    background: rgba(184, 161, 88, 0.15);
}

.blog-post-title {
    font-size: 28px;
    font-weight: 600;
    font-family: "SinkinSans-600semiboald";
    margin: 0 0 20px 0;
    line-height: 1.3;
    color: #222;
}

.blog-post-title a {
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--golden);
}

.blog-post-excerpt {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 16px;
    font-family: "SinkinSans-400Regular";
}

.blog-post-excerpt p {
    margin: 0;
}

/* Golden Button - Matching Theme */
.golden-btn {
    display: inline-block;
    background: var(--golden);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-family: "SinkinSans-500Medium";
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--golden);
}

.golden-btn:hover {
    background: transparent;
    color: var(--golden);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 161, 88, 0.3);
}

.golden-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--golden);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.golden-btn:hover::before {
    width: 300px;
    height: 300px;
}

.no-posts-found {
    text-align: center;
    padding: 80px 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    grid-column: 1 / -1;
    border: 1px solid rgba(184, 161, 88, 0.1);
}

.no-posts-found h3 {
    color: #222;
    font-size: 32px;
    font-family: "SinkinSans-600semiboald";
    margin-bottom: 20px;
}

.no-posts-found p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-family: "SinkinSans-400Regular";
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 820px) {
    .blog-section {
        padding: 60px 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-post {
        padding: 35px 30px;
    }
    
    .blog-post-title {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .blog-section {
        padding: 40px 0;
    }
       .blog-post-content h2 , .blog-post-content .blog-post-excerpt p{
        text-align: start;
    }
    
    .blog-post {
        padding: 30px 25px;
    }
    
    .blog-post-title {
        font-size: 24px;
    }
    
    .blog-post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .blog-categories a {
        font-size: 11px;
        padding: 3px 8px;
    }
    
    .no-posts-found {
        padding: 60px 20px;
    }
    
    .no-posts-found h3 {
        font-size: 28px;
    }
    
    .no-posts-found p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .blog-post {
        padding: 25px 20px;
    }
    
    .blog-post-title {
        font-size: 22px;
    }
    
    .golden-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}
