/* ==========================
   NEWS single layout
========================== */
.news-single {
    padding-top: 80px;
    padding-bottom: 50px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}
.item {
    display: flex;
    gap: 32px;
}

.news-thumb {
    width: 40%;
}

.news-thumb img {
    width: 100%;
    height: auto;
    display: block;
}

.news-content {
    width: 60%;
}

.news-content .date {
    font-size: 14px;
    color: #777;
    margin-bottom: 4px;
}

.news-content .category {
    font-size: 14px;
    margin-bottom: 12px;
}

.category {
    display: inline-block;
}

.category span {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #fff;
}

/* NEWS */
.cat-news span {
    background-color: #e7bfd0;
}

/* EVENT */
.cat-event span {
    background-color: #cbb9e6;
}

/* INFORMATION */
.cat-information span {
    background-color: #d9c9aa;
}

.news-content .title {
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: bold;
}

.news-content .text {
    line-height: 1.8;
    padding-top: 16px;
}

.wp-block-heading {
    background-color: #000;
    color: #fff;
    padding: 10px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* ===== SP ===== */
@media screen and (max-width: 768px) {
    .news-single-inner {
        flex-direction: column;
    }

    .news-thumb,
    .news-content {
        width: 100%;
    }
}