@charset "UTF-8";

@media all {
	.webinar-entry {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: space-between;
		flex-direction: column;
		text-align: center;
	}

	.webinar-entry:not(:last-of-type) {
		border-bottom: 1px solid #00000020;
		padding-bottom: 1rem;
	}
}

@media (min-width: 576px) {
	.webinar-entry {
		flex-direction: row;
		text-align: left;
	}
}