.tt-eg-2-col {
    width: 550px;
    font-family: var(--typography-font-family, "Plus Jakarta Sans");
	margin: auto;
}

.tt-eg-2-col__intro {
    text-align: center;
}

.tt-eg-2-col__title {
    color: var(--typography-invertible-neutral-on-theme-high--default, #1A252F);
    text-align: center;
    font-style: normal;
	font-weight: 600;
	font-size: 30px;
	line-height: 140%;
	letter-spacing: 0;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

.tt-eg-2-col__media {
	position: relative;
	flex: 0.9174 1 0;
	min-width: 0;
	height: 262.677px;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: 32px;
	box-sizing: border-box;
	isolation: isolate;
	background:
		linear-gradient(135deg, rgba(89, 91, 255, 0.14) 0%, rgba(89, 91, 255, 0.08) 100%);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top;
}

.tt-eg-2-col__media-placeholder {
	position: absolute;
	top: 0;
	left: 0;
	width: 511px;
	height: 511px;
	background: rgba(255, 0, 0, 0.5);
	z-index: 0;
	flex-shrink: 0;
}

.tt-eg-2-col__media-image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
	z-index: 0;
}

.tt-eg-2-col__card {
	padding: 16px;
	border-radius: var(--radius-24px, 24px);
	border: 1px solid var(--stroke-invertible-neutral-on-theme-medium--default, #EAECEE);
	backdrop-filter: blur(16px);
}

.tt-eg-2-col__card:not(:last-child) {
	margin-bottom: 24px;
}

.tt-eg-2-col__copy {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 8px;
}

.tt-eg-2-col__copy h3 {
	color: var(--typography-invertible-positive-on-theme-high--default, #25266B);
	font-size: var(--typography-font-size-lg, 18px);
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	padding: 8px;
	margin: 8px 0 0 0;
}

.tt-eg-2-col__badge-wrapper {
	margin-bottom: 16px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
}

.tt-eg-2-col__badge {
	padding: 12px;
	border-radius: 8px;
	background: var(--surface-invertible-neutral-theme-high--secondary, #F8F9FC);
	display: inline-block;
}

.tt-eg-2-col__badge-label {
	color: var(--typography-invertible-neutral-on-theme-high--default, #1A252F);
	font-size: var(--typography-font-size-sm, 14px);
	font-style: normal;
	font-weight: 600;
	line-height: 150%; /* 21px */
}

.tt-eg-2-col__button-wrapper {
	height: 40px;
}

.tt-eg-2-col__button {
	border-radius: var(--radius-8px, 8px);
	border: 1px solid var(--stroke-invertible-positive-on-theme-medium-default, #CCF);
	background: var(--surface-invertible-positive-theme-medium--default, #EEEFFF);
	color: var(--typography-invertible-positive-on-theme-low--secondary, #3F41B5);
	font-size: var(--typography-font-size-sm, 14px);
	font-style: normal;
	font-weight: 600;
	line-height: 150%;
	text-decoration: none;
}

.tt-eg-2-col__button:hover {
	background: var(--surface-invertible-positive-invert-medium--default, #5153E8);
	border-color: #5153E8;
	color: var(--typography-invertible-positive-on-invert-high--default, #F7F7FF);
}

.tt-eg-2-col__button:hover svg path {
	fill: #F7F7FF;
}

/* ==========================================================================
   Enterprise Grade - 1920 and up design
   Available content width: 1260px. Component intentionally capped at 1046px.
   ========================================================================== */
@media (min-width: 1440px) {
	.tt-eg-2-col {
		width: 1046px;
	}

	.tt-eg-2-col__title {
		font-size: 48px;
		font-weight: 600;
		line-height: 135%;
		letter-spacing: -0.02em;
	}
}

/* ==========================================================================
   Enterprise Grade - 1440 to 1919 design
   ========================================================================== */

@media (max-width: 1439px) and (min-width: 1200px) {
	.tt-eg-2-col {
		width: 1040px;
	}

	.tt-eg-2-col__title {
		font-size: 48px;
		font-weight: 600;
		line-height: 135%;
		letter-spacing: -0.02em;
	}
}

/* ==========================================================================
   Enterprise Grade - 1200 to 1439 design
   ========================================================================== */

@media (max-width: 1199px) and (min-width: 900px) {
	.tt-eg-2-col {
		width: 850px;
	}

	.tt-eg-2-col__title {
		font-size: 42px;
		line-height: 135%;
		letter-spacing: -0.02em;
	}
}

/* ==========================================================================
   900px to 1199px viewport, 550px content
   ========================================================================== */

@media (max-width: 899px) and (min-width: 600px) {
	
	.tt-eg-2-col__title {
		font-size: 36px;
		line-height: 140%;
		letter-spacing: -0.02em;
	}
}

/* ==========================================================================
   Enterprise Grade - mobile under 600px
   ========================================================================== */

@media (max-width: 599px) {
	.tt-eg-2-col {
		width: calc(100% - 40px);
	}

	.tt-eg-2-col__title {
		width: 100%;
	}
}

/* ==========================================================================
   Enterprise Grade - Layout change media query
   ========================================================================== */
@media (min-width: 900px) {
	.tt-eg-2-col__card-wrapper {
		display: flex;
		flex-direction: row;
		gap: 24px;
	}

	.tt-eg-2-col__title {
		width: 100%;
	}

	.tt-eg-2-col__card {
		flex: 1 0 45%;
	}
	.tt-eg-2-col__card:not(:last-child) {
		margin-bottom: 0px;
	}
}
