.dradc-swiper {
    width: 97%;    
    padding: 0;
    display: block;
    margin: 0 auto;
    min-height: 17rem;
}

.dradc-swiper__shell {
    width: 100%;
    display: block;
}

.dradc-swiper__header {
    width: 100%;
    display: grid;
    grid-template-columns: 80% 20%;
    align-items: center;
     
    min-height: 2.5rem;
    margin: 0 0 0.2rem 0;
    padding: 0;
}


.dradc-swiper__title {
    width: 100%;
    max-height: 2rem;
    border-radius: 0.3rem;
    text-align: right;
    padding-right: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
}

.dradc-swiper__link {
    width: 100%;
    max-height: 2rem;
    border-radius: 0.3rem;
    text-align: justify;
    font-weight: 700;
    margin-bottom: .15rem;
}

.dradc-swiper__link a {
    color: #069;
    font-weight: 700;
    font-size: 1.2rem;
}

.dradc-swiper__more {
    display: inline-block;
    width: 5.5rem;
    height: 1rem;
    border-radius: 0.3rem;
}

.dradc-swiper__instance {
    width: 100%;
    min-height: 13rem;
    border-radius: 0.5rem;
    overflow: hidden;
}

.dradc-swiper__header.swiper-skeleton,
.dradc-swiper__instance.swiper-skeleton {
    position: relative;
    background: linear-gradient(
        90deg,
        #e9e9e9 0%,
        #f5f5f5 50%,
        #e9e9e9 100%
    );
    background-size: 200% 100%;
    animation: dradc-swiper-skeleton-shimmer 1.4s linear infinite;
}

@keyframes dradc-swiper-skeleton-shimmer {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}
/*
.dradc-swiper__viewport {
    width: 100%;
}

.dradc-swiper__wrapper {
    align-items: stretch;
}

.dradc-swiper__slide {
    width: 9rem;
    box-sizing: border-box;
}
*/
.dradc-swiper__viewport {
    width: 100%;
    overflow: hidden;
}

.dradc-swiper__wrapper {
    display: flex;
    align-items: stretch;
}

.dradc-swiper__slide {
    width: 9rem;
    flex: 0 0 9rem;
    flex-shrink: 0;
    box-sizing: border-box;
}

.dradc-swiper__slide-skeleton {
    width: 100%;
    display: block;
}

.dradc-swiper__slide-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0.5rem;
    margin-bottom: 0.6rem;
}

.dradc-swiper__slide-image img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
}

.dradc-swiper__slide-text {
    
    width: 100%;
    height: 3.5rem;
    border-radius: 0.3rem;
    /*
    margin-bottom: 0.45rem;

    display: flex;
    align-items: center;
    gap: 0.35rem;
    line-height: 1.1;
    */
}

.dradc-swiper__slide-title {
    line-height: 1.15;
    white-space: normal;
    overflow: hidden;
}

.dradc-swiper__slide-price {
    font-weight: 700;
    margin-right: 0.25rem;
    font-size: 1.1rem;
}



.dradc-swiper__slide-text {
    width: 100%;
}


.dradc-swiper__slide-image.swiper-skeleton,
.dradc-swiper__slide-text.swiper-skeleton {
    position: relative;
    background: linear-gradient(
        90deg,
        #e9e9e9 0%,
        #f5f5f5 50%,
        #e9e9e9 100%
    );
    background-size: 200% 100%;
    animation: dradc-swiper-skeleton-shimmer 1.4s linear infinite;
}