.rheuma-programm {
	--rp-blue: var( --e-global-color-primary );
	--rp-orange: var( --e-global-color-accent );
	box-sizing: border-box;
	color: var( --e-global-color-primary );
	font-family: inherit;
	max-width: 100%;
}

.rheuma-programm *,
.rheuma-programm *::before,
.rheuma-programm *::after {
	box-sizing: border-box;
}

.rheuma-programm__header {
	align-items: flex-start;
	display: flex;
	gap: 16px;
	justify-content: space-between;
	margin-bottom: 7px;
}

.rheuma-programm__headline {
	    color: var(--rp-blue);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1;
    margin: 0 0px 15px 0;
    text-transform: uppercase;
}

.rheuma-programm__url {
	color: var(--rp-blue);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.2;
	text-decoration: none;
	white-space: nowrap;
}

.rheuma-programm__url:hover,
.rheuma-programm__url:focus {
	color: var(--rp-orange);
}

.rheuma-programm__box {
	border: 1.5px solid var(--rp-orange);
	border-radius: 5px;
	margin: 0 0 14px;
	padding: 14px 12px;
}

.rheuma-programm__row {
	align-items: start;
	column-gap: 18px;
	display: grid;
	grid-template-columns: 46px minmax(220px, 1.33fr) minmax(230px, 1fr);
	padding-bottom: 13px;
}

.rheuma-programm__box .rheuma-programm__row:last-child,
.rheuma-programm > .rheuma-programm__row:last-child {
	padding-bottom: 0;
}

.rheuma-programm__row--break {
	margin: 8px 0 12px;
	padding: 0;
}

.rheuma-programm__time {
	color: var(--rp-blue);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.05;
	padding-top: 5px;
	

}

.rheuma-programm__time span {
	display: block;
}

.rheuma-programm__topic {
	color: var(--rp-orange);
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.025em;
	line-height: 1.28;
	overflow-wrap: anywhere;
}

.rheuma-programm__topic--break {
	color: var(--rp-blue);
	font-weight: 500;
	grid-column: 2 / -1;
}

.rheuma-programm__speaker {
	color: var(--rp-blue);
	font-size: 14px;
	line-height: 1.2;
	min-width: 0;
}

.rheuma-programm__speaker-name {
	font-weight: 700;
}

.rheuma-programm__speaker-info {
	font-weight: 400;
}

.rheuma-programm__speaker-name + .rheuma-programm__speaker-info {
	margin-top: 2px;
}

@media (max-width: 767px) {
	.rheuma-programm__header {
		align-items: flex-start;
		flex-direction: column;
		gap: 4px;
	}

	.rheuma-programm__url {
		white-space: normal;
	}

	.rheuma-programm__row {
		grid-template-columns: 58px minmax(0, 1fr);
		row-gap: 4px;
	}

	.rheuma-programm__speaker {
		grid-column: 2 / -1;
	}

	.rheuma-programm__topic--break {
		grid-column: 2 / -1;
	}
}

@media (max-width: 480px) {
	.rheuma-programm__box {
		border-radius: 5px;
		padding: 12px 10px;
	}

	.rheuma-programm__row {
		grid-template-columns: 1fr;
	}

	.rheuma-programm__speaker,
	.rheuma-programm__topic--break {
		grid-column: auto;
	}
}
