
.ce-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-bottom: 40px;
}
.ce-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    scroll-behavior: smooth;
}
.ce-slide {
    flex: 0 0 auto;
    scroll-snap-align: center;
    min-width: 300px;
    max-width: 100%;
}
.ce-card {
    border: 1px solid #e8c8ac;
    border-radius: 10px;
    padding: 15px;
    background-color: #fffaf5;
    font-family: sans-serif;
    min-height: 300px;
}
.ce-cap {
    margin-top: -10px;
    font-weight: 600;
}
.ce-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}
.ce-grid h4 {
    margin: 0 0 5px;
    color: #d97706;
}
.ce-nav-container {
    position: absolute;
    bottom: 5px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.ce-nav-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}
