.articles-section {
    padding: 40px 0;

    border-top: 3px solid #EECE18;
    border-bottom: 3px solid #EECE18;
    box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.1);

    .articles-header {
        text-align: center;
        margin-bottom: 60px;

        @media (max-width: 768px) {
            margin-bottom: 40px;
        }

        h2 {
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 36px;
            line-height: 1.21;
            color: #333333;
            margin: 0;

            @media (max-width: 768px) {
                font-size: 28px;
                padding: 0 10px;
            }
        }
    }

    .articles-grid {
        display: flex;
        gap: 95px;
        max-width: 1047px;
        margin: 0 auto;
        padding: 0 20px;

        @media (max-width: 768px) {
            flex-direction: column;
            gap: 30px;
            padding: 0 15px;
        }
    }

    .article-card {
        flex: 1;
        display: flex;
        flex-direction: column;

        @media (max-width: 768px) {
            max-width: 100%;
        }

        .article-image {
            position: relative;
            width: 100%;
            height: 306px;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 33px;

            @media (max-width: 768px) {
                height: 250px;
                margin-bottom: 20px;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            &::after {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(108, 94, 17, 0.31);
            }
        }

        .article-content {
            flex: 1;

            .article-title {
                font-family: 'Inter', sans-serif;
                font-weight: bold;
                font-size: 18px;
                line-height: 1.21;
                color: #333333;
                margin: 0 0 14px 0;

                @media (max-width: 768px) {
                    font-size: 16px;
                    margin-bottom: 12px;
                }
            }

            .article-excerpt {
                font-family: 'Inter', sans-serif;
                font-weight: 400;
                font-size: 14px;
                line-height: 1.21;
                color: #333333;
                margin: 0 0 14px 0;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
                text-overflow: ellipsis;

                @media (max-width: 768px) {
                    font-size: 14px;
                    line-height: 1.4;
                    -webkit-line-clamp: 2;
                    margin-bottom: 16px;
                }
            }

            .article-link {
                display: inline-flex;
                align-items: center;
                gap: 3px;
                text-decoration: none;
                color: #333333;

                @media (max-width: 768px) {
                    justify-content: flex-start;
                    padding: 8px 0;
                }

                .link-text {
                    font-family: 'Inter', sans-serif;
                    font-weight: 700;
                    font-size: 14px;
                    line-height: 1.21;
                    color: #333333;

                    @media (max-width: 768px) {
                        font-size: 15px;
                    }
                }

                .arrow-icon {
                    width: 14px;
                    height: 14px;
                    fill: #333333;
                    transform: rotate(180deg);

                    @media (max-width: 768px) {
                        width: 16px;
                        height: 16px;
                    }
                }

                &:hover {
                    opacity: 0.8;
                }
            }
        }
    }

    .show-more-wrapper {
        text-align: center;
        margin-top: 137px;

        @media (max-width: 768px) {
            margin-top: 60px;
        }

        .show-more-btn {
            display: inline-block;
            background-color: #EECE18;
            color: #333333;
            font-family: 'Inter', sans-serif;
            font-weight: 700;
            font-size: 15px;
            text-decoration: none;
            padding: 22.5px 97.5px;
            border-radius: 5px;
            transition: all 0.3s ease;

            @media (max-width: 768px) {
                padding: 18px 40px;
                font-size: 14px;
                width: 80%;
                max-width: 300px;
            }

            &:hover {
                background-color: #d4b815;
                transform: translateY(-2px);
            }
        }
    }

    padding-bottom: 120px;
    padding-top: 50px;

    @media (max-width: 768px) {
        padding-bottom: 80px;
        padding-top: 40px;
    }
}
