.article-plp-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
    margin-bottom: 32px;
    margin-top: 32px;
}
.article-plp-main h1 {
        color: #323232;
        text-align: center;
        font-size: 24px;
    }
.article-plp-main .articles-section {
        display: grid;
        width: 100%;
        grid-gap: 16px;
        gap: 16px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
        justify-items: center;
    }
.article-plp-main .article-wrapper {
        width: 100%;
        max-width: 380px;
        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);
        height: 100%;
    }
.article-plp-main .article-img-wrapper {
        width: 100%;
        overflow: hidden;
        border-radius: 12px 12px 0px 0px;
        cursor: pointer;
    }
.article-plp-main .article-img-wrapper img {
        width: 100%;
        overflow: hidden;
        aspect-ratio: 1.33;
        -o-object-fit: cover;
           object-fit: cover;
    }
.article-plp-main .article-detail-wrapper {
        display: flex;
        padding: 24px;
        flex-direction: column;
        gap: 24px;
        flex: 1 1 auto;
    }
.article-plp-main .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;
    }
.article-plp-main .text-wrapper {
        overflow: hidden;
        display: flex;
        flex-direction: column;
        gap: 10px;
        flex: 1 1 auto;
    }
.article-plp-main .text-wrapper a {
            color: #111827;
            font-size: 20px;
            font-weight: 700;
            line-height: 28px;
            letter-spacing: -0.4px;
            cursor: pointer;
        }
.article-plp-main .text-wrapper p {
            color: #6b7280;
            line-height: 24px;
            height: -moz-max-content;
            height: max-content;
        }
.article-plp-main .author-wrapper {
        display: flex;
        gap: 12px;
        align-items: center;
    }
.article-plp-main .author-wrapper img {
            width: 35px;
        }
.article-plp-main .author-details {
        display: flex;
        flex-direction: column;
        color: #111827;
        font-size: 14px;
        line-height: 20px;
    }
.article-plp-main .author-details span {
            color: #6b7280;
            font-weight: 400;
            font-size: 14px;
            line-height: 20px;
        }
.article-plp-main .submit-btn {
        background-color: white;
        font-weight: bold;
        color: blue;
        color: var(--primary-main, blue);
        align-self: flex-start;
        margin-top: auto;
    }
.article-plp-main .toolbox {
        padding-top: 32px;
    }
@media (max-width: 1024px) {
        .article-plp-main .article-wrapper {
            max-width: none;
        }

        .article-plp-main .articles-section {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
@media (max-width: 600px) {
        .article-plp-main .articles-section {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }
    }
