/* Slider Container */
.dt-slider-container-7affeebd {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

/* Track for slides */
.dt-track-7affeebd {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding: 10px 0;
    width: 100%;
    scrollbar-width: none; /* Firefox */
}
.dt-track-7affeebd::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

/* Individual Slide */
.dt-slide-7affeebd {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    min-width: 250px;
}

@media (max-width: 1024px) {
    .dt-slide-7affeebd {
        flex: 0 0 calc(50% - 10px);
    }
}

@media (max-width: 767px) {
    .dt-slide-7affeebd {
        flex: 0 0 100%;
    }
}

/* Card Styling */
.dt-card-7affeebd {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease;
}

.dt-card-7affeebd:hover {
    transform: translateY(-5px);
}

.dt-image-7affeebd {
    width: 100%;
}

.dt-image-7affeebd img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dt-content-7affeebd {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dt-title-7affeebd {
    margin: 0 0 10px 0;
    font-size: 1.25rem;
    color: #333;
}

.dt-desc-7affeebd {
    margin: 0 0 20px 0;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.dt-btn-7affeebd {
    display: inline-block;
    background-color: #0073aa;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}

.dt-btn-7affeebd:hover {
    background-color: #005177;
    color: #ffffff;
}

/* Navigation Buttons */
.dt-nav-btn-7affeebd {
    background: #ffffff;
    border: 1px solid #ddd;
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    transition: background-color 0.2s, color 0.2s;
}

.dt-nav-btn-7affeebd:hover {
    background: #f0f0f0;
}

.dt-prev-7affeebd {
    left: -20px;
}

.dt-next-7affeebd {
    right: -20px;
}

@media (max-width: 767px) {
    .dt-prev-7affeebd {
        left: 0;
    }
    .dt-next-7affeebd {
        right: 0;
    }
}
