/**
 * ブログカードスタイル
 */

.wp-block-ykn-blog-card {
    margin: 2em 0;
}

.p-blog-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    text-decoration: none !important;
    color: inherit;
    border: 2px solid #f19d30;
    border-radius: 4px;
    padding: 14px 20px 14px;
    background: #fff;
    transition: opacity 0.2s ease;
}

.p-blog-card:hover {
    text-decoration: none !important;
    opacity: 0.8;
}

.p-blog-card *,
.p-blog-card:hover * {
    text-decoration: none !important;
}

.p-blog-card:hover .p-blog-card__title {
    color: #f19d30;
}

.p-blog-card:hover .p-blog-card__date {
    color: #f19d30;
}

/* ラベル */
.p-blog-card__label {
    display: inline-block;
    background: #f19d30;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 2px;
    line-height: 1.4;
    margin-top: -34px;
    margin-bottom: 8px;
}

/* カード内部 */
.p-blog-card__inner {
    display: flex;
    position: relative;
    width: 100%;
}

/* サムネイル */
.p-blog-card__thumb {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 27%;
    overflow: hidden;
}

.p-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ボディ（テキスト＋ボタン） */
.p-blog-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: calc(27% + 20px);
    min-width: 0;
}

/* コンテンツ */
.p-blog-card__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 日付 */
.p-blog-card__date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #888;
    transition: color 0.2s ease;
    text-decoration: none !important;
}

.p-blog-card__date::before {
    content: '';
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23888' stroke='%23888' stroke-width='0.5'%3E%3Cpath d='M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: scaleX(-1) rotate(150deg);
    transition: background-image 0.2s ease;
}

.p-blog-card:hover .p-blog-card__date::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f19d30' stroke='%23f19d30' stroke-width='0.5'%3E%3Cpath d='M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46C19.54 15.03 20 13.57 20 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74C4.46 8.97 4 10.43 4 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z'/%3E%3C/svg%3E");
}

/* タイトル */
.p-blog-card__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.6;
    height: calc(24px * 1.6 * 2);
    color: #333;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 続きを読むボタン */
.p-blog-card__more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    gap: 5px;
    background: #f19d30;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    padding: 1px 20px 2px;
    border-radius: 2px;
    margin-top: 8px;
}

.p-blog-card__more-icon {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.p-blog-card__more-icon::before,
.p-blog-card__more-icon::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateY(3px);
}

.p-blog-card__more-icon::after {
    margin-left: -4px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .p-blog-card {
        padding: 15px;
    }

    .p-blog-card__label {
        font-size: 14px;
        padding: 3px 14px;
        margin-top: -28px;
        margin-bottom: 8px;
    }

    .p-blog-card__inner {
        gap: 15px;
    }

    .p-blog-card__content {
        gap: 0;
    }

    .p-blog-card__thumb {
        width: 25%;
    }

    .p-blog-card__body {
        margin-left: calc(25% + 15px);
    }

    .p-blog-card__date {
        font-size: 12px;
    }

    .p-blog-card__title {
        font-size: 14px;
        height: calc(14px * 1.6 * 2);
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .p-blog-card__more {
        font-size: 16px;
        padding: 5px 16px;
    }

    .p-blog-card__more-icon::before,
    .p-blog-card__more-icon::after {
        width: 7px;
        height: 7px;
        border-top-width: 2px;
        border-right-width: 2px;
        transform: rotate(45deg);
    }

    .p-blog-card__more-icon::after {
        margin-left: -3px;
    }
}

@media (max-width: 540px) {
    .p-blog-card__label {
        font-size: 14px;
        padding: 3px 12px;
    }

    .p-blog-card__inner {
        gap: 16px;
    }

    .p-blog-card__thumb {
        width: 42%;
    }

    .p-blog-card__body {
        margin-left: calc(42% + 16px);
    }

    .p-blog-card__title {
        height: calc(14px * 1.6 * 2);
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .p-blog-card__more {
        font-size: 14px;
        padding: 3px 12px;
        line-height: 1.4;
    }

    .p-blog-card__more-icon::before,
    .p-blog-card__more-icon::after {
        width: 6px;
        height: 6px;
        border-top-width: 2px;
        border-right-width: 2px;
        transform: rotate(45deg);
    }

    .p-blog-card__more-icon::after {
        margin-left: -2px;
    }
}

/* エディタ用スタイル */
.block-editor-block-list__block .p-blog-card {
    pointer-events: none;
}

.block-editor-block-list__block .p-blog-card__label {
    pointer-events: none;
}
