.one-mkf-post-thumbnail {
  width: 60%;
  height: auto;
  display: block;
  margin: 0 auto 1.5em;
}

.one-mkf-video-post-card {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Hiragino Sans', 'Noto Sans CJK JP', 'Yu Gothic', Meiryo, sans-serif;
    background-color: #ffffff !important;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px !important;
    overflow: hidden;
    transition: box-shadow .3s ease;
    display: flex;
    flex-direction: column;
}
.one-mkf-video-post-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, .15);
}
.one-mkf-card-header {
    display: flex;
    align-items: center;
}
.one-mkf-thumbnail-wrapper {
    flex: 3 1 0%;
    aspect-ratio: 4 / 3;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
}
.one-mkf-video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}
.one-mkf-title-wrapper {
    flex: 7 1 0%;
    padding: 20px;
    min-width: 0;
}
.one-mkf-video-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a !important;
    line-height: 1.4;
    margin: 0;
}
.one-mkf-video-body {
    padding: 15px 25px 25px 25px;
    border-top: 1px solid #f0f0f0;
    color: #333333 !important;
}
.one-mkf-actor-name {
    font-size: 16px;
    color: #555 !important;
    margin-bottom: 20px;
    font-weight: 500;
}

.one-mkf-actor-name::before {
    content: '出演: ';
    font-weight: normal;
    color: #888 !important;
}

.one-mkf-video-description {
    font-size: 15px;
    color: #333333 !important;
    line-height: 1.7;
    background-color: #ffffff !important;
}

.one-mkf-video-description p {
  color: #333333 !important;
}

.one-mkf-watch-button {
    display: block;
    background: linear-gradient(45deg, #FF6B6B, #FF8E53) !important;
    color: #ffffff !important;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .3s ease;
    box-sizing: border-box;
    width: fit-content;
    margin: 25px auto 0;
}
.one-mkf-watch-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 107, 107, .5);
}

@media (max-width: 480px) {
    .one-mkf-video-title {
        font-size: 18px;
    }
    .one-mkf-thumbnail-wrapper,
    .one-mkf-title-wrapper {
        padding: 10px;
    }
    .one-mkf-video-body {
        padding: 15px;
    }
    .one-mkf-watch-button {
        width: 100%;
    }
}