/* ============================================================
   WERBEAUF CPT ACCORDION STYLES
   Responsive Accordion for Leistungen by Category
   ============================================================ */

/* ============================================================
   CONTAINER
   ============================================================ */

.werbeauf-cpt-accordion {
    width: 100%;
}

.werbeauf-cpt-accordion__empty {
    text-align: center;
    color: #666;
    padding: 40px 20px;
}

/* ============================================================
   ACCORDION ITEM
   ============================================================ */

.werbeauf-cpt-accordion__item {
    margin-bottom: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
}

.werbeauf-cpt-accordion__item:last-child {
    margin-bottom: 0;
}

/* ============================================================
   ACCORDION HEADER (Button)
   ============================================================ */

.werbeauf-cpt-accordion__header {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: #f8f8f8;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.werbeauf-cpt-accordion__header:hover {
    background: #f0f0f0;
}

.werbeauf-cpt-accordion__item.is-open .werbeauf-cpt-accordion__header {
    background: #f0f0f0;
}

.werbeauf-cpt-accordion__title {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    margin: 0;
}

.werbeauf-cpt-accordion__count {
    font-size: 14px;
    font-weight: 400;
    color: #888888;
    margin-right: 16px;
}

.werbeauf-cpt-accordion__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #666666;
    transition: transform 0.3s ease;
}

.werbeauf-cpt-accordion__item.is-open .werbeauf-cpt-accordion__icon {
    transform: rotate(180deg);
}

.werbeauf-cpt-accordion__icon svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   ACCORDION CONTENT
   ============================================================ */

.werbeauf-cpt-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.werbeauf-cpt-accordion__item.is-open .werbeauf-cpt-accordion__content {
    max-height: 2000px; /* Large enough for content */
    transition: max-height 0.5s ease-in;
}

.werbeauf-cpt-accordion__content-inner {
    padding: 0 24px 24px;
}

/* ============================================================
   LEISTUNG ITEM
   ============================================================ */

.werbeauf-cpt-accordion__leistung {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.werbeauf-cpt-accordion__leistung.has-thumbnail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.werbeauf-cpt-accordion__leistung:first-child {
    padding-top: 24px;
}

.werbeauf-cpt-accordion__leistung:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Leistung Image */
.werbeauf-cpt-accordion__leistung-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.werbeauf-cpt-accordion__leistung-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.werbeauf-cpt-accordion__leistung-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.werbeauf-cpt-accordion__leistung-image:hover img {
    transform: scale(1.05);
}

/* Leistung Content */
.werbeauf-cpt-accordion__leistung-content {
    flex: 1;
    min-width: 0;
}

/* Leistung Header (Title + Labels) */
.werbeauf-cpt-accordion__leistung-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.werbeauf-cpt-accordion__leistung-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333333;
}

.werbeauf-cpt-accordion__leistung-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.werbeauf-cpt-accordion__leistung-title a:hover {
    color: #000000;
}

/* Gender Labels */
.werbeauf-cpt-accordion__labels {
    display: flex;
    gap: 6px;
}

.werbeauf-cpt-accordion__label {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
}

.werbeauf-cpt-accordion__label--maenner {
    background: #e8f4fc;
    color: #2980b9;
}

.werbeauf-cpt-accordion__label--frauen {
    background: #fce8f1;
    color: #c0392b;
}

/* Leistung Excerpt */
.werbeauf-cpt-accordion__leistung-excerpt {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

/* Leistung Button */
.werbeauf-cpt-accordion__leistung-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #333333;
    text-decoration: none;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.werbeauf-cpt-accordion__leistung-btn:hover {
    background: #333333;
    color: #ffffff;
}

.werbeauf-cpt-accordion__leistung-btn svg {
    transition: transform 0.2s ease;
}

.werbeauf-cpt-accordion__leistung-btn:hover svg {
    transform: translateX(3px);
}

/* ============================================================
   RESPONSIVE: Tablet (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {
    .werbeauf-cpt-accordion__header {
        padding: 16px 20px;
    }
    
    .werbeauf-cpt-accordion__title {
        font-size: 15px;
    }
    
    .werbeauf-cpt-accordion__count {
        font-size: 13px;
        margin-right: 12px;
    }
    
    .werbeauf-cpt-accordion__content-inner {
        padding: 0 20px 20px;
    }
    
    .werbeauf-cpt-accordion__leistung {
        padding: 16px 0;
    }
    
    .werbeauf-cpt-accordion__leistung.has-thumbnail {
        gap: 16px;
    }
    
    .werbeauf-cpt-accordion__leistung:first-child {
        padding-top: 20px;
    }
    
    .werbeauf-cpt-accordion__leistung-image {
        width: 100px;
        height: 100px;
    }
    
    .werbeauf-cpt-accordion__leistung-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .werbeauf-cpt-accordion__leistung-title {
        font-size: 14px;
    }
    
    .werbeauf-cpt-accordion__leistung-excerpt {
        font-size: 13px;
    }
}

/* ============================================================
   RESPONSIVE: Mobile (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
    .werbeauf-cpt-accordion__item {
        margin-bottom: 10px;
        border-radius: 8px;
    }
    
    .werbeauf-cpt-accordion__header {
        padding: 14px 16px;
    }
    
    .werbeauf-cpt-accordion__title {
        font-size: 14px;
    }
    
    .werbeauf-cpt-accordion__count {
        font-size: 12px;
        margin-right: 10px;
    }
    
    .werbeauf-cpt-accordion__icon {
        width: 20px;
        height: 20px;
    }
    
    .werbeauf-cpt-accordion__icon svg {
        width: 16px;
        height: 16px;
    }
    
    .werbeauf-cpt-accordion__content-inner {
        padding: 0 16px 16px;
    }
    
    .werbeauf-cpt-accordion__leistung {
        padding: 14px 0;
    }
    
    .werbeauf-cpt-accordion__leistung.has-thumbnail {
        flex-direction: column;
        gap: 12px;
    }
    
    .werbeauf-cpt-accordion__leistung-image {
        width: 100%;
        height: 160px;
        border-radius: 6px;
    }
    
    .werbeauf-cpt-accordion__leistung:first-child {
        padding-top: 16px;
    }
    
    .werbeauf-cpt-accordion__leistung-title {
        font-size: 13px;
    }
    
    .werbeauf-cpt-accordion__label {
        padding: 2px 8px;
        font-size: 10px;
    }
    
    .werbeauf-cpt-accordion__leistung-excerpt {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .werbeauf-cpt-accordion__leistung-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}
