.listing-accordion-item {
    border: 1px solid #ddd;
    overflow: hidden;
}

.listing-accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    gap: 12px;
    align-items: center;
    transition: background 0.3s ease;
}

.listing-accordion-header:hover {
    background: #efefef;
}

.listing-accordion-header.active {
    background: #e8e8e8;
}

.accordion-toggle {
    color: #666;
    transition: transform 0.3s ease;
}

.accordion-toggle::before {
    content: '+';
    display: block;
    width: 13px;
    font-weight: 600;
}

.listing-accordion-header.active .accordion-toggle::before {
    content: '-';
}

.listing-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
}

.listing-accordion-content.active {
    max-height: 1000px; /* Larger since all listings are within one accordion */
}

.listing-content-inner {
    padding: 20px;
}

.listing-item {
    margin-bottom: 12px;
    line-height: 1.6;
}

.listing-item:last-child {
    margin-bottom: 0;
}

.listing-company-name {
    font-weight: 600;
    color: #333;
}

.listing-url {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    margin: 0 6px;
}

.listing-url:hover {
    color: #764ba2;
    text-decoration: underline;
}

.listing-description {
    color: #666;
}

.listing-section-title {
    font-weight: 600;
}
