@import url('https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400&family=Noto+Nastaliq+Urdu:wght@400;600;700&family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --primary: #2c5f2e;
    --primary-light: #4a8c4d;
    --primary-dark: #1a3d1c;
    --accent: #d4a017;
    --accent-light: #f0c040;
    --bg-main: #f5f0e8;
    --bg-card: #fdf8f0;
    --bg-dark: #1e2d1f;
    --text-main: #2a2a2a;
    --text-light: #5a5a5a;
    --text-urdu: #1a1a1a;
    --border: #d8cdb8;
    --shadow: rgba(44, 95, 46, 0.15);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.7;
    direction: rtl;
}

.urdu-text {
    font-family: 'Noto Nastaliq Urdu', 'Amiri', serif;
    direction: rtl;
    line-height: 2.2;
}

#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-leaf {
    width: 60px;
    height: 60px;
    border: 4px solid var(--primary-light);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 16px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-inner p {
    color: var(--accent-light);
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.1rem;
}

header {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-dark) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.2rem;
    color: var(--accent-light);
    line-height: 1.3;
}

.logo-sub {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.6);
    font-family: 'Lato', sans-serif;
    direction: ltr;
    text-align: right;
}

nav.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

nav.main-nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.95rem;
    padding: 8px 14px;
    border-radius: 6px;
    transition: all 0.2s;
}

nav.main-nav a:hover,
nav.main-nav a.active {
    background: var(--primary-light);
    color: #fff;
}

.burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.burger-btn span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--accent-light);
    border-radius: 2px;
    transition: all 0.3s;
}

.burger-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger-btn.open span:nth-child(2) {
    opacity: 0;
}

.burger-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    background: var(--primary-dark);
    padding: 16px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu.open {
    display: block;
}

.mobile-menu a {
    display: block;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--accent-light);
}

.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/1/1e/Carrying_home_some_fresh_water.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
}

.hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    padding: 4px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero h1 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    max-width: 580px;
    line-height: 2;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-dark);
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.4);
}

.btn-primary:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.5);
}

.section {
    padding: 72px 24px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-label {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 12px;
    direction: ltr;
}

.section-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: var(--primary-dark);
    line-height: 1.8;
}

.section-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 2;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.article-card {
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border);
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px var(--shadow);
}

.article-card.featured {
    grid-column: span 2;
}

.card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.article-card.featured .card-img {
    height: 300px;
}

.card-body {
    padding: 24px;
}

.card-tag {
    display: inline-block;
    background: rgba(44, 95, 46, 0.1);
    color: var(--primary);
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.82rem;
    padding: 3px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.card-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.9;
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.card-title:hover {
    color: var(--primary);
}

.card-excerpt {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 2;
    margin-bottom: 16px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
    direction: ltr;
    font-family: 'Lato', sans-serif;
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.read-more:hover {
    color: var(--accent);
}

.features-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--bg-dark) 100%);
    padding: 72px 24px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    transition: background 0.3s;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.6rem;
}

.feature-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.8;
}

.feature-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    line-height: 2;
}

.highlight-section {
    background: var(--bg-card);
    padding: 72px 24px;
}

.highlight-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px var(--shadow);
    position: relative;
}

.highlight-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.highlight-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(26, 61, 28, 0.5), transparent);
    border-radius: 0 0 16px 16px;
}

.highlight-content h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--primary-dark);
    line-height: 1.9;
    margin-bottom: 20px;
}

.highlight-content p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 16px;
}

.highlight-list {
    list-style: none;
    margin-bottom: 28px;
}

.highlight-list li {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.95rem;
    color: var(--text-main);
    padding: 8px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 2;
}

.highlight-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

.article-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-header {
    margin-bottom: 40px;
}

.article-header .card-tag {
    font-size: 0.9rem;
    padding: 5px 16px;
    margin-bottom: 16px;
}

.article-header h1 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    direction: ltr;
    font-family: 'Lato', sans-serif;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.article-hero-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    display: block;
}

.article-body {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.05rem;
    color: var(--text-urdu);
    line-height: 2.4;
}

.article-body h2 {
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 36px 0 16px;
    line-height: 1.8;
}

.article-body h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 28px 0 12px;
    line-height: 1.8;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul, .article-body ol {
    padding-right: 28px;
    margin-bottom: 20px;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 2.2;
}

.article-body a {
    color: var(--primary);
    text-decoration: underline;
}

.article-body a:hover {
    color: var(--accent);
}

.article-body blockquote {
    border-right: 4px solid var(--accent);
    padding: 16px 20px;
    background: rgba(212, 160, 23, 0.08);
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-style: italic;
}

.article-sources {
    margin-top: 48px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.article-sources h3 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.1rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    line-height: 1.8;
}

.article-sources ul {
    list-style: none;
    padding: 0;
}

.article-sources li {
    margin-bottom: 8px;
}

.article-sources a {
    color: var(--primary);
    font-size: 0.85rem;
    font-family: 'Lato', sans-serif;
    direction: ltr;
    display: inline-block;
    text-decoration: none;
}

.article-sources a:hover {
    text-decoration: underline;
}

.related-articles {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.related-articles h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 28px;
    line-height: 1.8;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.about-page, .contact-page, .policy-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark), var(--bg-dark));
    padding: 72px 24px;
    text-align: center;
}

.page-hero h1 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    line-height: 1.8;
    margin-bottom: 16px;
}

.page-hero p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px var(--shadow);
}

.about-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.about-content h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 14px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.value-icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.value-title {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.05rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
    line-height: 1.8;
}

.value-desc {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 48px;
}

.contact-info h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
    line-height: 1.8;
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 10px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    color: #fff;
}

.contact-details h3 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
    line-height: 1.8;
}

.contact-details p, .contact-details a {
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--text-light);
    direction: ltr;
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary);
}

.contact-map {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
}

.contact-map h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.4rem;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-map p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 12px;
}

.policy-content h2 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin: 36px 0 16px;
    line-height: 1.8;
}

.policy-content p, .policy-content li {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.98rem;
    color: var(--text-light);
    line-height: 2.2;
    margin-bottom: 12px;
}

.policy-content ul {
    padding-right: 24px;
}

footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 24px 24px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
    display: block;
}

.footer-brand p {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.88rem;
    line-height: 2;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.footer-col h4 {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 1rem;
    color: var(--accent-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
    line-height: 2;
}

.footer-col a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    font-family: 'Lato', sans-serif;
    direction: ltr;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--accent-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border-top: 2px solid var(--accent);
    padding: 20px 24px;
    z-index: 8000;
    display: none;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
}

.cookie-banner.show {
    display: block;
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-text {
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
    line-height: 2;
    flex: 1;
}

.cookie-text a {
    color: var(--accent-light);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-accept {
    background: var(--accent);
    color: var(--bg-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-accept:hover {
    background: var(--accent-light);
}

.btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 24px;
    border-radius: 6px;
    font-family: 'Noto Nastaliq Urdu', serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reject:hover {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.schema-breadcrumb {
    padding: 16px 24px;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    direction: ltr;
    font-family: 'Lato', sans-serif;
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-inner a:hover {
    text-decoration: underline;
}

.breadcrumb-inner span {
    color: var(--text-light);
}

.breadcrumb-sep {
    color: var(--border);
}

@media (max-width: 1024px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .article-card.featured {
        grid-column: span 2;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    nav.main-nav {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .article-card.featured {
        grid-column: span 1;
    }
    .highlight-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .hero {
        min-height: 400px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .article-hero-img {
        height: 260px;
    }
    .cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .header-inner {
        padding: 0 16px;
    }
    .section {
        padding: 48px 16px;
    }
}
