
/* Labor-Accordion */
.labor-accordion-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 20px;
    padding: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.accordion-preview {
    position: relative;
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.read-more-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(
        to bottom, 
        transparent 0%, 
        rgba(15, 20, 25, 0.7) 50%,
        #0E1216 100%
    );
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 10px;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.labor-accordion-item.expanded .accordion-preview {
    max-height: 2000px;
}

.labor-accordion-item.expanded .read-more-overlay {
    opacity: 0;
    pointer-events: none;
}

.content-inner code {
    background-color: rgba(30, 31, 34, 0.8);
    color: var(--accent-gold);
    font-family: 'Consolas', 'Monaco', 'Andale Mono', 'Ubuntu Mono', monospace;
    font-size: 0.9em;
    padding: 2px 4px;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-color: rgba(197, 160, 89, 0.3);
    white-space: pre-wrap;
}
