/* RK Insights Grid - base styles.
   Adjust colors/spacing to match the approved static design on /insights/. */

.rk-insights-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 32px;
}

.rk-insight-card {
	display: flex;
	flex-direction: column;
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 12px;
	padding: 32px;
	background: rgba(255, 255, 255, 0.03);
	transition: transform 0.2s ease, border-color 0.2s ease;
}

.rk-insight-card:hover {
	transform: translateY(-3px);
	border-color: rgba(255, 255, 255, 0.3);
}

.rk-insight-icon img {
 width: 30px;
height: auto
	
}


.rk-insight-tag {
	padding:8px 11px;
border:1px solid #FFFFFF17;
font-family: "DM Sans", Sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 15px;
    letter-spacing: 0.14em;
	background-color: #FFFFFF17;
	

}

.rk-insight-source {
	font-family: "DM Sans", Sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 19px;
    color: #FFFFFF94;
	
}
.rk-insight-meta{
margin-bottom: 15px;
}
.rk-insight-title {
	font-family: "Cormorant Garamond", Sans-serif;
   font-size: clamp(25px, 2.2vw, 34px) !important;
    line-height: 1.16 !important;
    font-weight: 700;
    color: #FFFFFF;
}

.rk-insight-title a {
	text-decoration: none;
	color: inherit;
}

.rk-insight-prompt {
	border:1px solid #FFFFFF21;
	padding: 11px 13px;
	margin-bottom: 10px;
	background: #FFFFFF0F;
}

.rk-insight-prompt-label {
	display: block;
	font-family: "DM Sans", Sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 10px;
    letter-spacing: 0.16em;
	color: #b8975a;
	margin-bottom: 16px;
}

.rk-insight-prompt p {
	margin: 0;
	font-family: "Cormorant Garamond", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 23px;
    color: #FFFFFF9E;
}

.rk-insight-desc {
	font-family: "DM Sans", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 26px;
    color: #FFFFFFA3;
	margin-bottom: 26px;
}

.rk-insight-link {
	margin-top: auto;
	font-family: "DM Sans", Sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 18px;
    letter-spacing: 0.18em;
    fill: #B8975A;
    color: #B8975A;
}

.rk-insight-link:hover {
	color: #E7C187;
}

@media (max-width: 767px) {
	.rk-insights-grid {
		grid-template-columns: 1fr;
	}
}
.rk-insight-ic-tag{
	display:flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 22px;
}
.rk-insights-grid  .rk-insight-card:nth-child(even){
	background-color: #fff!important;
	border:none!important;
	border-top: 3px solid #B8975A!important;
	box-shadow: 0px 0px 10px 0px rgba(14.999999999999995, 30.000000000000032, 54, 0.12941176470588237);
}
.rk-insights-grid  .rk-insight-card:nth-child(even) .rk-insight-tag{
	background-color: #B8975A1F!important;
	border: 1px solid #B8975A47!important;

}
.rk-insights-grid  .rk-insight-card:nth-child(even) .rk-insight-source{
color: #5A6A7E!important;
}
.rk-insights-grid  .rk-insight-card:nth-child(even)  .rk-insight-title a{
	color: #0F1E36!important;;
}
.rk-insights-grid  .rk-insight-card:nth-child(even) .rk-insight-desc{
color: #5A6A7E!important;
}
.rk-insights-grid  .rk-insight-card:nth-child(even) .rk-insight-prompt{
	background-color: #0F1E36!important;

}