.dps-26-wrapper {
    width: 100%;
}

.dps-26-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.dps-26-header-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #3b82f6; /* Default theme color, override via controls */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dps-26-navigation {
    display: flex;
    gap: 10px;
}

.dps-26-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7dd3fc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dps-26-nav-btn:hover {
    background-color: #38bdf8;
}

.dps-26-slider {
    overflow: hidden;
}

.dps-26-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dps-26-card-image {
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-size: cover;
    background-position: center;
    position: relative;
}

.dps-26-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: #fff;
    color: #3b82f6;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.dps-26-card-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dps-26-card-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    color: #333;
}

.dps-26-card-details {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.dps-26-card-link {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
    font-weight: 500;
    margin-top: auto;
    display: inline-block;
}

.dps-26-card-link:hover {
    color: #333;
}

/* Swiper navigation states */
.swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
