/* Custom CSS for Articles Component */
.article-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    /* Ensures all cards have the same height */
}

.article-icon {
    font-size: 2rem;
    color: #6c757d;
}

.quote-icon {
    font-size: 1.5rem;
    color: #6c757d;
    display: block;
    margin-bottom: 10px;
}

.article-content {
    margin-top: 10px;
    margin-bottom: 10px;
    flex-grow: 1;
}

.article-divider {
    border-top: 1px solid #e0e0e0;
    margin: 10px 0;
}

.article-author {
    font-weight: bold;
    color: #333;
}

/* Ensure the parent row has full height for flexbox alignment */
.row {
    display: flex;
    flex-wrap: wrap;
}

/* Ensure all article cards in a row have the same height */
.col-md-4 {
    display: flex;
    flex-direction: column;
}

.articlecontent {
    display: flex;
    flex-direction: column;
}

.articles .row {
    display: flex;
    justify-content: space-between;
}