.index__container {
	display: grid;
	grid-template-columns: 1.1fr 0.9fr;
	align-items: center;
	gap: 32px;
}

.index__content {
	min-width: 0;
}

.index__subtitle {
	margin: 0 0 1rem;
}

.index__actions {
	margin: 1.25rem 0 0.75rem;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	align-items: flex-start;
}

/* Media column */
.index__media {
	text-align: center;
}

.index__media svg,
.index__media img {
	width: min(520px, 100%);
	height: auto;
	display: inline-block;
}

/* Table (OID4VP) */

.oid4vp-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.oid4vp-table td {
	padding: 0.5rem 0.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	vertical-align: top;
}

.oid4vp-table td:first-child {
	font-weight: 700;
	width: 45%;
	color: #111;
}

.oid4vp-table td:last-child {
	color: #333;
}

.oid4vp-table td {
	border: 1px solid rgba(0, 0, 0, 0.06);
}

.oid4vp-table td:last-child {
	border-right: 0;
}

/* SVG theming */

.img-home .main-color {
	fill: var(--primary-main-color);
}

.img-home .light-color {
	fill: var(--primary-light-color);
}

.img-home .lighter-color {
	fill: var(--primary-lighter-color);
}

.img-home .dark-color {
	fill: var(--primary-dark-color);
}

.img-home .darker-color {
	fill: var(--primary-darker-color);
}

/* Mobile behavior */

@media (max-width: 768px) {
	.index__container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.index__actions {
		align-items: stretch;
	}

	.index__media {
		display: none;
	}
}
