.ec-ba565c44-wrapper {
    --primary-color: #5C8BE1;
    --bg-color: #f2f6fc;
    border: 2px solid var(--primary-color);
    background: #fff;
    display: flex;
    flex-direction: column;
    font-family: inherit;
    border-radius: 4px;
}

.ec-ba565c44-header {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    position: relative;
    user-select: none;
}

.ec-ba565c44-number {
    font-size: 32px;
    font-weight: 700;
    margin-right: 15px;
    line-height: 1;
    color: var(--primary-color);
}

.ec-ba565c44-text-wrap {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1.ec-ba565c44-title {
    font-family: 'Amnesty Trade Gothic', sans-serif;
    font-size: 12pt;
    font-weight: 700;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 2px 0;
    padding: 0;
    line-height: 1.2;
}

.ec-ba565c44-subtitle {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-color);
}

.ec-ba565c44-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #ccc;
}
.ec-ba565c44-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}

.ec-ba565c44-header.is-expanded .ec-ba565c44-icon {
    transform: rotate(180deg);
}

.ec-ba565c44-content {
    border-top: 1px solid #f0f0f0;
}

.ec-ba565c44-content-inner {
    padding: 0 20px 20px 20px;
}

/* STATS */
.ec-ba565c44-stats-grid {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.ec-ba565c44-stat-box {
    flex: 1;
    min-width: 120px;
    background-color: var(--bg-color);
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* Single child takes full width automatically via flex: 1, but we enforce it if it's the only child */
.ec-ba565c44-stat-box:only-child {
    flex: 1 1 100%;
}

.ec-ba565c44-stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1.1;
}

.ec-ba565c44-stat-text {
    font-size: 0.85rem;
    color: #333;
    line-height: 1.4;
}

/* SECTION HEADINGS */
.ec-ba565c44-section-block {
    margin-bottom: 20px;
}
.ec-ba565c44-section-block:last-child {
    margin-bottom: 0;
}

.ec-ba565c44-section-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #888;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}

/* CONSENT LAW */
.ec-ba565c44-consent-law-content {
    background-color: #FFF0F0;
    padding: 15px;
    border-left: 3px solid var(--primary-color);
    border-radius: 0 4px 4px 0;
}

.ec-ba565c44-consent-law-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.ec-ba565c44-consent-law-content p:last-child {
    margin-bottom: 0;
}

.ec-ba565c44-consent-law-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* TAGS */
.ec-ba565c44-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ec-ba565c44-tag {
    background: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.85rem;
    color: #333;
}

/* LIST CONTENT */
.ec-ba565c44-content-list {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #444;
}

.ec-ba565c44-content-list ul {
    margin: 0;
    padding-left: 20px;
}

.ec-ba565c44-content-list li {
    margin-bottom: 10px;
    position: relative;
    list-style-type: none;
}

.ec-ba565c44-content-list li::before {
    content: "•";
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: -15px;
    top: -5px;
}

.ec-ba565c44-content-list li:last-child {
    margin-bottom: 0;
}