/* PADA INDEX.BLADE.PHP NYA */

/* .img-artikel {
    border-radius: 12px;
} */

/* DETAIL ARTIKEL */
/* .img-detail-artikel {
    width: 470px;
    height: 440px;
} */

.articles {
    margin: 0 25px;
    padding: 40px 0;
}

.articles .section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: bold;
    color: #333;
}

.no-article-msg {
    text-align: center;
    font-style: italic;
    color: #888;
}

.article-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 380px;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.article-thumbnail {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
    color: #222;
}

.article-excerpt {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.5;
}

.read-more {
    align-self: flex-start;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s;
}

.read-more:hover {
    color: #0056b3;
}
