/* ============================================================
   DSW Service Section — style.css
   ============================================================ */

.dsw-wrap {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 60px 0;
    border-bottom: 1px solid var(--borderColor, #E3E3E8);
}
.dsw-wrap:last-child {
    border-bottom: none;
}

/* Image à droite (défaut) */
.dsw-img-right {
    flex-direction: row;
}

/* Image à gauche */
.dsw-img-left {
    flex-direction: row-reverse;
}

/* Content — toujours aligné à gauche */
.dsw-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}
.dsw-label {
    display: inline-block;
    background: var(--primaryColor, #FED403);
    color: var(--primaryForegroundColor, #1C1C1D);
    font-family: var(--bodyFont, 'Golos Text', sans-serif);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 2px;
    margin-bottom: 16px;
    display: block;
}
.dsw-title {
    margin-bottom: 12px !important;
    text-align: left !important;
}
.dsw-divider {
    width: 40px;
    height: 3px;
    background: var(--primaryColor, #FED403);
    border-radius: 2px;
    margin-bottom: 18px;
}
.dsw-desc {
    text-align: left !important;
    margin-bottom: 18px;
}

/* Liste */
.dsw-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    text-align: left;
}
.dsw-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 6px;
    font-family: var(--bodyFont, 'Golos Text', sans-serif);
    font-size: 15px;
    color: var(--bodyColor, #59585D);
    line-height: 1.6;
    text-align: left;
}
.dsw-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primaryColor, #FED403);
}

/* Image */
.dsw-image {
    flex: 1;
    min-width: 0;
}
.dsw-image img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.dsw-placeholder {
    width: 100%;
    height: 340px;
    background: var(--shadeColor, #F6F6F6);
    border: 2px dashed var(--borderColor, #E3E3E8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 1024px) {
    .dsw-wrap,
    .dsw-img-left,
    .dsw-img-right {
        flex-direction: column !important;
        gap: 30px;
        padding: 40px 0;
    }
    .dsw-content,
    .dsw-image {
        width: 100%;
        flex: unset;
    }
    .dsw-image img,
    .dsw-placeholder {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .dsw-image img,
    .dsw-placeholder {
        height: 220px;
    }
}
