/* ==========================================================================
   Resource Topic: Featured block
   ========================================================================== */

/* --- Design tokens -------------------------------------------------------- */
.rt-featured,
.rt-featured * {
	box-sizing: border-box;
}

.rt-featured {
	--rt-ink700:         #2A2833;   
	--rt-border:         #DAD7E0;
	--rt-border-subtle:  #ECEAF1;
	--rt-hover-tint:     #F5F3F7;
	--rt-easing:         cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- Section shell -------------------------------------------------------- */
.rt-featured {
	background: var(--color-white);
}

.rt-featured__empty-notice {
	padding: 24px;
	color: var(--color-twilight);
	font-family: 'Overpass', sans-serif;
}

/* --- Header --------------------------------------------------------------- */
.rt-featured__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 28px;
	gap: 16px;
}

.rt-featured__eyebrow {
	font-family: 'Overpass', sans-serif;
	font-size: 12px;
	letter-spacing: .14em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--color-twilight);
	margin: 0;
}

.rt-featured__heading {
	font-family: 'Overpass', sans-serif;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--color-dark-purple);
	margin: 8px 0 0;
	padding: 0;
}

.rt-featured__view-all {
	font-family: 'Overpass', sans-serif;
	font-size: 14px;
	font-weight: 600;
	color: var(--color-purple);
	text-decoration: none;
	flex-shrink: 0;
	white-space: nowrap;
	align-self: flex-end;
	transition: text-decoration-color 200ms var(--rt-easing);
}

.rt-featured__view-all:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.rt-featured__view-all:focus-visible {
	outline: 3px solid rgba(141, 129, 239, .35);
	outline-offset: 2px;
	border-radius: 2px;
}

/* --- Spotlight card ------------------------------------------------------- */
.rt-featured__spotlight {
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	background: #fff;
	border: 1px solid var(--rt-border);
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(30, 30, 38, .05);
	margin-bottom: 24px;
	transition: box-shadow 200ms var(--rt-easing);
}

.rt-featured__spotlight:hover {
	box-shadow: 0 6px 20px rgba(30, 30, 38, .10);
}

/* Spotlight thumbnail */
.rt-featured__spotlight-thumb {
	display: block;
	position: relative;
	min-height: 280px;
	overflow: hidden;
	background: linear-gradient(135deg, #3F3C4A, #1E1E26);
}

.rt-featured__spotlight-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Spotlight placeholder art (CSS-only, no real image) */
.rt-featured__spot-art {
	position: absolute;
	inset: 0;
}

.rt-featured__spot-art::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 80% at 75% 18%, rgba(141, 129, 239, .6), transparent 62%);
}

.rt-featured__spot-art-citron {
	position: absolute;
	top: 24px;
	right: 28px;
	width: 18px;
	height: 18px;
	background: var(--color-yellow);
    background: radial-gradient(
    circle at 30% 30%, 
    #FBFFF3 0%,   /* 0%   - Bright Specular Highlight */
    #F3FFD8 40%,  /* 40%  - Pastel Chartreuse Mid-Tone */
    #EAFFBD 85%,  /* 85%  - Transitional Inner Shadow */
    #E7FFB2 100%  /* 100% - Your Requested Ambient Base Shadow */
  );
	border-radius: 50%;
	box-shadow: inset -10px -10px 20px rgba(0, 0, 0, 0.15), 0 25px 30px rgba(231, 255, 178, 0.4);
}

.rt-featured__spot-art-border {
	position: absolute;
	bottom: 26px;
	left: 28px;
	width: 32px;
	height: 32px;
	border: 2px solid rgba(189, 185, 255, .55);
	border-radius: 50%;
	box-shadow: 0 0 8px 2px rgba(189,185,255,0.35);
}

.rt-featured__spot-art-chevron {
	position: absolute;
	bottom: 30px;
	right: 32px;
	font-family: 'Overpass', sans-serif;
	font-size: 34px;
	font-weight: 800;
	color: rgba(189, 185, 255, .45);
	line-height: 1;
}

/* Spotlight body */
.rt-featured__spotlight-body {
	padding: 36px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.rt-featured__spotlight-title {
	font-family: 'Overpass', sans-serif;
	font-size: 28px;
	line-height: 1.18;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--color-dark-purple);
	margin: 16px 0 0;
	text-wrap: balance;
}

.rt-featured__spotlight-title a {
	color: inherit;
	text-decoration: none;
}

.rt-featured__spotlight-title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.rt-featured__spotlight-title a:focus-visible {
	outline: 3px solid rgba(141, 129, 239, .35);
	outline-offset: 2px;
	border-radius: 2px;
}

.rt-featured__spotlight-desc {
	font-size: 15px;
	line-height: 1.55;
	color: var(--color-twilight);
	margin: 12px 0 0;
}

/* --- Shared meta line ----------------------------------------------------- */
.rt-featured__meta {
	font-family: 'Overpass', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-twilight);
	margin-top: 18px;
}

/* --- Card grid rows ------------------------------------------------------- */
.rt-featured__card-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.rt-featured__card-row + .rt-featured__card-row {
	margin-top: 24px;
}

/* --- Standard card -------------------------------------------------------- */
.rt-card {
	background: #fff;
	border: 1px solid var(--rt-border);
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 2px 6px rgba(30, 30, 38, .05);
	transition: box-shadow 200ms var(--rt-easing), background-color 200ms var(--rt-easing);
}

.rt-card:hover {
	box-shadow: 0 6px 20px rgba(30, 30, 38, .10);
	background-color: var(--rt-hover-tint);
}

.rt-card:focus-within {
	outline: 3px solid rgba(141, 129, 239, .35);
	outline-offset: 2px;
}

.rt-card__thumb-wrap {
	display: block;
}

/* Card thumbnail */
.rt-card__thumb {
	position: relative;
	aspect-ratio: 16 / 9;
	overflow: hidden;
}

.rt-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Placeholder art variants
   ----------------------------------------------------------------
   Variant 0 – lavender: soft lavender bg + violet outline circle (top-left) + midnight circle (bottom-right)
   Variant 1 – twilight: twilight bg + violet radial glow + citron circle (top-right)
   Variant 2 – dark-citron: dark bg + citron radial glow + yellow circle (top-right)
   Variant 3 – twilight-alt: twilight bg + violet radial glow + lavender border circle (bottom-left)
   Variant 4 – lavender-alt: lavender bg + midnight circle (top-right) + violet border circle (bottom-left)
   Variant 5 – dark-citron-alt: dark bg + citron radial glow (alt position) + citron circle (top-right)
   ---------------------------------------------------------------- */

.rt-card__thumb--lavender {
	background: linear-gradient(135deg, #E5E3FF, #BDB9FF);
}

.rt-card__thumb--lavender::before {
	content: '';
	position: absolute;
	top: 16px;
	left: 18px;
	width: 26px;
	height: 26px;
	border: 2px solid rgba(141, 129, 239, .6);
	border-radius: 50%;
	box-shadow: 0 0 7px 2px rgba(141,129,239,0.3);
}

.rt-card__thumb--lavender::after {
	content: '';
	position: absolute;
	bottom: 16px;
	right: 18px;
	width: 14px;
	height: 14px;
	background: #1E1E26;
	border-radius: 50%;
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.08), 0 0 6px 2px rgba(30,30,38,0.4);
}

.rt-card__thumb--twilight {
	background: linear-gradient(135deg, #2A2833, #1E1E26);
}

.rt-card__thumb--twilight::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 90% at 78% 16%, rgba(141, 129, 239, .5), transparent 62%);
}

.rt-card__thumb--twilight::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 18px;
	width: 14px;
	height: 14px;
	background: var(--color-yellow);
	border-radius: 50%;
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.55), inset 0 -1px 1px rgba(0,0,0,0.08), 0 0 7px 2px rgba(231,255,178,0.5);
}

.rt-card__thumb--dark-citron {
	background: linear-gradient(135deg, #3F3C4A, #1E1E26);
}

.rt-card__thumb--dark-citron::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 90% at 22% 88%, rgba(203, 229, 131, .42), transparent 60%);
}

.rt-card__thumb--dark-citron::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 18px;
	width: 14px;
	height: 14px;
	background: var(--color-yellow);
    background: radial-gradient(
    circle at 30% 30%, 
    #F2FAD5 0%,   /* 0%   - Soft Specular Highlight */
    #D5EF75 40%,  /* 40%  - Your core color (Main body) */
    #9FBA3A 85%,  /* 85%  - Rich Olive-Lime Shadow */
    #6A8323 100%  /* 100% - Deep Shadow Edge */
  );
  
  /* Ambient drop shadow matching the lime undertones */
  box-shadow: 
    inset -10px -10px 25px rgba(0, 0, 0, 0.25),
    0 25px 30px rgba(106, 131, 35, 0.35);

	border-radius: 50%;
	box-shadow: 
    inset -10px -10px 20px rgba(0, 0, 0, 0.15),
    0 25px 30px rgba(231, 255, 178, 0.4);
}

.rt-card__thumb--twilight-alt {
	background: linear-gradient(135deg, #2A2833, #1E1E26);
}

.rt-card__thumb--twilight-alt::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 90% at 80% 18%, rgba(141, 129, 239, .5), transparent 62%);
}

.rt-card__thumb--twilight-alt::after {
	content: '';
	position: absolute;
	bottom: 14px;
	left: 16px;
	width: 22px;
	height: 22px;
	/*border: 2px solid rgba(189, 185, 255, .5);*/
    background: radial-gradient(
    circle at 30% 30%, 
    #E4E1FC 0%,   /* 0%   - Soft Lavender Highlight */
    #8D81EF 40%,  /* 40%  - Your core color (Main body) */
    #4D42B0 85%,  /* 85%  - Rich Deep Indigo Shadow */
    #2E2582 100%  /* 100% - Midnight Purple Shadow Edge */
  );
  box-shadow: 
    inset -10px -10px 25px rgba(0, 0, 0, 0.3),
    0 25px 30px rgba(46, 37, 130, 0.35);
	border-radius: 50%;
}

.rt-card__thumb--lavender-alt {
	background: linear-gradient(135deg, #E5E3FF, #BDB9FF);
}

.rt-card__thumb--lavender-alt::before {
	content: '';
	position: absolute;
	top: 16px;
	right: 18px;
	width: 14px;
	height: 14px;
	background: #1E1E26;
    background: radial-gradient(circle at 30% 30%, #B4B4C7 0%,   /* 0%   - Specular Highlight (Light reflection) */
    #696990 40%,  /* 40%  - True Mid-Tone Color */
    #363644 85%,  /* 85%  - Transitional Inner Shadow */
    #1E1E26 100%  /* 100% - Your Requested Ambient Base Shadow */
  );
	border-radius: 50%;
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.08), 0 0 6px 2px rgba(30,30,38,0.4);
}

.rt-card__thumb--lavender-alt::after {
	content: '';
	position: absolute;
	bottom: 14px;
	left: 16px;
	width: 24px;
	height: 24px;
	/*border: 2px solid rgba(141, 129, 239, .55);*/
	border-radius: 50%;
	/*box-shadow: 0 0 7px 2px rgba(141,129,239,0.3);*/
    background: var(--color-purple);
    background: radial-gradient(
    circle at 30% 30%, 
    #E4E1FC 0%,   /* 0%   - Soft Lavender Highlight */
    #8D81EF 40%,  /* 40%  - Your core color (Main body) */
    #4D42B0 85%,  /* 85%  - Rich Deep Indigo Shadow */
    #2E2582 100%  /* 100% - Midnight Purple Shadow Edge */
  );
  box-shadow: 
    inset -10px -10px 25px rgba(0, 0, 0, 0.3),
    0 25px 30px rgba(46, 37, 130, 0.35);
}

.rt-card__thumb--dark-citron-alt {
	background: linear-gradient(135deg, #3F3C4A, #1E1E26);
}

.rt-card__thumb--dark-citron-alt::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 90% at 24% 86%, rgba(203, 229, 131, .4), transparent 60%);
}

.rt-card__thumb--dark-citron-alt::after {
	content: '';
	position: absolute;
	top: 16px;
	right: 18px;
	width: 14px;
	height: 14px;
	background: var(--color-yellow);
	border-radius: 50%;
	box-shadow: inset 0 1px 2px rgba(255,255,255,0.55), inset 0 -1px 1px rgba(0,0,0,0.08), 0 0 7px 2px rgba(231,255,178,0.5);
}

/* --- Grid-wave pattern on placeholder thumbs ------------------------------ */
/*
   Single-composition SVG (not tiling) covering the full thumbnail.
   Structure mirrors the reference: 15 radial lines from a focal point
   (upper-left, ~26% × 12% of the 400×225 viewBox) + 6 primary flowing
   curves from the right edge that cross the radials + 7 fainter mesh lines
   that add grid density at the intersections.
   background-size: 100% 100% stretches the SVG to fill each element.
   Dark thumbs use white strokes; light thumbs use purple (#8d81ef).
*/

.rt-featured__spotlight-thumb,
.rt-card__thumb--dark-citron,
.rt-card__thumb--dark-citron-alt {
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 225'%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.09' stroke-width='0.75'%3E%3Cline x1='105' y1='28' x2='0' y2='225'/%3E%3Cline x1='105' y1='28' x2='48' y2='225'/%3E%3Cline x1='105' y1='28' x2='100' y2='225'/%3E%3Cline x1='105' y1='28' x2='155' y2='225'/%3E%3Cline x1='105' y1='28' x2='215' y2='225'/%3E%3Cline x1='105' y1='28' x2='278' y2='225'/%3E%3Cline x1='105' y1='28' x2='344' y2='225'/%3E%3Cline x1='105' y1='28' x2='400' y2='208'/%3E%3Cline x1='105' y1='28' x2='400' y2='162'/%3E%3Cline x1='105' y1='28' x2='400' y2='116'/%3E%3Cline x1='105' y1='28' x2='400' y2='68'/%3E%3Cline x1='105' y1='28' x2='400' y2='20'/%3E%3Cline x1='105' y1='28' x2='310' y2='0'/%3E%3Cline x1='105' y1='28' x2='228' y2='0'/%3E%3Cline x1='105' y1='28' x2='160' y2='0'/%3E%3C/g%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.08' stroke-width='0.75'%3E%3Cpath d='M285 0 C305 55 285 125 345 178 C370 200 390 215 400 225'/%3E%3Cpath d='M330 0 C345 60 328 132 380 185 C392 198 400 210 400 225'/%3E%3Cpath d='M372 0 C380 65 368 138 395 190'/%3E%3Cpath d='M400 8 C396 70 388 140 400 198'/%3E%3Cpath d='M400 55 C390 95 386 150 400 205'/%3E%3Cpath d='M400 105 C388 130 386 168 400 218'/%3E%3C/g%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.05' stroke-width='0.5'%3E%3Cpath d='M248 0 C272 48 268 115 325 165 C355 192 380 210 400 225'/%3E%3Cpath d='M308 0 C325 58 312 128 362 180 C380 198 393 210 400 225'/%3E%3Cpath d='M350 0 C362 63 352 134 388 186'/%3E%3Cpath d='M390 0 C394 67 387 136 400 194'/%3E%3Cpath d='M400 32 C393 82 388 144 400 202'/%3E%3Cpath d='M400 80 C387 112 384 158 400 214'/%3E%3Cpath d='M400 130 C386 148 385 175 400 222'/%3E%3C/g%3E%3C/svg%3E"),
		linear-gradient(135deg, #3F3C4A, #1E1E26);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.rt-card__thumb--twilight,
.rt-card__thumb--twilight-alt {
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 225'%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.09' stroke-width='0.75'%3E%3Cline x1='105' y1='28' x2='0' y2='225'/%3E%3Cline x1='105' y1='28' x2='48' y2='225'/%3E%3Cline x1='105' y1='28' x2='100' y2='225'/%3E%3Cline x1='105' y1='28' x2='155' y2='225'/%3E%3Cline x1='105' y1='28' x2='215' y2='225'/%3E%3Cline x1='105' y1='28' x2='278' y2='225'/%3E%3Cline x1='105' y1='28' x2='344' y2='225'/%3E%3Cline x1='105' y1='28' x2='400' y2='208'/%3E%3Cline x1='105' y1='28' x2='400' y2='162'/%3E%3Cline x1='105' y1='28' x2='400' y2='116'/%3E%3Cline x1='105' y1='28' x2='400' y2='68'/%3E%3Cline x1='105' y1='28' x2='400' y2='20'/%3E%3Cline x1='105' y1='28' x2='310' y2='0'/%3E%3Cline x1='105' y1='28' x2='228' y2='0'/%3E%3Cline x1='105' y1='28' x2='160' y2='0'/%3E%3C/g%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.08' stroke-width='0.75'%3E%3Cpath d='M285 0 C305 55 285 125 345 178 C370 200 390 215 400 225'/%3E%3Cpath d='M330 0 C345 60 328 132 380 185 C392 198 400 210 400 225'/%3E%3Cpath d='M372 0 C380 65 368 138 395 190'/%3E%3Cpath d='M400 8 C396 70 388 140 400 198'/%3E%3Cpath d='M400 55 C390 95 386 150 400 205'/%3E%3Cpath d='M400 105 C388 130 386 168 400 218'/%3E%3C/g%3E%3Cg fill='none' stroke='%23fff' stroke-opacity='0.05' stroke-width='0.5'%3E%3Cpath d='M248 0 C272 48 268 115 325 165 C355 192 380 210 400 225'/%3E%3Cpath d='M308 0 C325 58 312 128 362 180 C380 198 393 210 400 225'/%3E%3Cpath d='M350 0 C362 63 352 134 388 186'/%3E%3Cpath d='M390 0 C394 67 387 136 400 194'/%3E%3Cpath d='M400 32 C393 82 388 144 400 202'/%3E%3Cpath d='M400 80 C387 112 384 158 400 214'/%3E%3Cpath d='M400 130 C386 148 385 175 400 222'/%3E%3C/g%3E%3C/svg%3E"),
		linear-gradient(135deg, #2A2833, #1E1E26);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

.rt-card__thumb--lavender,
.rt-card__thumb--lavender-alt {
	background-image:
		url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 225'%3E%3Cg fill='none' stroke='%238d81ef' stroke-opacity='0.15' stroke-width='0.75'%3E%3Cline x1='105' y1='28' x2='0' y2='225'/%3E%3Cline x1='105' y1='28' x2='48' y2='225'/%3E%3Cline x1='105' y1='28' x2='100' y2='225'/%3E%3Cline x1='105' y1='28' x2='155' y2='225'/%3E%3Cline x1='105' y1='28' x2='215' y2='225'/%3E%3Cline x1='105' y1='28' x2='278' y2='225'/%3E%3Cline x1='105' y1='28' x2='344' y2='225'/%3E%3Cline x1='105' y1='28' x2='400' y2='208'/%3E%3Cline x1='105' y1='28' x2='400' y2='162'/%3E%3Cline x1='105' y1='28' x2='400' y2='116'/%3E%3Cline x1='105' y1='28' x2='400' y2='68'/%3E%3Cline x1='105' y1='28' x2='400' y2='20'/%3E%3Cline x1='105' y1='28' x2='310' y2='0'/%3E%3Cline x1='105' y1='28' x2='228' y2='0'/%3E%3Cline x1='105' y1='28' x2='160' y2='0'/%3E%3C/g%3E%3Cg fill='none' stroke='%238d81ef' stroke-opacity='0.12' stroke-width='0.75'%3E%3Cpath d='M285 0 C305 55 285 125 345 178 C370 200 390 215 400 225'/%3E%3Cpath d='M330 0 C345 60 328 132 380 185 C392 198 400 210 400 225'/%3E%3Cpath d='M372 0 C380 65 368 138 395 190'/%3E%3Cpath d='M400 8 C396 70 388 140 400 198'/%3E%3Cpath d='M400 55 C390 95 386 150 400 205'/%3E%3Cpath d='M400 105 C388 130 386 168 400 218'/%3E%3C/g%3E%3Cg fill='none' stroke='%238d81ef' stroke-opacity='0.08' stroke-width='0.5'%3E%3Cpath d='M248 0 C272 48 268 115 325 165 C355 192 380 210 400 225'/%3E%3Cpath d='M308 0 C325 58 312 128 362 180 C380 198 393 210 400 225'/%3E%3Cpath d='M350 0 C362 63 352 134 388 186'/%3E%3Cpath d='M390 0 C394 67 387 136 400 194'/%3E%3Cpath d='M400 32 C393 82 388 144 400 202'/%3E%3Cpath d='M400 80 C387 112 384 158 400 214'/%3E%3Cpath d='M400 130 C386 148 385 175 400 222'/%3E%3C/g%3E%3C/svg%3E"),
		linear-gradient(135deg, #E5E3FF, #BDB9FF);
	background-size: 100% 100%;
	background-repeat: no-repeat;
}

/* --- Chips ---------------------------------------------------------------- */
.rt-chip {
	display: inline-block;
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	font-weight: 700;
	color: var(--color-dark-purple);
	background: var(--rt-border-subtle);
	border-radius: 999px;
	padding: 4px 11px;
}

.rt-chip--lavender {
	background: var(--color-lightest-purple);
	padding: 5px 12px;
}

.rt-featured__spotlight-body .rt-chip {
	align-self: flex-start;
}

/* --- Card body ------------------------------------------------------------ */
.rt-card__body {
	padding: 18px 20px 20px;
}

.rt-card__title {
	font-family: 'Overpass', sans-serif;
	font-size: 18px;
	line-height: 1.3;
	font-weight: 600;
	color: var(--color-dark-purple);
	margin: 12px 0 0;
	text-wrap: balance;
}

.rt-card__title a {
	color: inherit;
	text-decoration: none;
}

.rt-card__title a:hover {
	text-decoration: underline;
	text-decoration-thickness: 2px;
	text-underline-offset: 3px;
}

.rt-card__title a:focus-visible {
	outline: 3px solid rgba(141, 129, 239, .35);
	outline-offset: 2px;
	border-radius: 2px;
}

.rt-card__meta {
	font-family: 'Overpass', sans-serif;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-twilight);
	margin-top: 12px;
    text-transform: lowercase;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* 640px–1023px: 2-column card grid */
@media (max-width: 1023px) {
	.rt-featured {
		padding: 56px 40px 48px;
	}
	.rt-featured__spotlight {
		grid-template-columns: 1fr;
	}
	.rt-featured__card-row {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* Spotlight stacks at a natural mid-point (thumb min-height shrinks too) */
@media (max-width: 767px) {
	.rt-featured {
		padding: 40px 24px 32px;
	}



	.rt-featured__spotlight-thumb {
		min-height: 220px;
	}
}

/* < 640px: single-column, header stacks */
@media (max-width: 639px) {
	.rt-featured {
		padding: 32px 16px 24px;
	}

	.rt-featured__header {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
	}

	.rt-featured__card-row {
		grid-template-columns: 1fr;
	}
}
