/* program.css */
.articles,
.articles * {
    all: unset;
    box-sizing: border-box;
}
.articles {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin: 0;
    padding: 0;
}
.articles article {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    width: 320px;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    transition: box-shadow 0.2s;
}
.articles article:hover {
    box-shadow: 0 4px 16px rgba(95, 143, 0, 0.15);
}
.articles figure {
    margin: 0;
    padding: 0;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articles figure {
    aspect-ratio: 4/3;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.articles figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    aspect-ratio: 4/3;
}
.articles .article-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.articles .article-body h2 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #5f8f00;
}
.articles .article-body p {
    color: #444;
    font-size: 1rem;
}
.material-symbols-outlined {
    display: block;
    text-align: center;
}
