/**
 * Title and Button Panel Styles
 *
 * Simple CTA panel with heading and button
 *
 * Dependencies: ssa-base
 * Extracted from: styles.css lines 132-158, responsive rules from 480px
 */

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

.title-and-button-panel .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 75px 80px 10px;
}

/* Sub-heading now uses .sub-heading from 01-base.css */

.title-and-button-panel .content h3 {
	color: var(--black);
	margin-right: 35px;
}

.title-and-button-panel .content .button-text {
	min-width: 230px;
	text-align: center;
}

.title-and-button-panel .content .button {
	background-color: var(--brand-main);
	color: var(--white);
	display: inline-block;
	line-height: 48px;
	margin: 0 0 10px;
}

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

@media (max-width: 480px) {
	.title-and-button-panel .content .button-text {
		min-width: auto;
	}

	.title-and-button-panel .content {
		text-align: center;
		flex-direction: column;
		padding: var(--space-8) var(--space-8) var(--space-2) var(--space-8);
	}

	.title-and-button-panel .content h3 {
		width: 312px;
		margin-right: var(--space-0);
	}
}
