﻿/* 3. Main Content Cards (Article Wrapper) */
.blog-article {
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    transition: none;
}
@media (max-width: 767px) {
    .blog-article {
        padding: 0;
        border-radius: 0;
    }
}

/* 4. Article Header & Meta */
.entry-categories {
    margin-bottom: 16px;
}
.entry-categories a {
    display: inline-block;
    background: linear-gradient(135deg, rgba(15, 76, 129, 0.08) 0%, rgba(15, 76, 129, 0.04) 100%);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border: 1px solid rgba(15, 76, 129, 0.1);
    transition: all 0.2s ease-in-out;
}
.entry-categories a:hover {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 76, 129, 0.2);
    transform: translateY(-1px);
}
.entry-title {
    font-size: clamp(24px, 6vw, 36px);
    line-height: 1.25;
    letter-spacing: -0.8px;
    font-weight: 800;
    margin-bottom: 20px;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}
@media (max-width: 767px) {
    .entry-title {
        /* Handled by clamp, keeping block for specificity if needed */
    }
}
.entry-meta {
    font-size: 13px;
    color: #64748b; /* Slate 500 */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px dashed #e2e8f0;
    padding-bottom: 24px;
    margin-bottom: 35px;
}
.entry-meta .meta-author {
    display: flex;
    align-items: center;
    gap: 10px;
}
.entry-meta .meta-avatar img {
    border-radius: 50%;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: block;
}
.entry-meta .meta-author-name {
    color: #334155;
}
.entry-meta .meta-details {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}
.entry-meta .meta-details span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.entry-meta .meta-icon {
    width: 15px;
    height: 15px;
    color: #94a3b8;
}
@media (max-width: 767px) {
    .entry-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .entry-meta .meta-details {
        gap: 12px;
    }
}

/* 5. Featured Image */
.entry-featured-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 35px;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}
.entry-featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.entry-featured-image:hover img {
    transform: scale(1.03);
}

/* 6. Content Typography Elements */
.entry-content {
    font-size: 16px;
    color: #334155; /* Slate 700 */
    line-height: 1.85;
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}
.entry-content *, .entry-featured-image {
    max-width: 100%;
    box-sizing: border-box;
}
.entry-content img, .entry-content iframe, .entry-content video {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.entry-content p {
    margin-bottom: 24px;
}
.entry-content h2, .entry-content h3, .entry-content h4 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.entry-content h2 {
    font-size: 26px;
    border-left: 4px solid var(--primary);
    padding-left: 15px;
}
.entry-content h3 {
    font-size: 21px;
}
.entry-content blockquote {
    background: #f8fafc;
    border-left: 5px solid var(--primary);
    padding: 24px 30px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
    position: relative;
}
.entry-content blockquote::before {
    content: '"';
    position: absolute;
    top: 5px; left: 10px;
    font-family: Georgia, serif;
    font-size: 60px;
    color: rgba(15, 76, 129, 0.08);
    line-height: 1;
}
.entry-content ul, .entry-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}
.entry-content ul li {
    list-style-type: disc;
    margin-bottom: 8px;
}
.entry-content ol li {
    list-style-type: decimal;
    margin-bottom: 8px;
}
.entry-content a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}
.entry-content a:hover {
    color: var(--accent);
}


