.otd-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

.otd-carousel {
    overflow: hidden;
    width: 100%;
}

.otd-post-list {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.otd-post-list li {
    flex: 0 0 250px;
    margin: 0;
}

.otd-thumbnail {
    margin-bottom: 10px;
}

.otd-thumbnail img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
}

.otd-post-content {
    text-align: center;
}

.otd-nav-button {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.otd-nav-button:hover {
    background: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.otd-nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.otd-block {
    max-width: 800px;
}

.otd-block.alignwide {
    max-width: var(--wp--style--global--wide-size, 1200px);
}

.otd-block.alignfull {
    max-width: 100%;
}

.otd-block.aligncenter {
    text-align: center;
}

.wp-block-align-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
} 