.my-slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 0px;
    position: relative;
}

.my-slider-container .swiper-wrapper {
    margin-bottom: 35px;
}

.my-slider-container .swiper-slide {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 10px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow: hidden;
}

.my-post-content { width: 100%; }
.my-post-image { margin-bottom: 15px; }
.my-post-image img { width: 100%; height: auto; border-radius: 4px; }


.my-post-title {
    margin: 0 0 10px;
    font-size: 1.2em;
    line-height: 1.4;
    color: #333;

    hyphens: none !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    
}




@supports (-webkit-touch-callout: none) {
  .my-post-title {
    -webkit-hyphens: none !important;
    hyphens: none !important;
    white-space: normal !important;
    word-break: break-word !important;   
    overflow-wrap: anywhere !important;  
  }
}


.my-post-title a { color: #333; text-decoration: none; }

.my-post-meta { display: flex; gap: 10px; margin: 10px 0; font-size: 0.8em; color: #666; }
.my-post-date, .my-post-author { color: #999; }
.my-post-excerpt { color: #666; font-size: 0.9em; line-height: 1.4; }

.my-slider-container .swiper-button-next,
.my-slider-container .swiper-button-prev {
    background: rgba(255, 200, 120, 0.2);
    color: #FF9900;
    width: 30px;
    height: 30px;
    bottom: 0px;
    top: auto;
}
.my-slider-container .swiper-button-next::after,
.my-slider-container .swiper-button-prev::after { font-size: 10px; }

.my-slider-container .swiper-button-next:hover,
.my-slider-container .swiper-button-prev:hover {
    background: rgba(255, 200, 120, 0.5);
    color: #e67e00;
}

.my-slider-container .swiper-pagination { bottom: 0px; text-align: center; }
.my-slider-container .swiper-pagination-bullet { background: #ccc; opacity: 1; }
.my-slider-container .swiper-pagination-bullet-active { background: #FFB366; }

.my-slider-container .swiper-scrollbar {
    background: rgba(255, 165, 0, 0.1);
    height: 10px;
    border-radius: 30px;
    margin-top: 10px;
}

.my-slider-container .swiper-scrollbar-drag {
    height: 10px;
    background: rgba(255, 165, 0, 0.3);
    border-radius: 30px;
}

@media (max-width: 719px) {
    .my-slider-container { padding: 0 1px; }
    .my-slider-container .swiper-slide { padding: 2px; min-height: 10px; }
    .my-post-title { font-size: 1.1em; }
    .my-post-excerpt { font-size: 0.85em; display: none; }
    .my-post-meta { gap: 8px; font-size: 0.75em; }
}
