/* 🧭 Font & Global Reset */
html, body {
  max-width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #0F1428;
  background-color: #FCFCFD;
}

/* 📰 Headings */ 
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  margin-bottom: 12px;
  color: #0E1427;
  line-height: 1.3;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; color: #393E51; }
h3 { font-size: 24px; color: #555970; }
h4 { font-size: 20px; font-weight: 600; }
h5, h6 { font-size: 18px; font-weight: 500; color: #888; }

/* 📖 Paragraphs & Lists */
p, li {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* 🔗 Links */
a {
  color: #0F1428;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #d72638;
  text-decoration: underline;
}

/* 🧾 Metadata */
.text-muted {
  color: #6c757d !important;
  font-size: 13px;
  font-style: italic;
}

/* 🪧 Section Headers */
.section-heading {
  font-size: 22px;
  font-weight: 700;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #0F1428;
}

/* 📦 News Card Styling */
.news-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  padding: 20px;
  margin-bottom: 25px;
}

/* 🖼️ Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  object-fit: cover;
  object-position: top;
}

.img-rounded {
  border-radius: 6px;
}

/* 🏷️ Badges (Live, Breaking, etc.) */
.badge-live {
  background-color: #d72638;
  color: #fff;
  font-size: 11px;
  padding: 4px 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-block;
}

.badge-breaking {
  background-color: #f9c74f;
  color: #222;
  font-size: 11px;
  padding: 4px 8px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  margin-bottom: 6px;
  display: inline-block;
}

/* 🧱 Utilities */
.mb-3 { margin-bottom: 1rem !important; }
.mt-3 { margin-top: 1rem !important; }
.pt-2 { padding-top: 0.5rem !important; }

/* 📌 Lists */
ul, ol {
    padding-left: 20px;
}

ul {
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
}

/* ✍️ Blockquotes */
blockquote {
    font-family: 'Merriweather', serif;
    font-size: 20px;
    font-style: italic;
    color: #58536B; /* Soft Purple */
    border-left: 5px solid #707381; /* Cool Gray */
    padding-left: 15px;
    margin: 20px 0;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 4px;
}
/* 📰 Standardized Meta Info (Author, Category, Date) */
.article-meta {
    font-family: 'Merriweather', serif;
    font-size: 14px;
    font-weight: 400;
    color: #707381; /* Muted Gray */
    margin-top: 5px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

/* 🏷 Category */
.article-meta .category {
    font-size: 14px;
    font-weight: 600;
    color: #58536B; /* Soft Purple-Gray */
    text-transform: capitalize;
    text-decoration: none;
}

.article-meta .category:hover {
    color: #393E51; /* Darker Tone */
    text-decoration: underline;
}

/* 👤 Author */
.article-meta .author {
    font-size: 14px;
    font-weight: 500;
    color: #0E1427; /* Deep Navy */
    text-decoration: none;
}

.article-meta .author:hover {
    text-decoration: underline;
}

/* 📅 Date */
.article-meta .date {
    font-size: 13px;
    color: #9a9a9a; /* Lighter gray */
    font-style: italic;
    font-weight: 400;
}

/* 📊 Tables */
table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
    margin-bottom: 20px;
    background: #fff;
}

table th, table td {
    /* border: 1px solid #707381; */
    padding: 10px;
    text-align: left;
    color: #0E1427; /* Deep Navy */
}

table th {
    font-weight: 700;
    background: #f4f4f4;
}
 
/* 📍 Sidebar & Widgets */
.sidebar, .widget {
    font-family: 'Merriweather', serif;
    font-size: 16px;
    color: #707381; /* Muted Gray */
}

/* 🏷️ Tags */
.tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: bold;
    color: #FCFCFD; /* White */
    background-color: #58536B; /* Soft Purple */
    padding: 5px 10px;
    border-radius: 4px;
    display: inline-block;
    margin-right: 5px;
}

.tag:hover {
    background-color: #707381; /* Cool Gray */
}

/* 🖊️ Author Box */
.author-box {
    padding: 15px;
    border-left: 5px solid #707381; /* Cool Gray */
    margin-top: 30px;
    color: #0E1427; /* Deep Navy */
    background: #f8f9fa;
    border-radius: 4px;
}

.author-box h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: bold;
}

/* 🎥 Featured Image */
.featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

/* 🖥 Responsive Adjustments */
@media (max-width: 768px) {
    body {
        font-size: 16px;
    }
    
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 22px; }
    h4 { font-size: 20px; }
    h5 { font-size: 18px; }
    h6 { font-size: 16px; }

    /* Mobile-friendly featured images */
    .featured-image {
        max-height: 300px;
    }
}

/* 🎯 News Section Layouts */
.news-section {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.news-section-header {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* 📌 News Articles Layout */
.news-article {
    display: flex;
    flex-direction: column;
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.news-title {
    font-size: 20px;
    font-weight: bold;
    margin-top: 10px;
}

.news-excerpt {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

/* 📌 Responsive News Layout */
@media (max-width: 992px) {
    .news-section {
        padding: 15px;
    }
}


.rgk_header_section_3 {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.rgk_header_section_3_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 📰 Main Story Styling */
.rgk_header_section_3_main_story {
	text-align: left;
}

.rgk_header_section_3_main_image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: top;
}

@media (max-width: 768px) {
	.rgk_header_section_3_main_image {
		height: 400px; /* Increased height for mobile */
	}
}

.rgk_header_section_3_headline {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
}

.rgk_header_section_3_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 🔹 Small Stories (Right Column) */
.rgk_header_section_3_small_story {
	display: flex;
	flex-direction: column;
}

.rgk_header_section_3_small_image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}

@media (max-width: 768px) {
	.rgk_header_section_3_small_image {
		height: 200px; /* Increased height for mobile */
	}
}

.rgk_header_section_3_headline_small {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	color: #151517
}

/* 📌 Separators */
.rgk_header_section_3_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

/* 📐 Mobile Adjustments */
@media (max-width: 992px) {
	.rgk_header_section_3_vertical_separator {
		border-left: none;
		padding-left: 0;
		margin-top: 20px;
	}
}
/* 📌 General Container Styling */
.rgk_section_3_container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* 📌 Header Styling */
.rgk_section_3_header {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* 📌 Image Styling */
.rgk_section_3_image img {
    width: 100%;
    height: auto;
}

/* 📌 Headline Styling */
.rgk_section_3_headline {
    font-size: 22px;
    font-weight: bold;
    margin-top: 10px;
    word-wrap: break-word; /* Ensures long words don't overflow */
}

/* 📌 Small Headline Styling */
.rgk_section_3_headline_small {
    text-decoration: none;
    color: black;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
	margin-left: 15px;
}

.rgk_section_3_headline_small h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 3px;
    line-height: 1.3;
    word-wrap: break-word; /* Ensures proper text wrapping */
}

/* 📌 Meta Data Styling */
.rgk_section_3_container .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}

/* Fix for metadata wrapping on mobile */
.rgk_section_3_container .article-meta a,
.rgk_section_3_container .article-meta span {
    display: inline-block;
    flex-shrink: 0; /* Ensures metadata elements don't break mid-line */
}

/* 📌 Vertical Separator Styling */
.rgk_section_3_vertical_separator {
    border-left: 2px solid #ddd;
    padding-left: 20px;
}

/* 📌 Responsive Adjustments */
@media (max-width: 992px) {
    .rgk_section_3_vertical_separator {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .rgk_section_3_container {
        padding: 10px;
    }

    .rgk_section_3_header {
        font-size: 20px;
    }

    .rgk_section_3_headline {
        font-size: 18px;
    }

    .rgk_section_3_headline_small h4 {
        font-size: 16px;
    }

    .rgk_section_3_sub_headline a {
        font-size: 16px;
        /* padding: 12px; */
    }

    /* Ensure headlines maintain proper indentation and avoid breaking words */
    .rgk_section_3_headline,
    .rgk_section_3_headline_small h4 {
        word-break: break-word; /* Allows breaking long words while maintaining structure */
        overflow-wrap: break-word;
    }

    /* Improve metadata alignment for mobile */
    .rgk_section_3_container .article-meta {
        font-size: 13px;
        gap: 3px;
        flex-direction: row;
        justify-content: flex-start;
        white-space: normal; /* Allows proper wrapping */
    }
}



/* 📌 Ensures max width is consistent */
.rgk_header_section_5 {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

/* 📌 Header */
.rgk_header_section_5_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 📌 Story Layout */
.rgk_header_section_5_story {
	display: flex;
	flex-direction: column;
	width: 100%;
}

/* 📌 Image Styling */
.rgk_header_section_5_image_wrapper {
	width: 100%;
}
.rgk_header_section_5_image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}

/* 📌 Headline (Fixed Indentation) */
.rgk_header_section_5_headline {
	font-size: 18px;
	font-weight: normal !important;
	margin-bottom: 5px;
	display: flex;
	align-items: flex-start;
	gap: 5px;
}

/* 🏆 Fixes wrapped indentation issue */
.rgk_header_section_5_headline a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}

/* 📌 Small & Faint Metadata */
.rgk_header_section_5_meta {
	font-size: 12px;
	color: #777; /* Fainter color */
	margin-top: 2px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	justify-content: flex-start;
	align-items: center;
}

/* 📌 Separator - Fixes Mobile Gaps */
.rgk_header_section_5_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
	width: 100%;
}

/* 📌 Responsive Fixes */
@media (max-width: 992px) {
	.rgk_header_section_5 .col-lg-3 {
		flex: 0 0 50%;
		max-width: 50%;
	}
}

@media (max-width: 768px) {
	.rgk_header_section_5 .col-lg-3 {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.rgk_header_section_5_header {
		font-size: 20px;
	}
	.rgk_header_section_5_separator {
		margin: 10px 0; /* Reduce margin to prevent big gaps */
	}
	.rgk_header_section_5_meta {
		flex-direction: column; /* Stack metadata correctly */
		align-items: flex-start;
	}
}

.rgk_header_section_4 {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}
.rgk_header_section_4_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 📰 Main Story Styling */
.rgk_header_section_4_main_story {
	text-align: left;
}
.rgk_header_section_4_main_image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: top;
}
.rgk_header_section_4_headline {
	font-size: 22px;
	font-weight: bold;
	margin-top: 10px;
}
.rgk_header_section_4_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 🔹 Small Stories (Left Column) */
.rgk_header_section_4_small_story {
	display: flex;
	flex-direction: column;
}
.rgk_header_section_4_small_image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}
.rgk_header_section_4_headline_small {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
}

/* 📌 Separators */
.rgk_header_section_4_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

@media (max-width: 992px) {
	.rgk_header_section_4_vertical_separator {
		border-left: none;
		padding-left: 0;
		margin-top: 20px;
	}
}

.rgk_sidebar_centric_layout {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}
.rgk_sidebar_centric_layout_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 📰 Main Story Styling */
.rgk_sidebar_centric_layout_main_story {
	text-align: left;
}
.rgk_sidebar_centric_layout_main_image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	object-position: top;
}
.rgk_sidebar_centric_layout_headline {
	font-size: 22px;
	font-weight: normal !important;
	margin-top: 10px;
}
.rgk_sidebar_centric_layout_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 📋 Sidebar Stories */
.rgk_sidebar_centric_layout_headline_small {
	font-size: 18px;
	font-weight: normal !important;
	margin-bottom: 5px;
}
.rgk_sidebar_centric_layout_metadata {
	font-size: 13px;
	color: #999; /* Fainter color */
}

/* 🔹 Bottom Grid (Small Stories with Images) */
.rgk_sidebar_centric_layout_small_story {
	display: flex;
	flex-direction: column;
}
.rgk_sidebar_centric_layout_small_image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}

/* 📌 Separator */
.rgk_sidebar_centric_layout_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

/* 🖥 Responsive Adjustments */
@media (max-width: 992px) {
	.rgk_sidebar_centric_layout_vertical_separator {
		border-left: none;
		padding-left: 0;
		margin-top: 20px;
	}
}
@media (max-width: 768px) {
	.rgk_sidebar_centric_layout_main_image {
		height: 250px;
	}
	.rgk_sidebar_centric_layout_header {
		font-size: 20px;
	}
}
.hero_feature_trending_grid {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}
.hero_feature_trending_grid_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 📰 Hero Story Styling */
.hero_feature_trending_grid_main_story {
	text-align: left;
}
.hero_feature_trending_grid_main_image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
}
.hero_feature_trending_grid_headline {
	font-size: 22px;
	font-weight: normal !important; /* Force non-bold */
	margin-top: 10px;
}
.hero_feature_trending_grid_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 📌 Trending Stories Grid */
.hero_feature_trending_grid_trending_story {
	display: flex;
	flex-direction: column;
}
.hero_feature_trending_grid_trending_image {
	width: 100%;
	height: 180px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}
.hero_feature_trending_grid_headline_small {
	font-size: 18px;
	font-weight: normal !important; /* Force non-bold */
	margin-bottom: 5px;
}

/* 📌 Separator */
.hero_feature_trending_grid_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

/* 📌 Responsive Fixes */
@media (max-width: 992px) {
	.hero_feature_trending_grid_main_image {
		height: 250px;
	}
}
@media (max-width: 768px) {
	.hero_feature_trending_grid_main_image {
		height: 220px;
	}
	.hero_feature_trending_grid_trending_image {
		height: 160px;
	}
	.hero_feature_trending_grid_header {
		font-size: 20px;
	}
}
.mosaic_pinterest_layout {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}
.mosaic_pinterest_layout_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 🔹 Hero Story Styling */
.mosaic_pinterest_layout_big_story {
	text-align: left;
}
.mosaic_pinterest_layout_big_image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
}
.mosaic_pinterest_layout_headline {
	font-size: 22px;
	font-weight: normal !important;
	margin-top: 10px;
}
.mosaic_pinterest_layout_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 🎭 Medium Stories */
.mosaic_pinterest_layout_medium_story {
	display: flex;
	flex-direction: column;
}
.mosaic_pinterest_layout_medium_image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}

/* 🎬 Small Stories */
.mosaic_pinterest_layout_small_story {
	display: flex;
	flex-direction: column;
}
.mosaic_pinterest_layout_small_image {
	width: 100%;
	height: 150px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}
.mosaic_pinterest_layout_headline_small {
	font-size: 18px;
	font-weight: normal !important;
	margin-bottom: 5px;
}

/* 📌 Separator */
.mosaic_pinterest_layout_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

/* 📌 Responsive Adjustments */
@media (max-width: 768px) {
	.mosaic_pinterest_layout_big_image {
		height: 250px;
	}
	.mosaic_pinterest_layout_medium_image {
		height: 180px;
	}
	.mosaic_pinterest_layout_small_image {
		height: 140px;
	}
}

.espn_style_grid_layout {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}
.espn_style_grid_layout_header {
	font-size: 24px;
	font-weight: bold;
	border-bottom: 1px solid black;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

/* 🔹 Hero Story Styling */
.espn_style_grid_layout_big_story {
	text-align: left;
}
.espn_style_grid_layout_big_image {
	width: 100%;
	height: 350px;
	object-fit: cover;
	object-position: top;
}
.espn_style_grid_layout_headline {
	font-size: 22px;
	font-weight: normal !important;
	margin-top: 10px;
}
.espn_style_grid_layout_excerpt {
	font-size: 16px;
	color: #555;
	margin-top: 5px;
}

/* 🎭 Medium Stories */
.espn_style_grid_layout_medium_story {
	display: flex;
	flex-direction: column;
}
.espn_style_grid_layout_medium_image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}

/* 🎬 Small Stories */
.espn_style_grid_layout_small_story {
	display: flex;
	flex-direction: column;
}
.espn_style_grid_layout_small_image {
	width: 100%;
	height: 120px;
	object-fit: cover;
	object-position: top;
	margin-bottom: 10px;
}
.espn_style_grid_layout_headline_small {
	font-size: 18px;
	font-weight: normal !important;
	margin-bottom: 5px;
}

/* 📌 Separator */
.espn_style_grid_layout_separator {
	border-top: 1px solid #6c5e5e;
	margin: 15px 0;
}

/* 📌 Responsive Adjustments */
@media (max-width: 768px) {
	.espn_style_grid_layout_big_image {
		height: 250px;
	}
	.espn_style_grid_layout_medium_image {
		height: 180px;
	}
	.espn_style_grid_layout_small_image {
		height: 100px;
	}
}



.blog-container {
    max-width: 1200px;
    margin: auto;
    /* padding: 20px; */
}

.blog-article {
    background: #fff;
    border-radius: 5px;
	margin-top: 40px;
}

.blog-title {
    font-size: 28px;
    font-weight: bold;
}

.blog-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}

.blog-meta a {
    color: #333;
    text-decoration: none;
}

.blog-meta a:hover {
    text-decoration: underline;
}

.blog-image {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border-radius: 5px;
}

.image-caption {
    font-style: italic;
    font-size: 13px;
    color: #666;
}

.blog-content {
    font-size: 18px;
    line-height: 1.8;
}

.blog-footer {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

.tag {
    font-size: 12px;
    font-weight: bold;
    background: #58536B;
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    margin-right: 5px;
}

.sidebar {
    background: #f9f9f9;
    border-radius: 5px;
}

.rgk_blog_sidebar_widget {
    margin-bottom: 20px;
}

.rgk_blog_sidebar_widget h5 {
    font-size: 18px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.rgk_blog_sidebar_widget ul {
    list-style: none;
    padding: 0;
}

.rgk_blog_sidebar_widget ul li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.rgk_blog_sidebar_widget ul li a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
}

.rgk_blog_sidebar_widget ul li a:hover {
    text-decoration: underline;
}

.social-media {
    margin-top: 20px;
}

.social-btn {
    display: inline-block;
    padding: 10px;
    color: #fff;
    font-size: 14px;
    margin-right: 5px;
    border-radius: 4px;
}
/* Ensure metadata aligns right & follows global style */
.rgk_blog_sidebar_widget small {
    display: flex;
    justify-content: flex-end; 
	
    align-items: center;
    gap: 8px; /* Space between elements */
    flex-wrap: wrap;
    font-size: 14px; /* Match global text size */
    font-weight: 500; /* Match global weight */
    color: #707381; /* Consistent muted gray */
}

/* Style the category and author links */
.rgk_blog_sidebar_widget small a {
    color: #151517; /* Ensure global link color */
    text-decoration: none;
    font-weight: 600; /* Match listing weight */
}

.rgk_blog_sidebar_widget small a:hover {
    color: #58536B; /* Soft hover effect */
    text-decoration: underline;
}

/* Ensure spacing between elements */
.rgk_blog_sidebar_widget small span,
.rgk_blog_sidebar_widget small time {
    white-space: nowrap;
}
.fb { background: #3b5998; }
.twitter { background: #1da1f2; }
.linkedin { background: #0077b5; }

.blog-content img {
    max-width: 100% !important; /* Ensures images don’t overflow */
    height: auto !important; /* Maintains aspect ratio */
    display: block; /* Prevents inline image issues */
    margin: auto; /* Centers images */
    object-fit: contain; /* Prevents distortion */
    border-radius: 4px; /* Optional: Adds rounded corners */
}






.search-btn,
.live-btn {
    background: transparent;
    border: none;
    font-size: 18px;
    color: var(--nav-text);
    cursor: pointer;
    transition: 0.3s;
}

.search-btn:hover,
.live-btn:hover {
    color: var(--nav-hover);
}

/* 🔴 LIVE Button */
.live-btn {
    color: var(--nav-accent);
}

/* 📌 Mobile Menu Button */
.nav-toggle {
    display: none;
    font-size: 22px;
    color: var(--nav-text);
    background: none;
    border: none;
    cursor: pointer;
}

/* 📌 Mobile Overlay */
.mobile-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--nav-bg);
    padding: 20px;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu a {
    display: block;
    padding: 12px;
    color: var(--nav-text);
    font-size: 18px;
    text-decoration: none;
}

.mobile-menu a:hover {
    color: var(--nav-hover);
}

/* 📌 Close Button */
.close-menu {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    font-size: 24px;
    color: var(--nav-text);
    border: none;
    cursor: pointer;
}

/* 📌 Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: flex;
    }
}

:root {
    --rgk_footer_bg: #F3F4F6; /* Light Grayish-Purple */
    --rgk_footer_text: #111827; /* Near Black for text */
    --rgk_footer_link: #1F2937; /* Dark Gray for links */
    --rgk_footer_hover: #4B5563; /* Slightly darker gray on hover */
    --rgk_footer_icon: #1F2937; /* Neutral Dark Icon Color */
    --rgk_footer_icon_hover: #D72638; /* Accent Red for hover */
}

/* 🌍 Footer Base */
.rgk_footer {
    background: var(--rgk_footer_bg);
    padding: 16px 20px;
    color: var(--rgk_footer_text);
    border-top: 1px solid #E5E7EB;
}

/* 🌍 Footer Container */
.rgk_footer_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* 📌 Logo & Tagline */
.rgk_footer_logo_section {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rgk_footer_logo {
    height: 40px;
}

.rgk_footer_tagline {
    font-size: 14px;
    color: var(--rgk_footer_text);
    margin: 0;
}

/* 📜 Footer Meta */
.rgk_footer_meta p {
    margin: 0;
    font-size: 13px;
}

.rgk_footer_meta a {
    color: var(--rgk_footer_link);
    text-decoration: none;
    transition: color 0.3s;
}

.rgk_footer_meta a:hover {
    color: var(--rgk_footer_hover);
}

/* 🌐 Social Media Icons */
.rgk_footer_social a {
    color: var(--rgk_footer_icon);
    font-size: 18px;
    margin-left: 12px;
    transition: color 0.3s;
}

.rgk_footer_social a:hover {
    color: var(--rgk_footer_icon_hover);
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
    .rgk_footer_container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .rgk_footer_meta p {
        font-size: 12px;
    }

    .rgk_footer_social a {
        margin: 0 6px;
    }
}

/* ✅ Category Section Styling */
.rgk_category_section {
    max-width: 1200px;
    margin: auto;
    /* padding: 40px 20px; */
}

.rgk_category_header {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 25px;
    color: #0E1427;
    text-transform: uppercase;
    border-bottom: 4px solid #393E51;
    padding-bottom: 8px;
}

/* ✅ Story Card */
.rgk_category_post {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

/* ✅ Image Wrapper with Fixed Heights */
.rgk_category_image_wrapper {
    width: 100%;
    height: 250px; /* Fixed height for uniformity */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.rgk_category_image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures aspect ratio is maintained */
    object-position: center;
}

/* ✅ Content Formatting */
.rgk_category_content {
    padding: 12px;
    flex-grow: 1;
}

.rgk_category_headline {
    font-size: 22px;
    font-weight: 700;
    color: #0E1427; /* Deep Navy */
    margin-bottom: 5px;
    line-height: 1.4;
}

/* ✅ Meta Info */
.article-meta {
    font-size: 14px;
    color: #707381; /* Muted Gray */
    font-family: 'Merriweather', serif;
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

/* ✅ Category, Author, Date */
.article-meta .category {
    font-size: 14px;
    font-weight: 600;
    color: #58536B;
    text-transform: capitalize;
    text-decoration: none;
}

.article-meta .author {
    font-size: 14px;
    font-weight: 500;
    color: #0E1427;
    text-decoration: none;
}

.article-meta .date {
    font-size: 13px;
    color: #9a9a9a;
    font-style: italic;
    font-weight: 400;
}

/* ✅ Separators */
.rgk_category_separator {
    border-top: 1px solid #E5E5E5;
    margin: 15px 0;
}

/* ✅ Responsive Grid */
@media (max-width: 1024px) {
    .col-lg-4 {
        width: 100%;
    }

    .rgk_category_image_wrapper {
        height: 200px; /* Adjust height for smaller screens */
    }
}

@media (max-width: 768px) {
    .rgk_category_image_wrapper {
        height: 180px;
    }
}

.rg_image_right_vertical_separator {
    border-left: 2px solid #ddd;
    padding-left: 20px;
}

.rg_image_right_header {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid black;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rg_image_right_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.rg_image_right_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 15px;
}

.rg_image_right_content {
    flex: 1;
}

.rg_image_right_category {
    font-size: 12px;
    color: #0F1428; /* Darker Navy */
    text-transform: uppercase;
    margin-bottom: 5px;
}

.rg_image_right_headline a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.rg_image_right_excerpt {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.article-meta a {
    font-size: 12px;
    color: #555;
}

.article-meta .date {
    font-size: 12px;
    color: #777;
}

.rg_image_right_image {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}

.rg_image_right_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 4px;
}

.rg_image_right_separator {
    border-top: 1px solid #ddd;
    margin: 15px 0;
}

@media (max-width: 768px) {
    .rg_image_right_item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 15px;
        padding-left: 14px;
    }

    .rg_image_right_image {
        width: 130px;
        height: 130px;
    }

    .rg_image_right_image img {
        width: 100%;
        height: 100%;
    }

    .rg_image_right_headline a {
        font-size: 16px;
    }

    .rg_image_right_excerpt {
        font-size: 14px;
    }
}

.reg_latest_blog_vertical_separator {
    border-left: 2px solid #ddd;
    padding: 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.reg_latest_blog_header {
    font-size: 24px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.reg_latest_blog_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.reg_latest_blog_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 10px;
}

.reg_latest_blog_content {
    flex: 1;
}

.reg_latest_blog_category {
    font-size: 12px;
    color: #0F1428;
    text-transform: uppercase;
    margin-bottom: 5px;
    font-weight: bold;
}

.reg_latest_blog_headline a {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.reg_latest_blog_excerpt {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
    line-height: 1.5;
}

.article-meta a {
    font-size: 12px;
    color: #555;
}

.article-meta .date {
    font-size: 12px;
    color: #777;
}

.reg_latest_blog_image {
    width: 130px;
    height: 130px;
    flex-shrink: 0;
}

.reg_latest_blog_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 6px;
}

.reg_latest_blog_separator {
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

/* ✅ Mobile Adjustments */
@media (max-width: 768px) {
    .reg_latest_blog_vertical_separator {
        border-left: none;
        padding: 10px;
    }

    .reg_latest_blog_item {
        flex-direction: row;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 5px;
    }

    .reg_latest_blog_image {
        width: 100px;
        height: 100px;
    }

    .reg_latest_blog_headline a {
        font-size: 16px;
    }

    .reg_latest_blog_excerpt {
        font-size: 14px;
    }

    .article-meta a, .article-meta .date {
        font-size: 12px;
    }
}

.trending_summary_section {
    background-color: #f9f9f9;
    padding: 18px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.trending_summary_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 2px solid #555;
    width: max-content;
}

.trending_summary_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trending_summary_item {
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.trending_summary_item a {
    font-size: 18px;
    color: #0F1428;
}

.trending_summary_item a:hover {
    text-decoration: underline;
}

.trending_summary_item small {
    font-size: 14px;
    color: #777;
}

.trending_summary_separator {
    border-top: 1px solid #e0e0e0;
    margin: 12px 0;
}

@media (max-width: 768px) {
    .trending_summary_section {
        padding: 14px 18px;
    }

    .trending_summary_title {
        font-size: 16px;
    }

    .trending_summary_item a {
        font-size: 14px;
    }

    .trending_summary_item small {
        font-size: 10px;
    }

    .trending_summary_item {
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .trending_summary_separator {
        margin: 10px 0;
    }
}
.related_summary_section {
    background-color: #f9f9f9;
    padding: 18px 24px;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

.related_summary_title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 16px;
    padding-bottom: 4px;
    border-bottom: 2px solid #555;
    width: max-content;
}

.related_summary_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related_summary_item {
    margin-bottom: 16px;
    padding-bottom: 10px;
}

.related_summary_item a {
    font-size: 16px;
    color: #0F1428;
}

.related_summary_item a:hover {
    text-decoration: underline;
}

.related_summary_item small {
    font-size: 12px;
    color: #777;
}

.related_summary_separator {
    border-top: 1px solid #e0e0e0;
    margin: 12px 0;
}

@media (max-width: 768px) {
    .related_summary_section {
        padding: 14px 18px;
    }

    .related_summary_title {
        font-size: 16px;
    }

    .related_summary_item a {
        font-size: 14px;
    }

    .related_summary_item small {
        font-size: 10px;
    }

    .related_summary_item {
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .related_summary_separator {
        margin: 10px 0;
    }
}


.hot-now-summary {
    background: #FCFCFD;
    padding: 18px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    border: 1px solid #e0e0e0;
    margin-top: 24px;
}

.hot-now-summary h5 {
    font-size: 18px;
    font-weight: 700;
    color: #0E0F25;
    border-bottom: 2px solid #665FD1;
    padding-bottom: 8px;
    margin-bottom: 16px;
}

.hot-now-summary .fa-ul {
    margin-left: 1em;
    padding-left: 0;
}

.hot-now-summary li {
    margin-bottom: 18px;
    color: #0F1428;
    padding-left: 0.3em;
    position: relative;
}

.hot-now-summary .hot-bullet-icon {
    color: #D72671;
    font-size: 10px;
    margin-top: 6px;
}

.hot-now-summary li .title {
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 6px;
    color: #0E0F25;
}

.hot-now-summary li .title:hover {
    color: #D72671;
    text-decoration: underline;
}

.hot-now-summary li small.meta {
    display: block;
    font-size: 13px;
    color: #707381;
    font-style: italic;
    margin-top: 4px;
}

.hot-now-summary .separator {
    border-top: 1px dotted #D0D5DC;
    margin: 10px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hot-now-summary {
        padding: 14px 16px;
    }

    .hot-now-summary h5 {
        font-size: 16px;
    }

    .hot-now-summary li .title {
        font-size: 15px;
    }

    .hot-now-summary li small.meta {
        font-size: 12px;
    }
    .hot-now-summary li {
    transition: background 0.2s ease;
}
.hot-now-summary li:hover {
    background: #f9f9fb;
}
}

:root {
    --rgk_nav_june_2025_bg: linear-gradient(90deg, #0E1427, #58536B, #D72638, #1DA1F2);
    --rgk_nav_june_2025_text: #FFFFFF;
    --rgk_nav_june_2025_hover: #FF4C61;
  }

  .rgk_nav_sticky_wrapper {
    position: sticky !important;
    top: 0 !important;
    z-index: 1050 !important;
  }

  .rgk_nav_june_2025_navbar {
    background: var(--rgk_nav_june_2025_bg) !important;
    padding: 12px 20px !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.15) !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(6px);
  }

  .rgk_nav_june_2025_navbar.rgk-shrink {
    padding: 6px 20px !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15) !important;
  }

  .rgk_nav_june_2025_logo {
    height: 45px !important;
    transition: height 0.3s ease;
  }

  .rgk_nav_june_2025_navbar.rgk-shrink .rgk_nav_june_2025_logo {
    height: 38px !important;
  }

  .rgk_nav_june_2025_link {
    color: var(--rgk_nav_june_2025_text) !important;
    font-weight: 500 !important;
    font-size: 14.5px !important;
    padding: 8px 12px !important;
    border-radius: 5px;
    transition: background-color 0.2s ease !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .rgk_nav_june_2025_link:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: var(--rgk_nav_june_2025_hover) !important;
  }

  .navbar-toggler {
    border-color: #fff !important;
  }

  .navbar-toggler-icon {
    filter: brightness(100) invert(1) !important;
  }

  .navbar .dropdown-menu {
    z-index: 9999 !important;
    position: absolute !important;
  }

  .rgk_nav_june_2025_link i {
    font-size: 16px !important;
    vertical-align: middle;
  }

  @media (max-width: 991.98px) {
    .navbar-collapse {
      background-color: var(--rgk_nav_june_2025_bg) !important;
      padding: 1rem !important;
    }
    .rgk_nav_june_2025_logo {
      height: 40px !important;
    }
  }

  .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
    border-radius: 4px;
  }

  .dropdown-item.active {
    background-color: #f8f9fa;
    font-weight: 600;
  }

  

  /* 🧱 Container Wrapper */
.top_stories_level_2_wrapper {
  border-left: 2px solid #ddd;
  padding: 20px;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* 📰 Card Layout */
.top_stories_level_2_card {
  display: flex;
  gap: 18px;
  padding: 10px;
  border-radius: 6px;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

/* 📷 Image Container */
.top_stories_level_2_image {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
}

.top_stories_level_2_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
  display: block;
}

/* 📝 Content */
.top_stories_level_2_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* 🗞️ Headline */
.top_stories_level_2_headline a {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}

.top_stories_level_2_headline a:hover {
  text-decoration: underline;
}

/* 📅 Metadata */
.article-meta {
  font-size: 13px;
  color: #707381;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: 'Merriweather', serif;
}

.article-meta a {
  font-weight: 600;
  color: #58536B;
  text-decoration: none;
}

.article-meta .date {
  font-style: italic;
  color: #999;
}

/* 🔴 Badges */
.top_stories_2025_may_badge {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 2px 6px;
  margin-right: 6px;
  border-radius: 3px;
  vertical-align: middle;
}

.top_stories_2025_may_badge.live {
  background-color: #D72638;
  color: #fff;
}

.top_stories_2025_may_badge.breaking {
  background-color: #FF9800;
  color: #fff;
}




/* 📏 Row Spacing */
.top_stories_level_2_wrapper .row > div {
  margin-bottom: 24px;
}

/* 🪟 Responsive Adjustments */
@media (max-width: 992px) {
  .top_stories_level_2_image {
    width: 100px;
    height: 100px;
  }

  .top_stories_level_2_headline a {
    font-size: 16px;
  }

  .article-meta {
    font-size: 12px;
  }

  .top_stories_level_2_card {
    padding: 8px;
    gap: 12px;
  }
}


#floating-radio-player {
    position: fixed;
    bottom: 10px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(90deg, #1f1f2e, #cc1e3a, #5a4fcf); /* Based on your nav gradient */
    color: #fff;
    padding: 12px 16px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    max-width: 320px;
    width: 90vw;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
}

.radio-player-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.radio-title {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
    text-align: center;
    color: #00ffcc;
}

#radioAudio {
    width: 100%;
    outline: none;
    border-radius: 8px;
}

 .top-stories-img-16x9, .top-stories-img-1x1 {
        position: relative;
        width: 100%;
        overflow: hidden;
        background-color: #f4f4f4;
    }

    .top-stories-img-16x9 {
        padding-top: 56.25%; /* 16:9 ratio */
    }

    .top-stories-img-1x1 {
        width: 96px;
        padding-top: 100%; /* 1:1 */
    }

    .top-stories-img-16x9 img,
    .top-stories-img-1x1 img {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        border-radius: 0.25rem;
    }

    .badge {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    a:hover {
        color: #d72638;
        text-decoration: underline;
    }

    h2, h3, h4 {
        color: #0E1427;
    }
    /* ✅ Responsive Typography Adjustments */
@media (max-width: 768px) {
  html, body {
    font-size: 15px;
    line-height: 1.6;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }
  h5, h6 { font-size: 16px; }

  .news-title,
  .hero_feature_trending_grid_headline,
  .mosaic_pinterest_layout_headline,
  .espn_style_grid_layout_headline {
    font-size: 18px;
  }

  .article-meta,
  .news-excerpt,
  .rgk_header_section_3_excerpt,
  .rgk_section_3_headline_small h4,
  .top_stories_level_2_headline a,
  .related_summary_item a,
  .trending_summary_item a,
  .rgk_category_headline {
    font-size: 14px;
    line-height: 1.5;
  }

  .article-meta .date,
  .article-meta .author,
  .article-meta .category {
    font-size: 12px;
  }

  .badge,
  .badge-live,
  .badge-breaking {
    font-size: 10px;
    padding: 3px 6px;
  }

  .radio-title {
    font-size: 0.9rem;
  }

  .rgk_nav_june_2025_link {
    font-size: 13.5px !important;
  }
}