@media (max-width: 768px) {
	.org-chart--desktop {
		display: none !important;
	}

	.org-chart--mobile {
		display: block;
		padding: 0;
		text-align: right;
	}

	.accordion-item {
		margin-bottom: 0;
		border: none;
		border-bottom: 1px solid #e5e7eb;
		border-radius: 0;
	}

	.accordion-item--depth-0 > .accordion-header {
		background: #f9fafb;
		padding: 16px 12px;
		border-bottom: 2px solid #3b82f6;
	}

	.accordion-item--depth-1 > .accordion-header {
		background: white;
		padding-inline-start: 30px;
	}

	.accordion-item--depth-2 > .accordion-header {
		background: white;
		padding-inline-start: 60px;
	}

	.accordion-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		padding: 12px;
		cursor: pointer;
		border: none;
		width: 100%;
		text-align: start;
		background: white;
		font-size: 14px;
		font-weight: 500;
		color: #333;
		transition: background 0.2s ease;
	}

	.accordion-header:hover,
	.accordion-header:focus {
		background: #f9fafb;
	}

	.accordion-header__content {
		display: flex;
		align-items: center;
		gap: 10px;
		flex: 1;
	}

	.accordion-header__text {
		text-align: start;
		flex: 1;
	}

	.accordion-header__title {
		margin: 0;
		font-size: 14px;
		font-weight: 700;
		color: #333;
	}

	.accordion-header__person {
		margin: 4px 0 0;
		font-size: 12px;
		color: #666;
	}

	.accordion-toggle {
		flex-shrink: 0;
		font-size: 12px;
		color: #999;
		transition: transform 0.2s ease;
	}

	details[open] > .accordion-header .accordion-toggle {
		transform: rotate(180deg);
	}

	.accordion-body {
		padding: 12px 16px;
		background: white;
		border-top: 1px solid #e5e7eb;
		font-size: 13px;
		line-height: 1.6;
		text-align: start;
	}

	.accordion-children {
		margin-top: 8px;
	}

	.accordion-detail {
		margin: 8px 0;
		font-size: 13px;
		color: #555;
	}

	.accordion-detail a {
		color: #2563eb;
		text-decoration: none;
		word-break: break-word;
	}

	/* Avatar in accordion header */
	.accordion-header .card__image {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		margin: 0;
		flex-shrink: 0;
	}
}
