/* --------------------------------------------------
   Layout
-------------------------------------------------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.post-header {
    text-align: center;
    margin-bottom: 2rem;
}

.post-header h1 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.author-box {
    max-width: 800px;
    margin: 4rem auto;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
}
.breadcrumb {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.breadcrumb a {
    color: #0ea5e9;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #cbd5e1;
}
/* --------------------------------------------------
   Cards
-------------------------------------------------- */

.post-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------
   Images
-------------------------------------------------- */

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
    border-radius: 12px 12px 0 0;
}

/* --------------------------------------------------
   Content Area
-------------------------------------------------- */

.post-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.post-content h2 {
    margin-top: 3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem 0;
}

.post-content li {
    margin-bottom: 0.75rem;
}
.blog-hero {
    padding: 2rem 1rem;
    text-align: center;
}
.blog-hero {
    background: rgba(255,255,255,.03);
    border-radius: 12px;
    margin-bottom: 2rem;
}
.blog-post {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}


.post-meta {
    color: #cccccc;
    font-size: 1rem;
}

.post-category {
    display: inline-block;
    background: #0078d4;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-image {
    margin: 2rem 0;
}

.hero-image img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}
blockquote {
    border-left: 4px solid #0078d4;
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    background: rgba(255,255,255,0,0.05);
}
/* --------------------------------------------------
   Featured Article
-------------------------------------------------- */

.featured {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1rem;
}

.featured img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 8px;
}

.featured-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    align-self: center;
}

.featured-content h3 {
    font-size: 2rem;
    margin: 0;
}
.featured-content p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* --------------------------------------------------
   Category Badge
-------------------------------------------------- */

.category-badge {
    display: inline-block;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: #0078d4;
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
}

/* --------------------------------------------------
   Date
-------------------------------------------------- */

.post-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */

.btn {
    display: inline-block;
    width: fit-content;
    margin-top: auto;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    background: #0078d4;
    color: #ffffff;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background
}
/* --------------------------------------------------
   Footer
-------------------------------------------------- */
.blog-cta {
    text-align: center;
    padding: 3rem 1rem;
}

.blog-cta .btn {
    margin-top: 1rem;
}
