.embla {
    position: relative;
    max-width: 100%;
    margin: auto;
    height: 60vh;
}
.embla__viewport {
    overflow: hidden;
    height: 100%;
}
.embla__container {
    display: flex;
    height: 100%;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.embla__slide {
    position: relative;
    min-width: 100%;
    height: 100%;
}

.embla__slide__img {
    display: block;
    width: auto;
    float: right;
    height: 100%;
    object-fit: cover;
}
.embla__controls {
    position: relative;
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
}
.embla__buttons {
    display: flex;
    gap: 0.5rem;
}
.embla__button {
    /* background: #fff; */
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    padding: 8px;
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); */
}
.embla__button:hover {
    background: #f5f5f5;
}
.embla__button__svg {
    width: 100%;
    height: 100%;
}
.embla__counter {
    font-size: 0.9rem;
    color: #666;
} 