/**
 * ニュースページ専用スタイル
 * ルール: グラデーション、シャドウ、角丸は使用禁止
 */

/* ========================================
   News Page Styles
   ======================================== */

/* Page Header */
.page-header {
    margin: 30px 0 20px 0;
}

.page-header h2 {
    font-size: 1.8rem;
    font-weight: 400;
    color: #333333;
    text-align: center;
    margin: 0;
}

/* Update History */
.update-history {
    margin: 30px 0;
}

.update-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-item {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.update-item:last-child {
    border-bottom: none;
}

.update-date {
    font-size: 0.85rem;
    font-weight: 300;
    color: #666666;
    min-width: 80px;
    flex-shrink: 0;
}

.update-content {
    flex: 1;
}

.update-title {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: #333333;
    line-height: 1.3;
}

.update-description {
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #555555;
}

.update-detail {
    font-size: 0.85rem;
    font-weight: 300;
    margin-top: 5px;
    margin-bottom: 8px;
    line-height: 1.4;
    color: #888888;
}

.update-link {
    font-size: 0.95rem;
}

.update-link a {
    color: rgb(113, 175, 182);
    text-decoration: none;
    font-weight: 400;
}

.update-link a:hover {
    text-decoration: underline;
}

.no-updates {
    text-align: center;
    padding: 40px 20px;
    color: #666666;
}

.no-updates p {
    font-size: 1rem;
    font-weight: 300;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .update-item {
        flex-direction: column;
        gap: 10px;
    }

    .update-date {
        min-width: auto;
    }

    .page-header h2 {
        font-size: 1.5rem;
    }
}
