
:root {
    --primary: #0a2463;
    --secondary: #fb2576;
    --accent: #3ec1d3;
    --dark: #1a1a2e;
    --gray: #666;
    --light-gray: #f8f9fa;
    --gradient-1: linear-gradient(135deg, #0a2463 0%, #3ec1d3 100%);
    --gradient-2: linear-gradient(135deg, #fb2576 0%, #ff6b9d 100%);
    --gradient-3: linear-gradient(135deg, #3ec1d3 0%, #0a2463 100%);
}

/* ============================================
   HOME PAGE BLOG SECTION STYLES
   ============================================ */

.blog-section-home {
    padding: 5rem 2rem;
    background: white;
}

.blog-section-home .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.75rem;
    color: #1a1a2e;
    margin-bottom: 1rem;
    font-weight: 800;
}

.section-header p {
    font-size: 1.25rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.15);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: #fb2576;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-meta-item i {
    color: #3ec1d3;
    font-size: 1rem;
}

.blog-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0a2463;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-content h3 a {
    color: #0a2463;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card:hover h3,
.blog-card:hover h3 a {
    color: #3ec1d3;
}

.blog-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fb2576;
    font-weight: 700;
    text-decoration: none;
    transition: gap 0.3s;
}

.read-more:hover {
    gap: 1rem;
}

.read-more i {
    font-size: 1.2rem;
}

.view-all-btn {
    text-align: center;
    margin-top: 4rem;
}

.view-all-btn a {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #fb2576 0%, #ff6b9d 100%);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.view-all-btn a:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 37, 118, 0.3);
}

/* ============================================
   BLOG PAGE STYLES
   ============================================ */

.page-header {
    background: var(--gradient-3);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}

.page-header::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-header-content p {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.blog-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--accent);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
}

.pagination-btn,
.pagination .page-numbers {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 700;
    text-decoration: none;
    line-height: 1;
}

.pagination-btn:hover,
.pagination-btn.active,
.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.pagination-btn i {
    font-size: 1.2rem;
}

/* Featured Post */
.featured-post {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(10, 36, 99, 0.1);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.featured-image {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: var(--gradient-2);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--gray);
}

.featured-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-meta-item i {
    color: var(--secondary);
}

.featured-content h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
}

.featured-content h2 a {
    color: var(--primary);
    text-decoration: none;
}

.featured-excerpt {
    font-size: 1.15rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.featured-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    align-self: flex-start;
}

.featured-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 37, 118, 0.3);
}

/* ============================================
   BLOG DETAILS PAGE STYLES
   ============================================ */

.blog-hero {
    background: var(--gradient-3);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -250px;
    right: -100px;
}

.blog-hero::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    bottom: -150px;
    left: -50px;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.blog-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.blog-breadcrumb a:hover {
    opacity: 0.7;
}

.blog-category-badge {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
}

.blog-hero-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1rem;
    margin-top: 2rem;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta-item i {
    font-size: 1.2rem;
}

/* Featured Image */
.featured-image-section {
    margin-top: -5rem;
    position: relative;
    z-index: 10;
    padding: 0 2rem 3rem;
}

.featured-image-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 36, 99, 0.2);
}

.featured-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

/* Article Content */
.article-section {
    padding: 4rem 0;
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.article-content {
    background: white;
}

/* Author Info */
.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    margin-bottom: 3rem;
}

.author-info .author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent);
    flex-shrink: 0;
}

.author-info .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    font-size: 1.25rem;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-details p {
    color: var(--gray);
    font-size: 0.95rem;
    margin: 0;
}

/* Article Typography */
.article-content h2 {
    font-size: 2rem;
    color: var(--primary);
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
}

.article-content h2:first-child {
    margin-top: 0;
}

.article-content h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-content li {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.article-content blockquote {
    background: linear-gradient(135deg, rgba(62, 193, 211, 0.1) 0%, rgba(10, 36, 99, 0.05) 100%);
    border-left: 4px solid var(--accent);
    padding: 2rem;
    margin: 2.5rem 0;
    border-radius: 12px;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    line-height: 1.8;
}

.article-content img {
    width: 100%;
    border-radius: 16px;
    margin: 2.5rem 0;
}

/* Tags */
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid var(--light-gray);
}

.tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--light-gray);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 16px;
    margin: 3rem 0;
}

.share-section h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-right: 1rem;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook:hover {
    background: #1877f2;
    color: white;
}

.share-btn.twitter:hover {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin:hover {
    background: #0a66c2;
    color: white;
}

.share-btn.whatsapp:hover {
    background: #25d366;
    color: white;
}

.share-btn i {
    font-size: 1.25rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 25px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(10, 36, 99, 0.08);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Categories Widget */
.category-list {
    list-style: none;
}

.category-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.category-item:last-child {
    border-bottom: none;
}

.category-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.category-item a:hover {
    color: var(--accent);
}

.category-count {
    background: var(--light-gray);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--gray);
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.recent-post-content h4 a {
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s;
}

.recent-post-content h4 a:hover {
    color: var(--accent);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Comments Section */
.comments-section {
    padding: 5rem 0;
    background: white;
}

.comments-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comments-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.comments-header h2 {
    font-size: 2.25rem;
    color: var(--primary);
    font-weight: 800;
    display: inline-block;
}

.comments-count {
    color: var(--gray);
    font-weight: 600;
    font-size: 1.75rem;
}

/* Comment Item */
.comments-list {
    margin-bottom: 4rem;
}

.comment-item,
.comment {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--light-gray);
}

.comment-item:last-child,
.comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.comment .comment-avatar,
.comment-item .comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--light-gray);
    flex-shrink: 0;
}

.comment .comment-avatar img,
.comment-item .comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.comment-author {
    font-size: 1.15rem;
    color: var(--primary) !important;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-badge {
    background: var(--gradient-2);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.comment-date,
.comment-metadata {
    color: var(--gray) !important;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-date i {
    color: var(--accent);
}

.comment-text,
.comment-content {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.comment-actions,
.reply {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.comment-action-btn,
.comment-reply-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all 0.3s;
    text-decoration: none;
}

.comment-action-btn:hover,
.comment-reply-link:hover {
    background: var(--light-gray);
    color: var(--primary);
}

.comment-action-btn.like-btn:hover {
    color: var(--secondary);
}

.comment-action-btn i {
    font-size: 1.1rem;
}

/* Comment Reply */
.comment-reply,
.children {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--light-gray);
}

.comment-reply .comment-avatar,
.children .comment-avatar {
    width: 50px;
    height: 50px;
}

/* Comment Form */
.comment-form-section,
.comment-respond {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.comment-form-section h3,
.comment-respond h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-weight: 800;
}

.form-description,
.comment-notes {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.form-group,
.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    display: flex;
    flex-direction: column;
}

.form-group label,
.comment-form label {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    padding: 1rem 1.25rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(62, 193, 211, 0.1);
}

.form-group textarea,
.comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.form-checkbox,
.comment-form-cookies-consent {
    display: flex;
    align-items: start;
}

.form-checkbox label,
.comment-form-cookies-consent label {
    display: flex;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.form-checkbox input[type="checkbox"],
.comment-form-cookies-consent input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.submit-comment-btn,
.form-submit input[type="submit"] {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: var(--gradient-2);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-comment-btn:hover,
.form-submit input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 37, 118, 0.3);
}

.submit-comment-btn i {
    font-size: 1.2rem;
}

/* Related Posts */
.related-posts {
    padding: 5rem 0;
    background: var(--light-gray);
}

.related-posts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
    font-weight: 800;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet View - 2 Cards */
@media (max-width: 1024px) {
    .blog-grid-home,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-header h2,
    .page-header-content h1 {
        font-size: 2.5rem;
    }

    .article-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post {
        grid-template-columns: 1fr;
    }

    .featured-image {
        min-height: 350px;
    }
}

/* Mobile View - 1 Card */
@media (max-width: 768px) {
    .blog-section-home,
    .blog-section {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2,
    .page-header-content h1 {
        font-size: 2rem;
    }

    .section-header p,
    .page-header-content p {
        font-size: 1.1rem;
    }

    .blog-grid-home,
    .blog-grid,
    .related-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .view-all-btn {
        margin-top: 3rem;
    }

    .page-header,
    .blog-hero {
        padding: 4rem 0 3rem;
    }

    .blog-hero h1 {
        font-size: 2.5rem;
    }

    .blog-hero-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .featured-image-wrapper img {
        height: 350px;
    }

    .article-section {
        padding: 3rem 0;
    }

    .article-content h2 {
        font-size: 1.75rem;
    }

    .article-content h3 {
        font-size: 1.35rem;
    }

    .article-content p,
    .article-content li {
        font-size: 1.05rem;
    }

    .featured-content {
        padding: 2.5rem 2rem;
    }

    .featured-content h2 {
        font-size: 2rem;
    }

    .featured-image {
        min-height: 300px;
    }

    .share-section {
        flex-wrap: wrap;
    }

    /* Comments Responsive */
    .comments-section {
        padding: 3rem 0;
    }

    .comments-container {
        padding: 0 1.5rem;
    }

    .comments-header h2 {
        font-size: 1.85rem;
    }

    .comments-count {
        font-size: 1.5rem;
    }

    .comment-item,
    .comment {
        gap: 1rem;
    }

    .comment .comment-avatar,
    .comment-item .comment-avatar {
        width: 50px;
        height: 50px;
    }

    .comment-reply,
    .children {
        margin-left: 0;
        padding-left: 1.5rem;
    }

    .comment-reply .comment-avatar,
    .children .comment-avatar {
        width: 40px;
        height: 40px;
    }

    .comment-form-section,
    .comment-respond {
        padding: 2rem 1.5rem;
    }

    .comment-form-section h3,
    .comment-respond h3 {
        font-size: 1.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .submit-comment-btn,
    .form-submit input[type="submit"] {
        width: 100%;
        justify-content: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .blog-section-home {
        padding: 3rem 1rem;
    }

    .section-header h2,
    .page-header-content h1 {
        font-size: 1.75rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .blog-image {
        height: 200px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.3rem;
    }

    .blog-category {
        top: 1rem;
        left: 1rem;
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }

    .view-all-btn a {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .featured-image-wrapper img {
        height: 250px;
    }

    .author-info {
        flex-direction: column;
        text-align: center;
    }

    .article-content h2 {
        font-size: 1.5rem;
    }

    .article-content blockquote {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .pagination {
        gap: 0.5rem;
    }

    .pagination-btn,
    .pagination .page-numbers {
        width: 40px;
        height: 40px;
    }

    /* Comments Mobile */
    .comment-item,
    .comment {
        flex-direction: column;
    }

    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .comment-reply,
    .children {
        flex-direction: column;
        border-left: 2px solid var(--light-gray);
        padding-left: 1rem;
    }

    .comment-actions {
        flex-wrap: wrap;
    }

    .comment-form-section,
    .comment-respond {
        padding: 1.5rem 1rem;
    }

    .comment-form-section h3,
    .comment-respond h3 {
        font-size: 1.5rem;
    }
}