/**
 * 2 Column Rich Text Panel Styles
 *
 * Two-column layout for rich text content with blockquotes
 *
 * Dependencies: ssa-base
 * Extracted from: styles.css lines 359-388, responsive rules from 768px, 480px
 */

/* ==========================================================================
   Base Styles
   ========================================================================== */

.two-column-rich-text-panel .content {
	display: flex;
	gap: 6%;
	padding-top: 74px;
	padding-bottom: 74px;
}

.two-column-rich-text-panel .column {
	width: 47%;
}

.two-column-rich-text-panel .column h3 {
	margin-bottom: var(--space-7);
}

.two-column-rich-text-panel .column img.size-full {
	width: 100%;
}

.two-column-rich-text-panel blockquote {
	background-color: var(--cream);
	color: var(--brand-main);

	/* font-family handled by utility class */
	font-size: 22px;
	font-weight: 700;
	line-height: 32px;
	margin-bottom: 33px;
	padding: 25px;
}

/* ==========================================================================
   Responsive: Tablet (768px and below)
   ========================================================================== */

@media (max-width: 768px) {
	.two-column-rich-text-panel .content {
		display: inline-block;
	}

	.two-column-rich-text-panel .content .column {
		width: 100%;
	}

	.two-column-rich-text-panel .content .column:first-of-type {
		margin-bottom: var(--space-9);
	}
}

/* ==========================================================================
   Responsive: Mobile (480px and below)
   ========================================================================== */

@media (max-width: 480px) {
	.two-column-rich-text-panel .content {
		padding-top: var(--space-6);
		padding-bottom: var(--space-6);
	}
}
