/* ============================
   NEWS詳細
============================ */
.news-single__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2rem;
}

.news-single__meta {
    flex: 1;
    min-width: 0;
}

.news-single__date {
    color: #888;
    margin: 0 0 1.5rem 0;
}

.news-single__title {
    font-size: clamp(1.5rem, 1vw + 1.3rem, 2rem);
    line-height: 1.3;
    margin: 0;
}

.news-single__thumb {
    flex-shrink: 0;
    width: clamp(10rem, 6rem + 15vw, 18rem);
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow: hidden;
}

.news-single__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-single__divider {
    width: 100%;
    height: 1px;
    background: #e5e5e5;
    margin: 1.5rem 0;
}

.news-single__body {
    line-height: 2;
    color: #414141;
    font-size: clamp(0.813rem, 0.706rem + 0.45vw, 1.25rem);
}

.news-single__back {
    text-align: center;
    margin-top: 3rem;
}

.news-single__back-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0.8rem 3rem;
    background: #3172FF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

@media screen and (max-width: 768px) {
    .news-single__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-single__thumb {
        width: 100%;
    }
}