.news-detail {
    max-width: 860px;
    margin: 0 auto;
    font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    color: #393933;
    line-height: 1.75;
    padding: 150px 20px;
    box-sizing: border-box;
}

.news-heading {
    border-bottom: 1px solid #ccc8b4;
    padding-bottom: 16px;
    margin-bottom: 32px;
    position: relative;
}

.news-date {
    display: inline-block;
    font-size: 14px;
    color: #999772;
    vertical-align: middle;
    margin-right: 12px;
}

.news-tag {
    display: inline-block;
    background-color: #466630;
    color: #d6dfc3;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 3px;
    vertical-align: middle;
    margin-right: 16px;
}

.news-title {
    margin: 16px 0 0 0;
    color: #232320;
    letter-spacing: 0.02em;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
}

.news-content p {
    font-size: 18px;
    color: #393933;
}

.news-images {
    display: flex;
    gap: 20px;
    margin-bottom: 28px;
}

.news-images img {
    width: 50%;
    height: auto;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.back-button-wrap {
    text-align: right;
    margin-top: 20px;
}

.back-button {
    width: 140px;
    float: right;
    background-color: #58924a;
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #3d6f33;
}

.single-news-date-tag {
    display: flex !important;
}

@media (max-width: 720px) {
    .news-images {
        flex-direction: column;
    }
    .news-images img {
        width: 100%;
    }
    .news-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 425px) {
	.news-content p {
		font-size: 14px;
    }
    .preview p {
    	width: 180px;
    }
}