 /* Main section styling */
        .content-frame {
            max-width: 1400px;
            margin: 0 auto;
            padding: 2rem 1rem;
            width: 100%;
        }

        /* Article grid layout */
        .article-showcase {
            display: flex;
            gap: 2rem;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        /* Individual article card */
        .feature-block {
            flex: 1;
            min-width: 300px;
            background: #777777;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .feature-block:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
        }

        /* Article image */
        .feature-visual {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        /* Article content */
        .feature-content {
            padding: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: #ffffff;
        }

        .feature-excerpt {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .feature-link {
            display: inline-block;
            text-decoration: none;
            color: #db4444;
            font-weight: 600;
            font-size: 0.95rem;
            transition: color 0.2s ease;
        }

        .feature-link:hover {
            color: #f1f1f1;
            text-decoration: underline;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .article-showcase {
                flex-direction: column;
                gap: 1.5rem;
            }

            .feature-block {
                min-width: 100%;
            }

            .feature-visual {
                height: 200px;
            }

            .feature-title {
                font-size: 1.25rem;
            }
        }

        @media (max-width: 480px) {
            .content-frame {
                padding: 1rem 0.5rem;
            }

            .feature-visual {
                height: 180px;
            }

            .feature-title {
                font-size: 1.1rem;
            }

            .feature-excerpt {
                font-size: 0.9rem;
            }
        }