.ja-1112-container {
    font-family: 'Roboto', sans-serif;
    background: #fff;
    width: 100%;
}

.ja-1112-item {
    border: 1px solid #E5E7EB;
    margin-bottom: 20px;
    background: #FAFBFC;
    width: 100%;
}

.ja-1112-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .ja-1112-header {
        padding: 15px;
    }
}

.ja-1112-header:hover {
    background: #f9f9f9;
}

.ja-1112-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.ja-1112-title {
    margin: 0;
    font-size: 24px;
    font-family: 'Roboto Slab', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.ja-1112-badge {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 2px;
    letter-spacing: 1px;
}

.ja-1112-sub-details {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.ja-1112-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.ja-1112-item.active .ja-1112-icon {
    transform: rotate(180deg);
}

.ja-1112-content {
    display: none;
    border-top: 1px solid #E5E7EB;
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .ja-1112-content {
        padding: 15px;
    }
}

.ja-1112-placeholder {
	color: #777;
	font-style: italic;
	margin: 0;
}