:root {
    --primary: #e50914;
    --primary-dark: #b20710;
    --primary-light: #ff3d47;
    --secondary: #ffd700;
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --gray: #2d2d2d;
    --gray-light: #f5f5f5;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #fff;
    --border: #e5e5e5;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--gray-light);
    color: var(--text);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

.main-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar { padding: 15px 0; }

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(90deg, var(--white), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
}

.search-form .input-group {
    min-width: 220px;
}

.search-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 25px 0 0 25px;
    padding: 10px 18px;
}

.search-form .form-control::placeholder { color: rgba(255, 255, 255, 0.5); }
.search-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary);
    box-shadow: none;
}

.btn-search {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 0 25px 25px 0;
    padding: 10px 18px;
}

.btn-search:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.main-content { min-height: calc(100vh - 300px); }

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary);
}

.section-header h2 {
    font-size: 24px;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-header h2 i { color: var(--primary); }

.view-all {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.featured-post {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image {
    position: relative;
    height: 450px;
    background: var(--gray);
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-image.no-image {
    background: linear-gradient(135deg, var(--dark), var(--gray));
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: var(--white);
}

.featured-overlay h2 {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.3;
}

.category-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta i { margin-right: 5px; }

.posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.post-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.post-card a { color: inherit; display: block; }

.post-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--gray);
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-thumbnail img { transform: scale(1.05); }

.no-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark), var(--gray));
    color: var(--text-muted);
    font-size: 48px;
}

.category-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
}

.post-card .post-content {
    padding: 20px;
}

.post-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
    line-height: 1.4;
}

.post-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.post-card .post-meta {
    color: var(--text-muted);
    font-size: 13px;
}

.post-card.compact .post-thumbnail { height: 160px; }
.post-card.compact .post-content { padding: 15px; }
.post-card.compact h3 { font-size: 15px; margin-bottom: 5px; }
.post-card.compact .post-date { font-size: 12px; color: var(--text-muted); }

.post-card.horizontal {
    display: flex;
    flex-direction: row;
}

.post-card.horizontal .post-thumbnail {
    width: 280px;
    min-width: 280px;
    height: auto;
    min-height: 200px;
}

.post-card.horizontal .post-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-card.horizontal h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.posts-list { display: flex; flex-direction: column; gap: 25px; }

.sidebar-widgets { display: flex; flex-direction: column; gap: 25px; }

.widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
}

.widget-title {
    font-size: 18px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title i { color: var(--primary); }

.trending-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trending-list li a {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: inherit;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.trending-list li a:hover { background: var(--gray-light); }

.trend-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.trend-content h4 {
    font-size: 14px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--dark);
}

.trend-meta { font-size: 12px; color: var(--text-muted); }

.categories-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.categories-list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    transition: var(--transition);
}

.categories-list li a:hover,
.categories-list li.active a {
    background: var(--primary);
    color: var(--white);
}

.categories-list .count {
    padding: 2px 10px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    font-size: 12px;
}

.social-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    transition: var(--transition);
}

.social-btn:hover { transform: translateY(-3px); color: var(--white); }
.social-btn.facebook { background: #1877f2; }
.social-btn.twitter { background: #1da1f2; }
.social-btn.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-btn.youtube { background: #ff0000; }
.social-btn.whatsapp { background: #25d366; }
.social-btn.linkedin { background: #0077b5; }

.category-section {
    padding: 50px 0;
    background: var(--white);
    margin-top: 30px;
}

.category-section:nth-child(even) { background: var(--gray-light); }

.page-banner {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 40px 0;
    margin-bottom: 0;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 15px;
}

.page-banner .breadcrumb-item a { color: rgba(255, 255, 255, 0.7); }
.page-banner .breadcrumb-item.active { color: var(--white); }
.page-banner .breadcrumb-item + .breadcrumb-item::before { color: rgba(255, 255, 255, 0.5); }

.page-banner h1 { font-size: 36px; margin-bottom: 10px; }
.page-banner p { color: rgba(255, 255, 255, 0.8); margin-bottom: 10px; }
.page-banner .post-count {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary);
    border-radius: 20px;
    font-size: 14px;
}

.single-post .post-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
    padding: 40px 0;
}

.single-post .post-header h1 {
    font-size: 32px;
    margin: 15px 0;
    line-height: 1.3;
}

.post-meta-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.post-meta-bar .author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.separator { opacity: 0.3; }

.featured-image-single {
    margin-bottom: 30px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.featured-image-single img {
    width: 100%;
    height: auto;
}

.post-content-wrapper {
    font-size: 17px;
    line-height: 1.9;
}

.post-content-wrapper p { margin-bottom: 20px; }

.post-content-wrapper p.also-read {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    border-left: 4px solid var(--primary);
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 16px;
}

.post-content-wrapper p.also-read strong {
    color: #856404;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-right: 8px;
}

.post-content-wrapper p.also-read a {
    color: #0066cc;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.post-content-wrapper p.also-read a:hover {
    color: var(--primary);
    text-decoration: underline;
}
.post-content-wrapper h2, .post-content-wrapper h3 {
    margin: 30px 0 15px;
    color: var(--dark);
}

.post-content-wrapper ul, .post-content-wrapper ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.post-content-wrapper li { margin-bottom: 8px; }

.post-content-wrapper blockquote {
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    background: var(--gray-light);
    margin: 25px 0;
    font-style: italic;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-gallery {
    margin: 30px 0;
    padding: 25px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.post-gallery h4 { margin-bottom: 15px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover { opacity: 0.8; }

.post-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin: 30px 0;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.post-tags .tag {
    padding: 6px 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text);
}

.post-tags .tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: var(--gray-light);
    border-radius: var(--radius);
}

.share-buttons span { font-weight: 600; }

.also-read-section {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 25px;
    margin: 30px 0;
}

.also-read-section h4 {
    font-size: 18px;
    color: var(--dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.also-read-section h4 i {
    color: var(--primary);
}

.also-read-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.also-read-section ul li {
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa, #fff);
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    transition: var(--transition);
}

.also-read-section ul li:hover {
    background: linear-gradient(135deg, #fff8e1, #fff3cd);
    transform: translateX(5px);
}

.also-read-section ul li strong {
    color: #856404;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-right: 10px;
}

.also-read-section ul li a {
    color: #0066cc;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.also-read-section ul li a:hover {
    color: var(--primary);
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
}

.related-posts {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.related-posts h3 {
    font-size: 22px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.related-posts h3 i { color: var(--primary); }

.related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.related-card {
    background: var(--gray-light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.related-card:hover { transform: translateY(-3px); }
.related-card a { display: block; }

.related-thumbnail {
    height: 150px;
    overflow: hidden;
}

.related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-card h4 {
    padding: 15px;
    font-size: 15px;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.related-card .related-date {
    display: block;
    padding: 0 15px 15px;
    font-size: 12px;
    color: var(--text-muted);
}

.sticky-sidebar { position: sticky; top: 100px; }

.ad-placeholder {
    text-align: center;
    margin: 20px 0;
}

.ad-demo {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 2px dashed #dee2e6;
    border-radius: var(--radius);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.ad-demo span {
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ad-demo small {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 5px;
}

.ad-demo.vertical { min-height: 280px; }

.ad-placeholder.in-content { margin: 25px 0; }
.ad-placeholder.sidebar-ad { margin: 0; }

.no-posts, .no-results {
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.no-posts i, .no-results i {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.no-posts h3, .no-results h3 {
    margin-bottom: 10px;
}

.no-posts p, .no-results p {
    color: var(--text-muted);
}

.search-banner { text-align: center; }

.search-form-large {
    max-width: 600px;
    margin: 20px auto;
}

.search-form-large .form-control {
    padding: 15px 25px;
    border-radius: 30px 0 0 30px;
    border: none;
    font-size: 16px;
}

.search-form-large .btn {
    padding: 15px 30px;
    border-radius: 0 30px 30px 0;
}

.search-results-count {
    margin-top: 20px;
    font-size: 16px;
}

.static-page-content {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.static-page-content h2 { font-size: 26px; margin-bottom: 20px; color: var(--dark); }
.static-page-content h3 { font-size: 20px; margin: 30px 0 15px; color: var(--dark); }
.static-page-content p { margin-bottom: 18px; }
.static-page-content ul { margin-bottom: 20px; padding-left: 25px; }
.static-page-content li { margin-bottom: 8px; }
.static-page-content .lead { font-size: 18px; color: var(--text-light); }

.legal-content h2 { padding-top: 20px; border-top: 1px solid var(--border); }
.legal-content h2:first-child { border-top: none; padding-top: 0; }

.contact-cta {
    margin-top: 30px;
    padding: 25px;
    background: var(--gray-light);
    border-radius: var(--radius);
    text-align: center;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form .form-label { font-weight: 600; }

.contact-form .form-control {
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    border: 2px solid var(--border);
}

.contact-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.1);
}

.contact-info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-list li {
    display: flex;
    gap: 15px;
}

.contact-info-list .icon {
    width: 44px;
    height: 44px;
    background: var(--gray-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-info-list .content strong {
    display: block;
    margin-bottom: 2px;
}

.faq-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-list li {
    padding: 10px 15px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.legal-nav {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-nav li a {
    display: block;
    padding: 12px 18px;
    background: var(--gray-light);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
}

.legal-nav li a:hover,
.legal-nav li.active a {
    background: var(--primary);
    color: var(--white);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info-list li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-list i { color: var(--primary); width: 20px; }

.main-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.8);
    margin-top: 50px;
}

.footer-top { padding: 60px 0 40px; }

.footer-widget h4 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-widget .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-widget .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-widget .social-links a:hover {
    background: var(--primary);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p { margin: 0; font-size: 14px; }

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(229, 9, 20, 0.4);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-3px); }

.pagination .page-link {
    color: var(--text);
    border: 1px solid var(--border);
    padding: 10px 18px;
    margin: 0 3px;
    border-radius: var(--radius-sm);
}

.pagination .page-link:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-2px);
}

@media (max-width: 991.98px) {
    .posts-grid { grid-template-columns: 1fr; }
    .related-grid { grid-template-columns: 1fr; }
    .post-card.horizontal { flex-direction: column; }
    .post-card.horizontal .post-thumbnail { width: 100%; min-height: 200px; }
    .featured-image { height: 350px; }
    .featured-overlay h2 { font-size: 22px; }
    .single-post .post-header h1 { font-size: 26px; }
    .page-banner h1 { font-size: 28px; }
}

@media (max-width: 767.98px) {
    .navbar-brand { font-size: 18px; }
    .brand-icon { width: 36px; height: 36px; font-size: 16px; }
    .section-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .featured-image { height: 280px; }
    .featured-overlay { padding: 25px 20px; }
    .featured-overlay h2 { font-size: 20px; }
    .post-thumbnail { height: 180px; }
    .static-page-content { padding: 25px; }
    .contact-form-wrapper { padding: 25px; }
    .footer-top { padding: 40px 0 20px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .share-buttons { flex-wrap: wrap; }
}

