.article-gallery {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0px;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
    margin-top: 8px;
}
.article-gallery-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    background: #FFFFFF;
    box-shadow: 0px 8px 20px rgba(103, 63, 222, 0.1);
    border-radius: 8px;
    flex-basis: calc(33% - 24px);
    gap: 8px;
}
.article-gallery-item textarea.form-control {
    height: 72px;
    overflow-y: hidden;
}

/* dark theme */
body.dark-theme .article-gallery-item {
    background: var(--footer-background-color);
}
/* end dark theme */

@media screen and (max-width: 991px) {
    .article-gallery-item {
        flex-basis: 47%;
    }
}

@media screen and (max-width: 480px) {
    .article-gallery-items {
        flex-direction: column;
        flex-wrap: nowrap;
    }
    
}