:root {
    --bg: #1a2e2a;
    --panel: #2b5e4c;
    --panel2: #3d6b5b;
    --text: #f0f7f4;
    --muted: rgba(255, 255, 255, 0.8);
    --muted-light: #e3f2ed;
    --line: rgba(255, 255, 255, 0.2);
    --accent: #b8e0d2;
    --accent2: #95c5b5;
    --ok: #d4af37;
    --shadow: 0 20px 35px rgba(0, 0, 0, 0.5);
    --radius: 20px;
    --radius2: 28px;
    --max: 1280px;
    --rainbow: linear-gradient(90deg,
        #d4af37 0%,
        #b8e0d2 30%,
        #95c5b5 60%,
        #6aa898 100%);
    --btn-glow: rgba(184, 224, 210, 0.5);
    --header-bg: rgba(26, 46, 42, 0.9);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.55;
    overflow-x: hidden;
    font-weight: 350;
    letter-spacing: 0.3px;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

.wrap-nic-stl-main {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
    width: 100%;
}

.skip {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip:focus {
    left: 16px;
    top: 16px;
    width: auto;
    height: auto;
    padding: 12px 20px;
    background: var(--panel);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    z-index: 9999;
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--header-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--line);
}

.top-stripe {
    height: 1px;
    background: var(--rainbow);
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 8px 0;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
}

.brand img {
    height: 90px;
    width: auto;
    transition: opacity 0.3s ease;
}

.brand:hover img {
    opacity: 0.85;
}

nav {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}

nav a {
    display: inline-flex;
    padding: 12px 24px;
    color: var(--text);
    font-weight: 450;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 15px;
    white-space: nowrap;
    background: rgba(184, 224, 210, 0.1);
    border: 1px solid rgba(184, 224, 210, 0.3);
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

nav a:hover {
    background: rgba(184, 224, 210, 0.25);
    border-color: rgba(184, 224, 210, 0.7);
}

nav a.active {
    color: var(--bg);
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 4px 15px rgba(184, 224, 210, 0.4);
}

.menu-btn {
    display: none;
    width: 56px;
    height: 56px;
    background: rgba(184, 224, 210, 0.1);
    border: 1px solid rgba(184, 224, 210, 0.3);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    font-size: 24px;
    line-height: 1;
    z-index: 100;
}

.menu-btn:hover {
    background: rgba(184, 224, 210, 0.25);
}

.menu-btn .menu-icon {
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-btn.active .menu-icon {
    transform: rotate(90deg);
}

.menu-btn svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    stroke-width: 2;
}

@media (max-width: 920px) {
    .menu-btn {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--header-bg);
        backdrop-filter: blur(20px);
        padding: 0 16px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        border-bottom: 1px solid transparent;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 var(--radius) var(--radius);
    }
    
    nav.show {
        max-height: 500px;
        border-bottom: 1px solid var(--line);
        padding: 20px 16px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 12px;
    }
    
    nav a {
        display: block;
        padding: 16px 24px;
        background: rgba(26, 46, 42, 0.7);
        border: none;
        border-left: 5px solid var(--accent);
        border-radius: 12px;
        color: var(--text);
        font-weight: 500;
        font-size: 16px;
        text-align: left;
        white-space: normal;
        backdrop-filter: blur(5px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    nav a:hover {
        background: var(--panel2);
        border-left-width: 8px;
    }
    
    nav a.active {
        background: var(--accent2);
        color: var(--bg);
        border-left-color: var(--bg);
    }
}

.hero {
    padding: 20px 0 20px;
}

.hero-main {
    background: var(--panel2);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 28px 36px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rainbow);
    border-radius: var(--radius2) var(--radius2) 0 0;
}

.hero-main::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(184, 224, 210, 0.15), transparent 70%);
    pointer-events: none;
}

.hero-main h1 {
    font-size: clamp(30px, 3.2vw, 44px);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 12px;
    letter-spacing: -0.01em;
    position: relative;
    color: var(--text);
}

.hero-main p {
    color: var(--muted);
    font-size: 16px;
    margin: 0;
    max-width: 80%;
    position: relative;
}

.hero-side {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 24px;
    box-shadow: var(--shadow);
}

.notice {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--muted);
    font-size: 13px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    background: rgba(184, 224, 210, 0.08);
    border: 1.5px solid rgba(184, 224, 210, 0.4);
    border-radius: 60px;
    color: var(--text);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.btn:hover {
    background: rgba(184, 224, 210, 0.2);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(184, 224, 210, 0.2);
}

.btn-primary {
    background: linear-gradient(145deg, var(--accent2), var(--accent));
    border: 1px solid var(--accent);
    color: var(--bg);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(184, 224, 210, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--accent), var(--accent2));
    border-color: var(--text);
    color: var(--bg);
    box-shadow: 0 8px 25px rgba(184, 224, 210, 0.5);
}

.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.btn-small {
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    color: var(--muted);
}

.btn-small:hover {
    background: rgba(184, 224, 210, 0.15);
    color: var(--text);
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    border-radius: 40px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.chip:hover {
    background: rgba(184, 224, 210, 0.15);
    color: var(--text);
    border-color: var(--accent);
}

.chip::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.8;
}

.section {
    margin: 30px 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 16px;
    gap: 20px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    color: var(--text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.section-header .sub {
    color: var(--muted);
    font-size: 16px;
    margin: 5px 0 0;
}

.grid {
    column-count: 4;
    column-gap: 16px;
    margin: 20px 0;
}

.post {
    break-inside: avoid;
    margin-bottom: 16px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-block;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow);
}

.post:hover {
    border-color: var(--accent2);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.6);
    filter: brightness(1.05);
}

.post-thumb {
    display: block;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.post-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: filter 0.4s ease;
}

.post:hover .post-thumb img {
    filter: brightness(1.1);
}

.post-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 16px 16px 16px;
    background: linear-gradient(to top, rgba(26, 46, 42, 0.95), rgba(26, 46, 42, 0.5), transparent);
    backdrop-filter: blur(3px);
    border-bottom-left-radius: var(--radius);
    border-bottom-right-radius: var(--radius);
    z-index: 2;
    pointer-events: auto;
}

.post-actions-nic-stl-main {
    display: flex;
    justify-content: center;
}

.post-actions-nic-stl-main .btn {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(184, 224, 210, 0.6);
    color: var(--text);
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    min-width: 130px;
    backdrop-filter: blur(5px);
    font-size: 14px;
    padding: 12px 20px;
}

.post-actions-nic-stl-main .btn:hover {
    background: rgba(184, 224, 210, 0.2);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(184, 224, 210, 0.2);
}

.post-info {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 15px;
    background: rgba(26, 46, 42, 0.6);
    backdrop-filter: blur(8px);
    text-align: left;
    border-radius: 40px;
    border: 1px solid rgba(184, 224, 210, 0.3);
    z-index: 2;
}

.post-title {
    font-size: 15px;
    margin: 0;
    color: var(--text);
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-meta {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 12px;
}

.section .article-nic-stl-main {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 30px;
    margin: 30px 0;
    width: 100%;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.section .article-nic-stl-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--rainbow);
}

.section .article-nic-stl-main:first-child {
    margin-right: 10px;
}

@media (min-width: 1025px) {
    .section .article-nic-stl-main {
        width: calc(50% - 10px);
        display: inline-block;
        vertical-align: top;
    }
}

.article-nic-stl-main h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin: 0 0 15px;
    color: var(--text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.article-nic-stl-main h3 {
    font-size: 22px;
    margin: 25px 0 12px;
    color: var(--accent);
}

.article-nic-stl-main p {
    color: var(--muted);
    font-size: 16px;
    margin: 0 0 20px;
    line-height: 1.7;
}

.article-thumbs-nic-stl-main {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin: 25px 0;
}

.article-thumb {
    flex: 0 0 180px;
    max-width: 100%;
}

.article-thumb .post-thumb {
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    background: var(--panel);
    box-shadow: var(--shadow);
    overflow: hidden;
    margin: 20px 0;
}

.card-pad {
    padding: 24px;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px;
    letter-spacing: -0.4px;
    color: var(--text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-nic-stl-main {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    border-radius: 50px;
    color: var(--muted-light);
    font-size: 15px;
    font-weight: 400;
    transition: all 0.2s ease;
}

.pill-nic-stl-main:hover {
    background: rgba(184, 224, 210, 0.15);
    color: var(--text);
    border-color: var(--accent);
    box-shadow: 0 5px 15px rgba(184, 224, 210, 0.1);
}

footer {
    border-top: 2px solid var(--line);
    background: var(--panel2);
    padding: 50px 0 20px;
    margin-top: 70px;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--rainbow);
    opacity: 0.7;
}

.footer-grid {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-info {
    flex: 0 1 350px;
}

.footer-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--rainbow);
    border-radius: 3px;
}

.footer-info p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0 15px;
}

.footer-badge {
    display: flex;
    flex-direction: column;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--line);
    border-radius: 20px;
    color: var(--text);
    transition: all 0.2s ease;
    min-width: 140px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-badge:hover {
    background: rgba(184, 224, 210, 0.15);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(184, 224, 210, 0.2);
}

.badge-name {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

.badge-desc {
    font-size: 11px;
    opacity: 0.7;
    text-transform: lowercase;
}

.footer-link-nic-stl-mains {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: flex-start;
}

.footer-col {
    min-width: 140px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    color: var(--text);
    letter-spacing: 0.5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col li {
    margin: 0;
}

.footer-col a {
    color: var(--muted);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover {
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    transform: translateX(4px);
}

.footer-stamp {
    margin-top: 25px;
    max-width: 160px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--line);
    transition: opacity 0.3s ease;
}

.footer-stamp:hover {
    opacity: 0.85;
    border-color: var(--accent2);
}

.footer-stamp img {
    width: 100%;
    height: auto;
    display: block;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

@media (max-width: 1100px) {
    .grid {
        column-count: 3;
    }
}

@media (max-width: 1024px) {
    .grid {
        column-count: 2;
    }
    
    .section .article-nic-stl-main {
        width: 100%;
        margin-right: 0;
    }
}

@media (max-width: 920px) {
    .footer-grid {
        flex-direction: column-reverse;
    }
    
    .footer-link-nic-stl-mains {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-main {
        padding: 24px;
        max-width: 100%;
    }
    
    .hero-main p {
        max-width: 100%;
    }
    
    .hero-main h1 {
        font-size: 32px;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 5px;
    }
    
    .article-nic-stl-main {
        padding: 20px;
    }
    
    .grid {
        column-count: 2;
        column-gap: 12px;
    }
    
    .post-content {
        padding: 30px 12px 12px 12px;
    }
    
    .post-actions-nic-stl-main .btn {
        padding: 8px 18px;
        font-size: 13px;
        min-width: 110px;
    }
    
    .footer-link-nic-stl-mains {
        gap: 30px;
    }
    
    .links {
        gap: 8px;
    }
    
    .pill-nic-stl-main {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 640px) {
    .grid {
        column-count: 1;
    }
    
    .article-thumb {
        flex: 0 0 100%;
    }
    
    .title {
        font-size: 30px;
    }
    
    .card-pad {
        padding: 20px;
    }
    
    .footer-link-nic-stl-mains {
        gap: 25px;
    }
    
    .footer-badge-list {
        gap: 8px;
    }
    
    .footer-badge {
        min-width: 120px;
        padding: 10px 15px;
    }
    
    .badge-name {
        font-size: 13px;
    }
    
    .badge-desc {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .hero-main {
        padding: 20px;
    }
    
    .hero-main h1 {
        font-size: 28px;
    }
    
    .hero-side {
        padding: 20px;
    }
    
    .btn-group {
        flex-direction: column;
    }
    
    .btn-group .btn {
        width: 100%;
    }
    
    .post-content {
        padding: 25px 10px 10px 10px;
    }
    
    .post-actions-nic-stl-main .btn {
        padding: 8px 14px;
        font-size: 12px;
        min-width: 90px;
    }
    
    .links {
        gap: 6px;
    }
    
    .pill-nic-stl-main {
        padding: 6px 14px;
        font-size: 12px;
    }
    
    .footer-link-nic-stl-mains {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-badge-list {
        gap: 6px;
    }
    
    .footer-badge {
        min-width: 100%;
    }
}

.post .post-content .btn {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(184, 224, 210, 0.5);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    min-width: auto;
}

.post .post-content .btn:hover {
    background: rgba(184, 224, 210, 0.2);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(184, 224, 210, 0.2);
    color: var(--text);
}

.post .post-content .btn-primary {
    background: linear-gradient(145deg, rgba(149, 197, 181, 0.8), rgba(184, 224, 210, 0.8));
    border: 1px solid var(--accent);
    color: var(--bg);
    text-shadow: none;
}

.post .post-content .btn-primary:hover {
    background: linear-gradient(145deg, rgba(184, 224, 210, 0.9), rgba(149, 197, 181, 0.9));
    border-color: var(--text);
    color: var(--bg);
}



/* === New Footer === */
footer .footer-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

footer .footer-links-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    width: 100%;
}

footer .footer-col {
    min-width: 160px;
    text-align: left;
}

footer .footer-col h3 {
    margin-bottom: 20px;
}

footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .footer-col ul li {
    margin: 0;
}

footer .footer-col ul li a {
    color: var(--muted);
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 4px 0;
    border-bottom: 1px solid transparent;
}

footer .footer-col ul li a:hover {
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    transform: translateX(4px);
}

footer .footer-badge-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
}

footer .footer-badge {
    display: flex;
    flex-direction: column;
    padding: 10px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--text);
    transition: all 0.2s ease;
    min-width: 140px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

footer .footer-badge:hover {
    background: rgba(184, 224, 210, 0.15);
    border-color: var(--accent);
    color: var(--text);
    box-shadow: 0 8px 20px rgba(184, 224, 210, 0.2);
    transform: translateY(-2px);
}

footer .badge-name {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
	text-align: center;
}

footer .badge-desc {
    font-size: 11px;
    opacity: 0.7;
    text-transform: lowercase;
}

footer .footer-info-wrapper {
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 40px;
}

footer .footer-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

footer .footer-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text);
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

footer .footer-info h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--rainbow);
    border-radius: 3px;
}

footer .footer-info p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

footer .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

footer .footer-link-nic-stl-mains {
    display: none;
}

@media (max-width: 920px) {
    footer .footer-links-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    footer .footer-col {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }
    
    footer .footer-col ul {
        align-items: center;
    }
    
    footer .footer-badge-list {
        align-items: center;
    }
    
    footer .footer-badge {
        width: 100%;
        max-width: 200px;
    }
    
    footer .footer-info-wrapper {
        padding-top: 30px;
    }
}

@media (max-width: 480px) {
    footer .footer-links-wrapper {
        gap: 25px;
    }
    
    footer .footer-badge {
        min-width: 100%;
        padding: 8px 14px;
    }
    
    footer .badge-name {
        font-size: 13px;
    }
    
    footer .badge-desc {
        font-size: 10px;
    }
    
    footer .footer-info p {
        font-size: 13px;
    }
}




/* Featured Articles Section */
.featured-articles {
    margin: 60px 0 40px;
}

.articles-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 30px;
}

.featured-article {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius2);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--rainbow);
}

.featured-article:hover {
    border-color: var(--accent2);
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

.featured-article.reverse {
    flex-direction: row-reverse;
}

.featured-article.reverse::before {
    left: auto;
    right: 0;
}

.article-media {
    flex: 0 0 300px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.article-media img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.featured-article:hover .article-media img {
    transform: scale(1.02);
}

.article-content {
    flex: 1;
}

.article-content h3 {
    font-size: 26px;
    font-weight: 600;
    margin: 0 0 15px;
    color: var(--text);
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
}

.article-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--rainbow);
    border-radius: 3px;
}

.featured-article.reverse .article-content h3::after {
    left: 0;
}

.article-content p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    margin-top: 15px;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
}

.article-link:hover {
    color: var(--text);
    border-bottom-color: var(--accent);
    gap: 12px;
}

.article-link i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.article-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 1024px) {
    .featured-article,
    .featured-article.reverse {
        flex-direction: column;
        gap: 30px;
    }
    
    .featured-article::before,
    .featured-article.reverse::before {
        left: 0;
        right: auto;
        width: 100%;
        height: 4px;
    }
    
    .article-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 500px;
    }
    
    .article-content h3::after {
        left: 0;
    }
}

@media (max-width: 768px) {
    .featured-articles {
        margin: 40px 0 30px;
    }
    
    .articles-grid {
        gap: 30px;
    }
    
    .featured-article {
        padding: 20px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .article-content p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .article-media {
        max-width: 100%;
    }
    
    .article-content h3 {
        font-size: 20px;
    }
    
    .article-content p {
        font-size: 14px;
    }
}
