﻿[data-postlist="wrap"] {
    margin-bottom: 50px;
   container-type: inline-size;
   container-name: postlist;
}

[data-postlist="list"] {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
}

[data-postlist="listitem"] {
    width: calc((100% - 60px) / 3);

    .img {
        overflow: hidden;
        margin-bottom: 10px;

        img {
            width: 100%;
            transition: .25s;
            transform: scale(1);
        }
    }

    .title {
        margin: 0 0 10px;
        position: relative;
        line-height: 2.8rem;
        padding-right: 45px;
        min-height: 4rem;
        background: url(/common/img/ico_003.png) center right no-repeat;
        background-size: 4rem;

        span {
            font-size: 1.8rem;
            display: table-cell;
            font-weight: bold;
            letter-spacing: 0.02em;
            text-align: left;
            color: #132943;
            vertical-align: middle;
        height: 4rem;
        }
    }

    .subtitle {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 10px;
        line-height: 1.6;

        &:empty {
            display: none;
        }
    }

    .description {
        font-size: 16px;
        line-height: 1.6;
        font-weight: 500;
    }

    &:hover {
        opacity: 0.75;
        .img img {
            transform: scale(1.1);
        }
        .subtitle,.description{
            color: #132943;
        }
    }
}

@container postlist (max-width: 700px) {
    [data-postlist="listitem"] {
        width: calc((100% - 30px) / 2);
    }
}
@container postlist (max-width: 400px) {
    [data-postlist="listitem"] {
        width: 100%;
    }
}