/* ============================================
   Blog — DeenNetwork
   ============================================ */

.blog-section {
    background: #0a0a0a;
    padding: 40px 0 60px;
}

/* ---- Empty State ---- */
.blog-empty {
    text-align: center;
    padding: 80px 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1rem;
}

.blog-empty p:first-child {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* ---- Blog Grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

/* ---- Blog Card ---- */
.blog-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(200, 170, 110, 0.2);
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.035);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-category {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #c8aa6e;
    margin-bottom: 10px;
}

.blog-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-card:hover .blog-card-title {
    color: #c8aa6e;
}

.blog-card-excerpt {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.blog-card-read {
    color: rgba(200, 170, 110, 0.5);
}

/* ============================================
   Single Blog Post
   ============================================ */
.blog-post {
    max-width: 720px;
    margin: 0 auto;
}

.blog-post-header {
    margin-bottom: 30px;
}

.blog-back-link {
    display: inline-block;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.82rem;
    margin-bottom: 18px;
    transition: color 0.2s;
}

.blog-back-link:hover {
    color: #c8aa6e;
}

.blog-post-category {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #c8aa6e;
    background: rgba(200, 170, 110, 0.08);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.blog-post-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.35);
}

.blog-post-image {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Post Content ---- */
.blog-post-content {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.85;
}

.blog-post-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-top: 36px;
    margin-bottom: 14px;
}

.blog-post-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 28px;
    margin-bottom: 10px;
}

.blog-post-content p {
    margin-bottom: 18px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 14px 0 20px 22px;
}

.blog-post-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.blog-post-content a {
    color: #c8aa6e;
    text-decoration: none;
}

.blog-post-content a:hover {
    text-decoration: underline;
}

.blog-post-content blockquote {
    border-left: 3px solid #c8aa6e;
    padding: 14px 20px;
    margin: 20px 0;
    background: rgba(200, 170, 110, 0.04);
    border-radius: 0 8px 8px 0;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.blog-post-content strong {
    color: rgba(255, 255, 255, 0.85);
}

/* ---- Post Footer ---- */
.blog-post-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-back-btn {
    display: inline-block;
    color: #c8aa6e;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: opacity 0.2s;
}

.blog-back-btn:hover {
    opacity: 0.7;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 700px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-post-title {
        font-size: 1.4rem;
    }

    .blog-post-content {
        font-size: 0.95rem;
    }

    .blog-card-body {
        padding: 18px 18px 20px;
    }
}