.mockup-articles-section {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 64px;
    margin-top: 64px;
}
.mockup-articles-section h2 {
        color: #323232;
        text-align: center;
        font-size: 24px;
    }
.mockup-articles-section .mockup-articles {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }
.mockup-articles-section .mockup-article {
        width: 32%;
        display: flex;
        flex-direction: column;
        border-radius: 12px;
        background: #fff;
        box-shadow: 0px 4px 6px -1px rgba(16, 24, 40, 0.1),
            0px 2px 4px -2px rgba(16, 24, 40, 0.1);
    }
.mockup-articles-section .mockup-article-img-wrapper {
        width: 100%;
        overflow: hidden;
        border-radius: 12px;
    }
.mockup-articles-section .mockup-article-img-wrapper img {
        width: 100%;
        overflow: hidden;
    }
.mockup-articles-section .mockup-article-detail-wrapper {
        display: flex;
        padding: 24px;
        flex-direction: column;
        gap: 24px;
    }
.mockup-articles-section .mockup-article-detail-wrapper .submit-btn {
            background-color: white;
            font-weight: bold;
            color: blue;
        }
.mockup-articles-section .mockup-article-detail-wrapper > span {
        color: #175cd3;
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        border-radius: 8px;
        background: #f0f6ff;
        width: -moz-max-content;
        width: max-content;
        padding: 2px 12px;
    }
.mockup-articles-section .text-wrapper {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        height: -moz-max-content;
        height: max-content;
    }
.mockup-articles-section .text-wrapper a {
            color: #111827;
            font-size: 20px;
            font-weight: 700;
            line-height: 28px;
            letter-spacing: -0.4px;
        }
.mockup-articles-section .text-wrapper #articlePreview {
            font-size: 14px;
            color: black;
            font-family: Inter, sans-serif;
        }
.mockup-articles-section .text-wrapper p {
            color: #6b7280;
            line-height: 24px;
            height: -moz-max-content;
            height: max-content;
        }
.mockup-articles-section .mockup-author-wrapper {
        display: flex;
        gap: 12px;
        align-items: center;
    }
.mockup-articles-section .mockup-author-wrapper img {
            width: 50px;
        }
.mockup-articles-section .mockup-author-details {
        display: flex;
        flex-direction: column;
        color: #111827;
        font-size: 14px;
        line-height: 20px;
    }
.mockup-articles-section .mockup-author-details span {
            color: #6b7280;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
        }
@media (max-width: 920px) {
        .mockup-articles-section .mockup-article {
            width: 48%;
        }

        .mockup-articles-section .mockup-articles {
            justify-content: space-between;
        }
    }
@media (max-width: 600px) {
        .mockup-articles-section .mockup-article {
            width: 90%;
        }

        .mockup-articles-section .mockup-articles {
            justify-content: center;
        }
    }
