/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Hind Siliguri", sans-serif;
}
a{
  text-decoration: none;
  color: #14532d;
}
a:hover{
  text-decoration: none;
  color: #000000;
}
body {
  background: #f5f6f7;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #0b1c2c;
  color: #cbd5e1;
  font-size: 13px;
  padding: 6px 0;
}
.top-bar .right a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

/* ===== HEADER ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
  padding: 12px 0;
  transition: .3s;
}

.logo img {
  height: 50px;
}

/* NAV */
.nav-menu {
  gap: 35px;
  position: relative;
}
.nav-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

/* ===== DROPDOWN FIX ===== */
/* .nav-menu a:nth-child(2){
  position: relative;
} */
.category-wrapper:hover .category-dropdown{
  display:block;
}
/* DROPDOWN MENU */
.category-dropdown{
  position:absolute;
  top:50px;
  left:0;
  width:220px;
  background:#fff;
  border-radius:10px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  padding:10px 0;
  display:none;
  z-index:9999;
}

.category-dropdown a{
  display:block;
  padding:10px 20px;
  color:#333;
}

.category-dropdown a:hover{
  background:#f1f5f9;
}

.category-dropdown .active{
  background:#1d6054;
  color:#fff;
}

/* SHOW DROPDOWN */
.nav-menu a:nth-child(2):hover + .category-dropdown,
.category-dropdown:hover{
  display:block;
}

/* NAV BAR */
.nav-bar {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* MENU */
.menu li {
  list-style: none;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  color: #1e293b;
  transition: 0.2s;
}
.menu li:hover {
  color: #14532d;
}

/* ICON AREA */
.header-icons {
  min-width: 300px;
  justify-content: flex-end;
}

.normal-icons i,
.nav-icons i {
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding: 0px 10px;
}

/* SEARCH ACTIVE */
.search-active {
  display: none;
  align-items: center;
  width: 100%;
  justify-content: flex-end;
}
.search-active.active {
  display: flex;
}
.normal-icons.hide {
  display: none;
}

/* SEARCH INPUT */
.search-input {
  width: 420px;
  max-width: 100%;
  border: 1px solid #ddd;
  padding: 10px 16px;
  border-radius: 10px;
  outline: none;
  font-size: 15px;
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: none;
  justify-content: center;
  padding-top: 80px;
  z-index: 99999;
}
.search-overlay.active {
  display: flex;
}

.search-box {
  width: 90%;
  max-width: 600px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #ddd;
}

.close-search,
.search-close {
  cursor: pointer;
}

/* NOTIFICATION */
.notification {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #0d6b57;
  color: #fff;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 50%;
}
.mobile-submenu li{
  padding-left:10px;
}

.mobile-submenu a{
  color:#333;
}
/* ===== BREAKING BAR ===== */
.breaking-bar {
  background: #1d6054;
  padding: 10px 0;
  overflow: hidden;
}
.breaking-label {
  background: #fff;
  color: #1d6054;
  padding: 4px 12px;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 20px;
}

/* TICKER */
.ticker-wrapper {
  overflow: hidden;
  width: 100%;
}
.ticker-track {
  display: flex;
  gap: 60px;
  animation: tickerMove 18s linear infinite;
}
.ticker-item {
  color: #fff;
  font-size: 16px;
  white-space: nowrap;
}
.ticker-item::after {
  content: "|";
  margin-left: 60px;
}
.ticker-item a{
  color: #fff !important;
}

@keyframes tickerMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE MENU IMPROVED */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100%;
  background: #fff;
  z-index: 99999;
  transition: 0.3s;
  padding: 20px;
  border-radius:12px 0 0 12px;
}
.mobile-menu.active {
  right: 0;
}

.mobile-menu li {
  list-style: none;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

.mobile-menu li.active{
  background:#f1f5f9;
  border-radius:8px;
  padding-left:10px;
}

/* BACKDROP */
.menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: none;
}
.menu-backdrop.active {
  display: block;
}

/* RESPONSIVE */
@media(max-width:991px){
  .nav-menu {
    display:none !important;
  }
  .search-input {
    width: 200px;
  }
}

/* HERO SECTION START */
/* HERO SECTION */
.hero-slider {
  border-radius: 16px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
}

.hero-slide img {
  height: 420px;
  object-fit: cover;
}

/* OVERLAY */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

.hero-overlay h2 {
  font-size: 28px;
  font-weight: 700;
}

.hero-overlay p {
  font-size: 14px;
  opacity: 0.9;
}

.category {
  background: #1d6054;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 10px;
}

/* CONTROLS */
.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
}

/* RIGHT SIDE */
.side-news {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-card {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  gap: 10px;
  align-items: center;
}

.news-card img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

.news-card h6 {
  font-size: 15px;
  margin: 5px 0;
  font-weight: 500;
}
.news-card h6 a {
  color: #14532d;
}
.news-card h6 a:hover {
  color: #000;
}


.tag {
  background: #e6f4f1;
  color: #1d6054;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}

/* TRENDING */
.trending-header .icon {
  background: #1d6054;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  margin-right: 10px;
}

/* TAGS */
.trending-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.trending-tags span {
  background: #eef2f7;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}
.trending-tags b {
  background: #dbeafe;
  padding: 2px 6px;
  border-radius: 10px;
  margin-left: 5px;
  font-size: 12px;
}

/* CARD */
.trend-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}
.trend-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.img-box {
  position: relative;
}
.img-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* RANK */
.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d6054;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* VIEWS */
.views {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 3px 8px;
  border-radius: 8px;
  font-size: 12px;
}

/* CONTENT */
.content {
  padding: 12px;
}
.cat {
  display: inline-block;
  background: #e6f4f1;
  color: #1d6054;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}
.content h6 {
  margin-top: 6px;
  font-size: 15px;
  line-height: 1.4;
}
.content h6 a {
    color: #000;
    font-weight: 500;
}

/* SECTION TITLE */
.section-title h5 {
  border-left: 4px solid #1d6054;
  padding-left: 10px;
  font-weight: 700;
}

/* NEWS CARD */
.news-card-lg {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: .3s;
}
.news-card-lg:hover {
  transform: translateY(-5px);
}

.news-card-lg img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.news-card-lg .content {
  padding: 12px;
}
.news-card-lg h6 {
  font-size: 16px;
  margin: 5px 0;
}
.news-card-lg p {
  font-size: 13px;
  color: #555;
}

/* SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

.ad-box {
  text-align: center;
}
.ad-inner {
  background: #eef2f7;
  padding: 30px;
  border-radius: 10px;
}

/* LIST */
.side-list {
  padding-left: 0;
}
.side-list li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

/* STATS */
.stat {
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  text-align: center;
  font-size: 13px;
}
.stat.blue { background: #2563eb; }
.stat.sky { background: #0ea5e9; }
.stat.red { background: #dc2626; }
.stat.dark { background: #1e293b; }

/* HEADER ICON */
.rep-icon {
  background: #1e293b;
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}

/* CARD */
.rep-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
}
.rep-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.img-wrap {
  position: relative;
  margin-bottom: 10px;
}
.img-wrap img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
}

/* AGE */
.age {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #1d6054;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
}

/* ROLE */
.role {
  display: inline-block;
  background: #0f172a;
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
  font-size: 12px;
  margin: 6px 0;
}

/* META */
.meta {
  margin-top: 10px;
  font-size: 13px;
  color: #555;
}
.meta div {
  margin-top: 4px;
}

/* STATS */
.stats-banner {
  background: linear-gradient(90deg, #1d6054, #0f172a);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}
.stats-banner h4 {
  font-weight: 700;
}
.stats-banner p {
  font-size: 14px;
  opacity: 0.9;
}

/* ICON */
.op-icon {
  background: #e6f4f1;
  color: #1d6054;
  padding: 10px;
  border-radius: 10px;
}

/* CARD */
.op-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s;
}
.op-card:hover {
  transform: translateY(-5px);
}

/* AUTHOR */
.author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 10px;
}

/* TITLE */
.op-card .title {
  font-size: 18px;
  font-weight: 600;
}

/* TEXT */
.op-card p {
  font-size: 14px;
  color: #555;
}

/* BOTTOM */
.op-card .bottom a {
  color: #1d6054;
  font-weight: 500;
  text-decoration: none;
}

/* QUOTE */
.quote {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 40px;
  color: #e5e7eb;
}

/* CTA */
.op-cta {
  background: #eef3f1;
  padding: 20px 25px;
  border-radius: 14px;
}
.op-cta h6 {
  margin-bottom: 4px;
}

/* FOOTER */
.footer-section {
  background: linear-gradient(90deg, #0f172a, #1d2939);
  color: #cbd5e1;
}

.footer-logo img {
  height: 60px;
}

/* TEXT */
.footer-text {
  font-size: 14px;
  line-height: 1.6;
  max-width: 300px;
}

/* LINKS */
.footer-section h6 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-section ul {
  padding-left: 0;
}
.footer-section ul li {
  list-style: none;
  padding: 6px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.footer-section ul li:hover {
  color: #22c55e;
}

/* SOCIAL */
.social-icons {
  display: flex;
  gap: 10px;
}
.social-icons span {
  width: 35px;
  height: 35px;
  background: #1e293b;
  border-radius: 6px;
  display: inline-block;
  cursor: pointer;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* SINGLE NEWS */
/* TITLE */
.news-title {
    font-size: 25px;
    font-weight: 700;
}

/* SUBTITLE */
.subtitle {
  color: #555;
  font-size: 16px;
}

/* AUTHOR */
.author-box img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.actions button {
  border: 1px solid #ddd;
  background: #fff;
  padding: 6px 10px;
  margin-left: 5px;
  border-radius: 6px;
}

/* IMAGE */
.featured-img img {
  width: 100%;
  border-radius: 12px;
}

/* AD */
.ad-box {
  background: #eef2f7;
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  color: #888;
}

/* CONTENT */
.news-content {
  font-size: 18px;
  line-height: 1.8;
}
.news-content ul {
  padding-left: 20px;
}

/* TAGS */
.tags span {
  background: #eef2f7;
  padding: 4px 10px;
  margin-right: 5px;
  border-radius: 6px;
}

/* SHARE */
.share-box button {
  border: none;
  padding: 8px 12px;
  margin-right: 5px;
  border-radius: 6px;
  color: #fff;
}
.fb { background:#1877f2; }
.tw { background:#1da1f2; }
.wa { background:#25d366; }
/* RELATED */
.related-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  transition: 0.3s;
}
.related-card:hover {
  transform: translateY(-5px);
}

/* IMAGE */
.related-card .img-box {
  position: relative;
}
.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* CATEGORY */
.related-card .cat {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #1d6054;
  color: #fff;
  font-size: 12px;
  padding: 3px 8px;
  border-radius: 6px;
}
.sidbar-title h6 {
    border-left: 4px solid #1d6054;
    padding-left: 10px;
    font-weight: 700;
}

/* CONTENT */
.related-card .content {
  padding: 12px;
}
.related-card h6 {
  font-size: 16px;
  margin-bottom: 5px;
}
.related-card small {
  color: #777;
  font-size: 13px;
}
/*Archive HERO */
.category-hero {
  background: #e11d1d;
  color: #fff;
  padding: 40px 0;
}
.category-hero h1 {
  font-size: 36px;
  font-weight: 700;
}

/*Archive CARD */
.archive-card {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  gap: 15px;
  border: 1px solid #e6e9e8;
  display: flex;
}

/* Desktop image */
.archive-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .archive-card {
    flex-direction: column;
  }

  .archive-card img {
    width: 100%;
    height: auto;
  }
}

.archive-card .cat {
  background: #e6f4f1;
  color: #1d6054;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 12px;
}

.archive-card h5 a {
  margin: 5px 0;
  font-size: 18px;
  color: #1d6054;
  font-weight: 700;
}
.archive-card h5 a:hover{
  color: #000;
}
.archive-card p {
  font-size: 14px;
  color: #555;
}

/*Archive  SIDEBAR */
.sidebar-box {
  background: #fff;
  padding: 15px;
  border-radius: 12px;
}

.trend-list {
  padding-left: 0;
}
.trend-list li {
  list-style: none;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}
.trend-list li a{
  color: #0d6b57;
  font-weight:500;
}
.trend-list li a:hover{
  color: #000000;
}

/*Archive PAGINATION */
.pagination-box button {
  margin: 3px;
  padding: 6px 10px;
  border: none;
  background: #eee;
  border-radius: 6px;
}
.pagination-box .active {
  background: #1d6054;
  color: #fff;
}
.pagination-box ul {
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 5px;
}

.pagination-box li {
  display: inline;
}

.pagination-box a,
.pagination-box span {
  padding: 6px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #333;
}

.pagination-box .current {
  background: #1d6054;
  color: #fff;
  border-color: #1d6054;
}
/* ===== HERO ===== */
.rep-hero{
  background: linear-gradient(90deg,#1d2939,#0f172a);
  color:#fff;
  padding:50px 0;
}
.rep-hero h1{
  font-size:36px;
  font-weight:700;
}
.rep-hero p {
    opacity: .8;
    font-size: 16px;
}

/* STATS */
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
  margin-top:20px;
}
.stats-grid div{
  background:rgba(255,255,255,0.1);
  padding:15px;
  border-radius:12px;
  text-align:center;
}
.stats-grid span{
  display:block;
  font-size:13px;
  opacity:.7;
}

/* ===== FILTER ===== */
.rep-filter{
  display:flex;
  gap:12px;
  background:#eef2f7;
  padding:12px;
  border-radius:14px;
  margin-top:-25px;
}

/* SEARCH */
.filter-box{
  flex:1;
  position:relative;
}
.filter-box i{
  position:absolute;
  left:12px;
  top:50%;
  transform:translateY(-50%);
  color:#888;
}
.filter-box input{
  width:100%;
  padding:10px 12px 10px 35px;
  border:none;
  border-radius:10px;
  outline:none;
}

/* SELECT */
.rep-filter select{
  padding:10px;
  border-radius:10px;
  border:none;
}

/* BUTTON */
.filter-btn{
  background:#fff;
  border:none;
  padding:10px 15px;
  border-radius:10px;
  font-weight:500;
}

/* ===== CARD ===== */
.rep-card{
  display:block;
  text-decoration:none;
  color:inherit;
  background:#fff;
  padding:20px;
  border-radius:16px;
  text-align:center;
  border:1px solid #e5e7eb;
  transition:.3s;
}

/* HOVER */
.rep-card:hover{
  transform:translateY(-6px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
  border-color:transparent;
}

/* IMAGE */
.img-wrap{
  position:relative;
  width:90px;
  height:90px;
  margin:0 auto 10px;
}
.img-wrap img{
  width:100%;
  height:100%;
  border-radius:50%;
  border: 4px solid #1e293b2e;
}

/* AGE */
.age {
    position: absolute;
    bottom: -2px;
    left: 80%;
    transform: translateX(-50%);
    background: #1d6054;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 10px;
    width: 65px;
}

/* ROLE */
.role{
  display:inline-block;
  background:#0f172a;
  color:#fff;
  padding:4px 10px;
  border-radius:8px;
  font-size:12px;
  margin:6px 0;
}

.rep-card p{
  font-size:13px;
  margin:3px 0;
  color:#555;
}

/* ===== MOBILE ===== */
@media(max-width:991px){
  .stats-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .rep-filter{
    flex-direction:column;
  }
}

@media(max-width:576px){
  .stats-grid{
    grid-template-columns:1fr;
  }
  .rep-hero h1{
    font-size:24px;
  }
}
/* ===== HERO ===== */
.rep-hero{
  background: linear-gradient(90deg,#1d2939,#0f172a);
  color:#fff;
  padding:40px 0;
}

.hero-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LEFT */
.hero-left{
  display:flex;
  gap:20px;
  align-items:center;
}

.hero-left img{
  width:110px;
  height:110px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,0.2);
}

.hero-left h1{
  font-size:32px;
  font-weight:700;
}

/* ROLE */
.role{
  background:#1d6054;
  padding:4px 10px;
  border-radius:8px;
  font-size:13px;
  display:inline-block;
  margin:6px 0;
}

/* META */
.meta{
  display:flex;
  gap:15px;
  font-size:13px;
  opacity:.85;
  color: #fff;
}

/* DESC */
.desc{
  margin-top:8px;
  max-width:500px;
  opacity:.9;
}

/* RIGHT */
.hero-right{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.stat-box{
  background:rgba(255,255,255,0.08);
  padding:15px;
  border-radius:10px;
  text-align:center;
  width:80px;
}

.stat-box h4{
  margin:0;
}

/* ===== TABS ===== */
.tab-nav{
  display:flex;
  gap:10px;
  background:#eef2f7;
  padding:8px;
  border-radius:12px;
  margin-top:20px;
}

.tab-btn{
  flex:1;
  text-align:center;
  padding:10px;
  border-radius:10px;
  cursor:pointer;
  font-size:14px;
  transition:.3s;
}

.tab-btn i{
  margin-right:5px;
}

.tab-btn.active{
  background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,0.05);
}

/* CONTENT */
.tab-content{
  display:none;
}
.tab-content.active{
  display:block;
}

/* CARD */
.card-box{
  background:#fff;
  padding:20px;
  border-radius:12px;
}
.rep-about {
    font-size: 20px;
    font-weight: 700;
    border-left: 4px solid #1d6054;
    padding: 0px 5px;
    color: #0f172a;
}

/* TIMELINE */
.timeline ul{
  padding-left:0;
}
.timeline li{
  list-style:none;
  padding-left:20px;
  position:relative;
  margin-bottom:10px;
}
.timeline li::before{
  content:'';
  width:8px;
  height:8px;
  background:#1d6054;
  border-radius:50%;
  position:absolute;
  left:0;
  top:6px;
}

/* NEWS */
.news-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
}
.news-card img{
  width:100%;
  height:160px;
  object-fit:cover;
}
.news-card h6{
  padding:10px;
}

/* ALERT */
.alert-box{
  background:#fff3cd;
  padding:15px;
  border-radius:10px;
  margin-top:15px;
}

/* COMPLAIN */
.complain-item{
  background:#fff;
  padding:15px;
  border-radius:10px;
  margin-top:10px;
}

/* REVIEW */
.review-item{
  background:#fff;
  padding:15px;
  border-radius:10px;
  margin-top:10px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .hero-inner{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .hero-left{
    flex-direction:column;
  }

  .meta{
    flex-wrap:wrap;
    justify-content:center;
  }

  .hero-right{
    flex-direction:row;
    justify-content:center;
    margin-top:15px;
  }

  .tab-nav{
    flex-direction:column;
  }

}
.news-card-lg {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card-lg:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

/* ===== HERO ===== */
.op-hero{
  background:linear-gradient(90deg,#1d2939,#0f172a);
  color:#fff;
  padding:50px 0 100px;
}
.op-hero h1{
  font-size:34px;
  font-weight:700;
}
.op-hero p{
  opacity:.85;
}

/* ===== FEATURED ===== */
.featured-wrap{
  margin-top:-70px;
}

.featured{
  background:#fff;
  border-radius:20px;
  display:flex;
  overflow:hidden;
  min-height:340px;
}

/* LEFT */
.featured-left{
  flex:1;
  padding:35px;
}

/* QUOTE */
.quote{
  font-size:40px;
  color:#cbd5d1;
}

/* BADGE */
.badge-custom{
  background:#eef2f7;
  padding:6px 12px;
  border-radius:20px;
  font-size:12px;
  margin-left:10px;
}

/* TITLE */
.featured-left h3{
  font-size:26px;
  font-weight:700;
  margin:15px 0;
}

/* TEXT */
.featured-left p{
  color:#555;
  font-size:15px;
}

/* AUTHOR */
.author{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:15px;
}
.author img{
  width:50px;
  height:50px;
  border-radius:50%;
}

/* BUTTON */
.read-btn{
  margin-top:20px;
  background:#1d6054;
  color:#fff;
  padding:12px 22px;
  border-radius:10px;
  border:none;
}

/* IMAGE */
.featured-right{
  width:45%;
}
.featured-right img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ===== SECTION TITLE ===== */
.ideology_section_title{
  font-weight:700;
  margin:50px 0 25px;
  padding-left:10px;
  position:relative;
  font-size:22px;
  border-left: 4px solid #1d6054;
}
/* .section-title::before{
  content:'';
  width:4px;
  height:22px;
  background:#1d6054;
  position:absolute;
  left:0;
  top:4px;
} */

/* ===== COLUMNIST ===== */
.columnist{
  background:#fff;
  border-radius:16px;
  padding:30px 20px;
  text-align:center;
  border:1px solid #e6e8eb;
  transition:.3s;
  height:100%;
}
.columnist:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}
.columnist img{
  width:80px;
  height:80px;
  border-radius:50%;
  margin-bottom:12px;
  transition:.3s;
}
.columnist:hover img{
  border:3px solid #1d6054;
  padding:3px;
}
.columnist h6{
  font-weight:700;
}
.columnist small{
  display:block;
  color:#6b7280;
}
.columnist small:last-child{
  color:#1d6054;
}

/* ===== OPINION ===== */
.op-card{
  background:#fff;
  border-radius:16px;
  padding:22px;
  border:1px solid #e6e8eb;
  transition:.3s;
  height:100%;
}
.op-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 25px rgba(0,0,0,0.08);
}
.op-meta{
  font-size:13px;
  color:#6b7280;
  display:flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
}
.op-card h6{
  font-weight:700;
  font-size:18px;
  transition:.3s;
}
.op-card:hover h6{
  color:#1d6054;
}
.op-card p{
  font-size:14px;
  color:#6b7280;
}

/* BUTTON CENTER */
.center-btn{
  text-align:center;
  margin-top:25px;
}

/* ===== MOBILE ===== */
@media(max-width:768px){

  .featured{
    flex-direction:column;
  }

  .featured-right{
    width:100%;
    height:200px;
  }

}