:root {
    --text-gray: #777777;
    --text-black: #242424;
    --action-black: #333333;
}

.news-page {
    padding: 20px;
}

.news-page .page-title .title-text {
    font-size: 28px;
    color: var(--text-black);
}

.news-page .page-title .title-desc {
    font-size: 14px;
    color: var(--text-gray);
}

.news-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 16px 10px;
    width: 100%;
}

.news-box {
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.news-image {
    width: 100%;
    height: 200px;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
}

.news-content {
    padding: 16px;
}

.news-title {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--text-black);
}

.news-summary {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.read-more {
    color: var(--action-black);
    text-decoration: none;
    font-size: 12px;
    display: inline-block;
}

.read-more:hover {
    text-decoration: underline;
    color: var(--text-black);
}

