.article-plp-main {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding: 0px 60px;
    margin-bottom: 64px;
    margin-top: 64px;
}
.article-plp-main h1 {
    color: #323232;
    text-align: center;
    font-size: 24px;
}
.article-plp-main .articles-section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 16px;
}
.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);
}
.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;
}
.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;
    height: -moz-max-content;
    height: max-content;
}
.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;
    align-self: flex-start;
}
.article-plp-main .toolbox {
    padding-top: 32px;
}
@media (max-width: 920px) {
    .article-plp-main {
        padding: 0px 20px;
    }
    .article-plp-main .article-wrapper {
        width: 100%;
    }

    .article-plp-main .articles-section {
        justify-content: space-between;
    }
}
@media (max-width: 600px) {
    .article-plp-main .articles-section {
        justify-content: center;
    }
}
