        /* --- Related Articles Section --- */
        .related-articles {
            margin-top: 4rem;
            padding-top: 4rem;
            border-top: 1px solid hsl(var(--muted) / 0.5);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 1.5rem;
            color: hsl(var(--foreground));
        }

        .section-p {
            font-weight: 200;
            text-align: center;
            margin-bottom: 2.5rem;
            color: hsl(var(--foreground));
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }

        .article-card {
            background-color: hsl(var(--secondary) / 0.1);
            border: 1px solid hsl(var(--muted) / 0.5);
            border-radius: 1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .article-card:hover {
            transform: translateY(-5px);
            border-color: hsl(var(--primary));
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .article-card-content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .article-category {
            font-size: 0.75rem;
            font-weight: 600;
            color: hsl(var(--primary));
            text-transform: uppercase;
            margin-bottom: 0.75rem;
        }

        .article-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: hsl(var(--foreground));
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .article-card p {
            font-size: 0.9rem;
            color: hsl(var(--muted-foreground));
            line-height: 1.6;
            flex-grow: 1;
        }

        .read-more {
            margin-top: 1rem;
            font-weight: 600;
            color: hsl(var(--accent));
            align-self: flex-start;
            transition: text-shadow ease-in-out 0.2s;
            text-shadow: 0 1px 5px var(--shad);
        }

        .read-more:hover {
            text-shadow: 0 2px 4px var(--shadhov);
        }


        .read-more .arrow {
            display: inline-block;
            transition: all 0.3s ease;
        }

        .article-card:hover .arrow {
            font-size: 1.3rem;
            font-weight: bolder;
            transform: translateX(6.5px);
        }