/*
Theme Name: Laurel Child
Theme URI: https://www.MyBrand-WEB.com
Template:laureljp
*/

/* =========================================
   ブログ記事一覧
========================================= */

.art_lists {
    margin: 0 0 24px;
}

.art_lists > .post {
    display: flex;
    gap: 24px;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
    transition: all 0.25s ease;
}

.art_lists > .post:hover {
    transform: translateY(-2px);
    border-color: #e6e6e6;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}


/* =========================================
   サムネイル
========================================= */

.art_lists .postList_thumbnail {
    flex: 0 0 150px;
    width: 150px;
    margin: 0;
}

.art_lists .postList_thumbnail a {
    display: block;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
}

.art_lists .postList_thumbnail img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.art_lists > .post:hover .postList_thumbnail img {
    transform: scale(1.04);
}


/* =========================================
   記事本文部分
========================================= */

.art_lists .media-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 2px 0;
}


/* =========================================
   タイトル
========================================= */

.art_lists .entry-title {
    width: 100%;
    margin: 0 0 10px;
    padding: 0 !important;
    border: 0 !important;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.art_lists .entry-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.art_lists .entry-title a:hover {
    color: #a47c82;
}


/* =========================================
   抜粋
========================================= */

.art_lists .media-body_excerpt {
    display: -webkit-box;
    width: 100%;
    margin-bottom: 14px;
    overflow: hidden;

    color: #777;
    font-size: 14px;
    line-height: 1.8;
    text-decoration: none;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.art_lists .media-body_excerpt:hover {
    color: #555;
}


/* =========================================
   続きを読むボタン
========================================= */

.art_lists .btn.btn-default {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 7px 16px !important;
    border: 1px solid #ddd;
    border-radius: 999px;

    background: #fff;
    color: #666;

    font-size: 12px;
    line-height: 1.4;
    text-decoration: none;

    transition: all 0.2s ease;
}

.art_lists .btn.btn-default:hover {
    border-color: #a47c82;
    background: #a47c82;
    color: #fff;
}


/* =========================================
   スマホ
========================================= */

@media (max-width: 767px) {

    .art_lists {
        margin-bottom: 16px;
    }

    .art_lists > .post {
        gap: 14px;
        padding: 14px;
        border-radius: 12px;
    }

    .art_lists .postList_thumbnail {
        flex: 0 0 100px;
        width: 100px;
    }

    .art_lists .postList_thumbnail a {
        border-radius: 8px;
    }

    .art_lists .entry-title {
        margin-bottom: 6px;
        font-size: 16px;
        line-height: 1.45;
    }

    .art_lists .media-body_excerpt {
        margin-bottom: 8px;
        font-size: 13px;
        line-height: 1.6;
        -webkit-line-clamp: 2;
    }

    .art_lists .btn.btn-default {
        padding: 5px 12px !important;
        font-size: 11px;
    }
}


/* =========================================
   さらに小さいスマホ
========================================= */

@media (max-width: 480px) {

    .art_lists > .post {
        gap: 12px;
        padding: 12px;
    }

    .art_lists .postList_thumbnail {
        flex: 0 0 85px;
        width: 85px;
    }

    .art_lists .entry-title {
        font-size: 15px;
    }

    .art_lists .media-body_excerpt {
        font-size: 12px;
    }
}