.updates-hero {
    background: transparent;
    padding: 2rem 1rem 0.5rem;
    text-align: center;
}

.updates-hero h1 {
    margin: 0;
    font-family: 'Georgia', serif;
    color: #894c23;
    font-size: 2.2rem;
}

.updates-hero p {
    margin: 0.6rem 0 1rem;
    color: #5a3e2b;
}

.updates-wrapper {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 1rem;
}

.updates-list {
    background: #fffaf0;
    border: 2px solid #c15700;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.06);
    font-family: 'Georgia', serif;
    color: #5a3e2b;
}

.updates-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.updates-controls .count {
    color: #894c23;
    font-weight: 700;
}

.updates-search {
    flex: 1 1 300px;
    display: flex;
    gap: 0.5rem;
}

.updates-search input[type="text"] {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0c9a6;
    background: #fffaf0;
}

.updates-search button {
    padding: 8px 12px;
    border-radius: 8px;
    border: none;
    background: #c15700;
    color: white;
    font-weight: 700;
    cursor: pointer;
}

.update-item {
    padding: 1rem;
    border-bottom: 1px dotted #d9b08c;
}

.update-item:last-child {
    border-bottom: none;
}

.update-meta {
    display: flex;
    gap: 1rem;
    align-items: baseline;
    flex-wrap: wrap;
}

.update-date {
    color: #c15700;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.update-title {
    font-size: 1.05rem;
    color: #894c23;
    font-weight: 700;
}

.update-body {
    margin-top: 0.6rem;
    color: #5a3e2b;
    line-height: 1.6;
    font-size: 0.98rem;
}

.back-home {
    display: inline-block;
    margin: 1rem auto;
    padding: 8px 14px;
    background: #c15700;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    max-width: 100px;
}

/* 小さな補助表示 (タグなど) */
.update-tags {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: #ffe6cc;
    color: #c15700;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {

    .updates-wrapper {
        max-width: 90%;
    }

    .updates-controls .count {
        font-weight: 700;
        font-size: 1.5rem;
        margin: 0 auto
    }

    .updates-search {
        flex: 1 1 300px;
        display: flex;
        gap: 0.5rem;
    }

    .update-meta {
        display: flex;
        gap: 0.5rem;
        align-items: baseline;
        flex-wrap: wrap;
    }

}