/*
---------------------------------------
layout_news
---------------------------------------
*/
.l_news-area {
    width: 825px;
}

.l_news--item {
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #D0D0D0;
    margin-bottom: 20px;
}

.l_news--item:last-child {
    border: none;
    margin-bottom: 0;
}

.l_news--item:first-child {
    border-bottom: 1px solid #D0D0D0;
}

.l_news--item--date {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.057em;
    margin-right: 55px;
}

.l_news--item--ttl {
    font-size: 15px;
    font-weight: 700;
}

.l_news--item a {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

@media screen and (max-width: 375px) {
    .l_news-area {
        width: 100%;
        margin-bottom: 25px;
    }

    .l_news--item {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .l_news--item--link {
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
    }

    .l_news--item--date {
        width: auto;
        font-size: 12px;
        margin-right: 0;
        margin-bottom: 0;
    }

    .l_news--item--ttl {
        width: 100%;
        font-size: 16px;
    }

    .l_news--item--inner-box {
        gap: 8px;
    }
}

/* Common News Item Styles */
.l_news--item--link {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.l_news--item--inner-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.l_news--item--cat-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.l_news--item--cat {
    display: inline-block;
    padding: 3px 15px;
    background-color: #fff;
    border: 1px solid #707070;
    color: #333;
    font-size: 12px;
    font-weight: 400;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.2;
}

/* Category Filter Buttons in News Page */
.p_cat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 25px;
    width: 100%;
    justify-content: flex-start;
}

.cat-btn {
    display: inline-block;
    padding: 6px 18px;
    background-color: #fff;
    border: 1px solid #EE7C00;
    color: #EE7C00;
    font-size: 16px;
    font-weight: bold;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 1.2;
}

.cat-btn:hover,
.cat-btn.active {
    background-color: #EE7C00;
    color: #fff;
}

/* Footer margin */
.pl_news {
    margin-bottom: 120px;
}

@media screen and (max-width: 375px) {
    .pl_news {
        margin-bottom: 60px;
    }
}