/* Wrapper */
.featured-news-layout {
	display: flex;
    width: 95%;
    margin-left: auto;
    align-items: center;
}
.featured-news-content {
    width: 50%;   
}
.featured_data {
    width: 75%;
    display: flex;
    flex-direction: column;
    margin-right: auto;
    justify-content: center;
}
/* Meta info (date + category) */
.featured-news-layout .news-metas {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 15px;
	font-size: 18px;
	color: #000;
	font-weight: 500;
	line-height: 35px;
	border-bottom: 1px solid;
    padding-bottom: 10px;
}
.news-category {
	font-weight: 600;
	color: #111;
}
/* Title */
.news-title {
    font-size: 40px !important;
    line-height: 52px !important;
    margin: 10px 0 50px;
    font-weight: 700 !important;
}
/* Read More Button */
.news-readmore {
    display: inline-flex;
    position: relative;
    align-items: center;
    gap: 8px;
    background-color: #ff9900;
    color: #000;
    padding: 10px 20px;
    border-radius: 6px;
    width: 220px;
}
.news-readmore:hover {
  background: #e05500;
}
.news-readmore .arrow {
  margin-left: 6px;
}
.featured-news-image {
    width: 50%;
    margin-bottom: 130px;
}
.news-grid-section {
    width: 100%;
    padding: 0px 60px 0px 60px;
}
/* Filter header (All | Technology | Insights) */
.news-category-filter-header {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}
.news-category-filter-header a {
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    color: #222;
    text-decoration: none;
    position: relative;
    padding-right: 20px;
    line-height: 55px;
}
.news-category-filter-header a.force-active {
    color: #000000;
    font-weight: 900;
}
.news-category-filter-header a.force-active:before {
    content: "";
    background: #ffffff;
    width: 15px;
    height: 15px;
    border: 3px solid #FF9E26;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle; /* aligns with text */
    position: relative;
    top: -1px; /* fine-tune vertical alignment */
}
/* ====== News Grid Wrapper ====== */
.news-grid-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}
/* ====== Individual News Card ====== */
.news-grid-item {
    display: flex;
    align-items: stretch;
    gap: 20px;
    background: #EDEDED;
    padding: 20px 20px 20px 0px;
    transition: box-shadow 0.3s ease;
    position: relative;
}
.news-grid-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Image */
.news-image {
/*    flex: 0 0 250px; */	
    max-width: 250px;
	width: 35% !important;
}
.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 2px;
}
/* Content */
.right-news-content {
    width: 70%;
}
.news-contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.news-grid-section .news-metas {
	font-size: 15px;
    line-height: 40px;
    color: #000000;
    border-bottom: 1px solid #575757;
    font-weight: 500;
    position: absolute;
    right: 40px;
}
.news-metas .news-category {
    font-weight: 500;
}
.news-headlines {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}
.news-headlines a:hover {
    color: #f26522;
}
/* Button */
.news-button .read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FF9E26;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.3s;
}
.news-button .read-more:hover {
    background: #FF9E26;
}
.news-button .read-more::after {
    content: "➔";
    font-size: 12px;
    margin-left: 5px;
}
h3.news-headlines {
    margin-top: 90px;
    margin-left: 30px;
    font-size: 25px !important;
    line-height: 32px !important;
    font-weight: 700 !important;
}
h3.news-headlines a {
    display: block;
}
.featured-news-bg {
    position: relative;
    width: 85%;
    margin-left: auto;
}
.featured-news-thumb {
    position: absolute;
    top: 70px;
    right: 14%;
    width: 32%;
}
.news-grid-item .news-button {
    margin-left: 30px;
    margin-top: 40px;
}
.fusion-fullwidth.news_1st_sec {
    padding: 0px;
}

/* Responsive */
@media (max-width: 768px) {
	  .featured-news-layout {
		  width: 100%;
		  flex-direction: column;
	  }
	  .featured-news-content {
		  width: 100%;
		  order: 2;
	  }
	  .featured-news-image {
		  width: 100%;
		  order: 1;
	  }
	.featured-news-thumb {	
		position: relative;
        right: unset;
        width: 85%;
        margin: 0 auto;
        top: 130px;
	}
	.featured-news-bg {
		position: absolute;
		width: 75%;
		margin-left: auto;
		right: 0;
		top: 0;
	}
	.featured_data {
		width: 85%;
		margin: 0 auto;
	}	
	.featured-news-layout .news-metas {
		flex-flow: column;
		align-items: flex-start;
		margin-top: 15px;
	}
	.news-title {
		font-size: 20px !important;
		line-height: 32px !important;
		margin-bottom: 30px;
	}
	.news-grid-section {
		padding: 0px 0px 0px 0px;
	}
	.news-category-filter-header {
        flex-flow: column;
        gap: 0px;
        border-bottom: unset;
        width: 85%;
        margin: 0 auto 60px;
	}
	.news-category-filter-header a {
		font-size: 16px;		
		line-height: 44px;
		border-bottom: 1px solid #70707078;
		padding-left: 20px;
	}
	.news-category-filter-header a.force-active {
		padding-left: 0px;
	}
	.news-grid-wrapper {
		display: block;		
		margin-bottom: 0px;
	}
	.news-grid-item {
		flex-flow: column;
		margin-bottom: 30px;
		padding: 0px 0px 40px;
	}
	.fusion-fullwidth.news_2nd_sec {
		padding: 0px;
	}
	.news-grid-section .news-metas {		
		position: relative;
		right: unset;
	}
	h3.news-headlines {
		margin-top: 30px;	
		margin-left: 0px;
	}
	.news-grid-item .news-button {
		margin-left: 0px;	
		margin-top: 20px;
	}
	.right-news-content {
		width: 100%;
	}
	.news-contents {
		width: 85%;
		margin: 0 auto;
	}
	.news-image {
		max-width: 100%;
        width: 85% !important;
        padding-top: 40px;
        margin: 0 auto;
	}
}

@media (max-width: 576px) {
	h3.news-headlines {
		font-size: 20px !important;
		line-height: 28px !important;		
	}
}

@media (min-width: 769px) and (max-width: 1270px) {
	.news-grid-wrapper {
		grid-template-columns: none;
	}
	h3.news-headlines {
		margin-top: 70px;		
	}
	.news-grid-item .news-button {
		margin-top: 20px;
	}
}

@media (min-width: 769px) and (max-width: 992px) {
	.news-title {
		font-size: 24px !important;
		line-height: 30px !important;
		margin: 10px 0 30px;
	}
	.featured-news-layout .news-metas {
		font-size: 14px;
	}
	.featured_data {
		width: 85%;		
	}
}

@media (min-width: 993px) and (max-width: 1200px) {
	.featured_data {
		width: 85%;		
	}
	.news-title {
		font-size: 30px !important;
		line-height: 40px !important;		
		margin: 10px 0 30px;
	}
}

@media (min-width: 1201px) and (max-width: 1700px) {
	.news-title {
	   font-size: 36px !important;
	   line-height: 42px !important;
	}	
	.featured_data {
		width: 80%;		
	}
	h2.news-title {
		width: 95%;
	}
}

