/* Meet Designers Section */
.meet-designers-section {
    width: 100%;
    color: rgb(var(--color-text));
    background: rgb(var(--color-background));
}

meet-designers {
    display: block;
    overflow: hidden;
}

.meet-designers-title {
    text-align: center;
    margin: 0 0 40px 0;
    color: currentColor;
}

.meet-designers-layout {
    display: flex;
    gap: 24px;
    align-items: stretch;
}

/* Featured Media */
.meet-designers-featured {
    flex: 0 0 25%;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 480px;
}

.featured-media-item {
    width: 100%;
    height: 100%;
    position: relative;
}

.featured-media-item .featured-overlay {
    display: none;
}

.featured-media-item img,
.featured-media-item video,
.featured-media-item iframe,
.featured-media-item .theme-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(var(--color-text), 0.5);
    color: rgb(var(--color-background));
    padding: 8px 16px;
    border-radius: 20px;
    font-family: var(--body-font);
    font-size: var(--type-auxiliary-size);
}

/* Carousel */
.meet-designers-carousel {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 73%;
}

.designers-swiper {
    overflow: hidden;
    width: 100%;
}

.designers-swiper .swiper-wrapper {
    align-items: stretch;
}

.designers-swiper .swiper-slide {
    max-height: 605px;
    max-width: 330px;
}

/* Designer Card */
.designer-card {
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    color: rgb(var(--color-text));
    background: rgb(var(--color-background));
}

.designer-photo {
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
}

.designer-photo img,
.designer-photo svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.designer-tag {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(var(--color-text), 0.5);
    color: rgb(var(--color-background));
    padding: 4px 10px;
    border-radius: 12px;
    font-family: var(--body-font);
    font-size: var(--type-badge-size);
}

.designer-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.designer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.designer-identity {
    display: grid;
    flex: 1;
    gap: 4px;
    min-width: 0;
}

.designer-code {
    color: rgba(var(--color-text), 0.72);
}

.designer-product-img {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-shrink: 0;
}

.designer-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.designer-name {
    margin: 0;
    color: rgb(var(--color-text));
}

.designer-desc {
    color: rgba(var(--color-text), 0.75);
    margin: 0;
    flex: 1;
}

/* Nav */
.designers-nav {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}

.designers-prev,
.designers-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: absolute;
    top: 40%;
    z-index: 10;
}

.designers-prev:hover,
.designers-next:hover {
    transform: scale(1.01);
}

.designers-prev {
    left: 20px;
}

.designers-next {
    right: 20px;
}

/* Mobile */
@media (max-width: 768px) {
    .meet-designers-title {
        margin-bottom: 24px;
    }
    .meet-designers-layout {
        flex-direction: column;
        gap: 20px;
    }
    .meet-designers-carousel {
        width: 100%;
    }
    .meet-designers-featured {
        flex: none;
        width: 100%;
        min-height: auto;
        aspect-ratio: 1 / 1;
    }

    .designer-info {
        padding: 10px;
    }

    .designer-meta {
        gap: 8px;
    }

    .designer-identity {
        gap: 2px;
    }

    .designers-nav {
        justify-content: flex-end;
        margin-top: 16px;
    }

    .designer-desc {
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
    .meet-designers-featured {
        flex: 0 0 35%;
        min-height: 400px;
    }

    .designer-info {
        padding: 12px;
    }

}

