/**
 * Swiper Block - Front-end styles
 */

/* コンテナスタイル */
.swiper-block-container {
    margin: 0 auto;
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

/* スライダースタイル */
.swiper-block-container .swiper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0 50px;
}

.swiper-block-container .swiper-slide {
    box-sizing: border-box;
}

/* 投稿スタイル */
.swiper-post {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.swiper-post-image {
    position: relative;
    padding-top: 56.25%; /* 16:9 アスペクト比 */
    overflow: hidden;
    background-color: #dddddd;
}

.swiper-post-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.swiper-post:hover .swiper-post-image img {
    transform: scale(1.05);
}

/* プレースホルダー画像のスタイル */
.swiper-post-image img[src$=".svg"] {
    object-fit: contain;
}

.swiper-post-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.swiper-title {
    margin-top: 0;
    margin-bottom: 10px;
    line-height: 1.4;
    padding: 0px;
    /* フォントサイズとカラーはインラインスタイルで上書きされます */
}

.swiper-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.swiper-excerpt p {
    margin-top: 0;
}

.swiper-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.swiper-title a {
    text-decoration: none;
    transition: color 0.3s ease;
    /* カラーはインラインスタイルで上書きされます */
}

.swiper-title a:hover {
    opacity: 0.8;
}

/* Swiper custom styles */
.swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    /* カラーはインラインスタイルで上書きされます */
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: transparent;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 16px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    /* カラーはインラインスタイルで上書きされます */
}

/* コンテンツなしスタイル */
.swiper-post-image-only {
    height: 100%;
}

/* Responsive styles */
@media (max-width: 768px) {
    .swiper-title {
        font-size: 16px;
    }
    
    .swiper-excerpt {
        font-size: 13px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 20px;
        height: 20px;
    }
    
    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px;
    }
}
