/* ==========================================================================
   Resource Topic: More Articles block
   ========================================================================== */

.rt-more,
.rt-more * {
	box-sizing: border-box;
}

.rt-more {
	--rt-border-subtle:  #ECEAF1;
	--rt-hover-tint:     #F5F3F7;
	--rt-easing:         cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* --- Section shell -------------------------------------------------------- */
.rt-more {
	background: #fff;
	border-top: 1px solid #ECEAF1;
	padding: 64px 64px 76px;
	font-family: 'Montserrat', Arial, sans-serif;
}

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

/* --- Section header ------------------------------------------------------- */
.rt-more__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-more__heading {
	font-family: 'Overpass', sans-serif;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.01em;
	color: var(--color-dark-purple);
	margin: 8px 0 24px;
	padding: 0;
}

/* --- List ----------------------------------------------------------------- */
.rt-more__list {
	display: flex;
	flex-direction: column;
}

/* --- Row ------------------------------------------------------------------ */
.rt-more__row {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 16px 0;
	border-bottom: 1px solid var(--color-lightgrey);
	text-decoration: none;
	transition: background-color 200ms var(--rt-easing);
}

.rt-more__row--last {
	border-bottom: none;
}

.rt-more__row:hover {
	background-color: var(--rt-hover-tint);
}

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

/* --- Thumbnail ------------------------------------------------------------ */
.rt-more__thumb-wrap {
	flex: none;
	width: 100px;
	height: 56px;
	border-radius: 8px;
	overflow: hidden;
}

.rt-more__thumb-img {
	width: 100px;
	height: 56px;
	object-fit: cover;
	display: block;
}

/* Placeholder art variants
   ----------------------------------------------------------------
   dark-violet     – dark bg + violet radial glow + citron square (top-right)
   lavender        – lavender bg + violet outline box (top-left)
   dark-citron     – dark bg + citron radial glow + dark-citron square (top-right)
   dark-violet-alt – dark bg + violet radial glow + lavender border square (bottom-left)
   lavender-alt    – lavender bg + lavender border (bottom-right) + midnight square (top-left)
   ---------------------------------------------------------------- */

.rt-more__thumb-art {
	width: 100%;
	height: 100%;
	position: relative;
}

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

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

.rt-more__thumb-art--dark-violet::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 12px;
	width: 10px;
	height: 10px;
	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 */
    );
	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-more__thumb-art--lavender {
	background: linear-gradient(135deg, #E5E3FF, #BDB9FF);
}

.rt-more__thumb-art--lavender::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 12px;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(141, 129, 239, .6);
}

.rt-more__thumb-art--dark-citron {
	background: linear-gradient(135deg, #2A2833, #1E1E26);
}

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

.rt-more__thumb-art--dark-citron::after {
	content: '';
	position: absolute;
	top: 10px;
	right: 12px;
	width: 10px;
	height: 10px;
	background: #CBE583;
}

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

.rt-more__thumb-art--dark-violet-alt::before {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(70% 90% at 80% 16%, rgba(141, 129, 239, .5), transparent 62%);
}

.rt-more__thumb-art--dark-violet-alt::after {
	content: '';
	position: absolute;
	bottom: 10px;
	left: 12px;
	width: 16px;
	height: 16px;
	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-more__thumb-art--lavender-alt {
	background: linear-gradient(135deg, #E5E3FF, #BDB9FF);
}

.rt-more__thumb-art--lavender-alt::before {
	content: '';
	position: absolute;
	bottom: 10px;
	right: 12px;
	width: 18px;
	height: 18px;
	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-more__thumb-art--lavender-alt::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 12px;
	width: 10px;
	height: 10px;
	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);
}

/* --- Text column ---------------------------------------------------------- */
.rt-more__text {
	flex: 1;
	min-width: 0;
}

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

.rt-more__desc {
	font-family: 'Montserrat', sans-serif;
	font-size: 13px;
	color: var(--color-twilight);
	margin: 4px 0 0;
}
span.cta {
    display: block;
    padding-top: 6px;
}

/* --- Right meta column ---------------------------------------------------- */
.rt-more__right {
	flex: none;
	text-align: right;
}

.rt-more__cat-time {
	font-family: 'Overpass', sans-serif;
	font-size: 12px;
	font-weight: 600;
	color: var(--color-twilight);
	white-space: nowrap;
}

.rt-more__date {
	font-family: 'Overpass', sans-serif;
	font-size: 12px;
	font-weight: 400;
	color: var(--color-grey);
	margin-top: 2px;
	white-space: nowrap;
}

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

@media (max-width: 900px) {
	.rt-more {
		padding: 48px 40px 56px;
	}
}

@media (max-width: 768px) {
	.rt-more {
		padding: 40px 24px 48px;
	}

	/* Stack the right meta under the title instead of hiding */
	.rt-more__row {
		flex-wrap: wrap;
	}

	.rt-more__right {
		flex: 0 0 100%;
		text-align: left;
		padding-left: calc(96px + 20px); /* align with text column */
	}
}

@media (max-width: 640px) {
	.rt-more__thumb-wrap {
		display: none;
	}

	.rt-more__right {
		padding-left: 0;
		order: -1;
	}
}

@media (max-width: 480px) {
	.rt-more {
		padding: 32px 16px 40px;
	}

	.rt-more__title {
		font-size: 16px;
	}
}
