
    :root {
  --bg-light: #ffffff;
  --bg-dark: #1a1a1a;
  --text-light: #000000;
  --text-dark: #ffffff;
  --border-color: #ccc;
  --bg-dark: #1a1a1a;      /* deep gray or black */
  --text-dark: #ffffff;    /* white text */
  --border-dark: #444444;  /* optional, for borders */
    }

    body {
      margin: 0;
      font-family: sans-serif;
      transition: background-color 0.3s, color 0.3s;
      background-color: var(--bg-light);
      color: var(--text-light);
      overflow-x: hidden;
      border: 1px solid gainsboro;
      padding: 3px 60px;
    }
    body.dark .sun, 
   body.dark .moon{
     filter: brightness(0) invert(1);
    }
    
    body.dark * {
    color: var(--text-dark) !important;
    border-color: var(--border-dark) !important; /* if you use borders */
    }
    body.dark .logo {
  filter: brightness(0) invert(1);
}
body.dark .det-side-sec-layout-title
{
  background-color: #000;
}

/* Optional background on specific sections */
body.dark .tredndin-sec-news-column {
  background-color: #000000; /* slightly lighter than body for contrast */
}
body.dark .icon{ 
   filter: brightness(0) invert(1);
}
    body.dark {
      background-color: #000000;
      color: var(--text-dark);
      }



 /* Mobile Styles */
.mobile-menu-button {
  display: none;
  padding: 10px 16px;
  font-weight: bold;
  background: #333;
  color: white;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: #f9f9f9;
  border-top: 1px solid #ccc;
}

.mobile-menu-item {
  padding: 12px 16px;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}
     

    .header {
      display: flex;
      align-items: center;
      border: 1px solid var(--border-color);
     
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      margin-top: 5px;
    }

    .mode-toggle {
      cursor: pointer;
      padding: 5px;
      margin-right: 10px;
      border-right: 1px solid gray;
    }

    .carousel {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .carousel-track {
      display: flex;
      /* gap: 20px; */
      animation: scroll 20s linear infinite;
    }

    .carousel-item {
      flex-shrink: 0;
      padding: 0 10px;
      font-weight: 400;
      font-size: 14px;
      font-family: "Jost", sans-serif;
      /*border-left: 1px solid var(--border-color);*/
    }

    @keyframes scroll {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    .socials {
      display: flex;
      gap: 10px;
      margin-left: 10px;
    }

    .socials div,
    .subscribe {
      padding: 11px 12px;
      border: 1px solid var(--border-color);
      cursor: pointer;
      font-size: 14px;
      font-family: "Jost", sans-serif;
    }

    .subscribe {
      font-weight: 300;
    }

    /* Dark mode border */
    body.dark .header,
    body.dark .carousel-item,
    body.dark .socials div,
    body.dark .subscribe {
      border-color: #555;
    }

    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2px 10px;
      border: 1px solid #ccc;
    }

    .author-block {
      display: flex;
      align-items: center;
      max-width: 450px;
    }

    .author-img {
      width: 60px;
      height: 60px;
      margin-right: 15px;
    }

    .author-text {
      font-size: 13px;
      line-height: 1.4;
      color: #444;
      margin-top: -23px;
      font-family: "Jost", sans-serif;
    }

    .logo-block {
      text-align: center;
    }

    .logo {
      font-size: 48px;
      font-weight: bold;
      letter-spacing: 2px;
    }
    .logo img{
    width: 70%;
    height: auto;
    object-fit: cover;
    margin: 15px 0;
    }

    .logo span.red {
      color: red;
    }
    
    .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #777;
    margin-top: -20px;
    font-family: "Jost", sans-serif;
    }

    .au-a{
    text-decoration: none;
    color: #444;
    }

    .navbar {
      display: flex;
      align-items: center;
      height: 49px;
      border: 1px solid #ccc;
      margin: -1px;
      
    }

    .left {
      display: flex;
      align-items: center;
      padding: 0 12px;
      border-right: 1px solid #ccc;
    }

    .hamburger {
      font-size: 18px;
      padding-right: 12px;
      cursor: pointer;
      
    }

    .datetime {
      display: flex;
      flex-direction: column;
      font-size: 11px;
      padding: 10px 4px;
      border-left: 1px solid #ccc;
    }

    .datetime .time {
      font-weight: bold;
      padding: 2px;
     margin-top: 5px;
      border-top: 1px solid gainsboro;
      
    }

    .menu {
      display: flex;
      flex: 1;
      border-right: 1px solid gainsboro;
    }
    .moon{
      width: 16px;
    }
    .sun{
       width: 16px;
    }

    .menu-item {
      padding: 0 16px;
      font-size: 12px;
      display: flex;
      color: #000;
      font-weight: 500;
      align-items: center;
      border-left: 1px solid #ccc;
      cursor: pointer;
      white-space: nowrap;
      font-family: "Jost", sans-serif;
    }

    .menu-item:first-child {
      background: #333;
      color: #fff;
      height: 49px;
    }

    /* .menu-item::after {
      content: "▼";
      font-size: 9px;
      margin-left: 5px;
    } */

    .menu-item.no-arrow::after {
      content: "";
    }
.search-wrapper {
  display: flex;
  align-items: center;
  border: 1px solid #000;
 margin: 21px;
  width: 37px; /* collapsed width */
  height: 34px;
  padding: 0 7px;
  box-sizing: border-box;
  transition: width 0.3s ease;
  overflow: hidden;
}

.search-wrapper.open {
  width: 250px; /* expanded width */
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  min-width: 0;
}

.search-icon {
  font-size: 14px;
  cursor: pointer;
  user-select: none;
  flex-shrink: 0; /* prevent icon from moving */
}

    .articles-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }

    .article-card {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 12px;
      border-radius: 6px;
    }

    .article-image {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
      border: 1px solid #ccc;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: left;
    }

    .category-date {
      font-size: 9px;
      color: #555;
      margin-bottom: 4px;
     font-family: "Jost", sans-serif;
    }

    .category-date span {
      font-weight: bold;
      text-transform: uppercase;
      color: #222;
      font-family: "Jost", sans-serif;
    }

    .article-title {
      font-size: 15px;
      font-weight:600;
      color: #000;
      line-height: 1.4;
      margin-top: 8px;
       font-family: "Jost", sans-serif;
       text-transform: capitalize;
    }
       
    .container {
      display: grid;
      grid-template-columns: 4.3fr 1fr 1fr;
      gap: 1px;
      border-top: 1px solid #ccc;
    }

    .column {
      padding: 15px;
      border-left: 1px solid #ccc;
      box-sizing: border-box;
    }

    .column:first-child {
      border-left: none;
    }

    .top-story {
      display: flex;
      justify-content: space-between;
      gap: 20px;
    }

    .top-text {
      max-width: 45%;
    }

    .top-text h2 {
      font-size: 20px;
      font-weight: 600;
      margin: 10px 0;
    }

    .top-text p {
      font-size: 14px;
      color: #666;
       font-family: "Jost", sans-serif;
       line-height: 1.3;
    }

    .top-text .date {
      font-size: 10px;
      color: #494646;
      text-transform: uppercase;
      font-weight: 500;
      font-family: "Jost", sans-serif;
    }

    .top-image img {
      max-width: 100%;
      height: auto;
      
    }

    .section-titles {
      font-size: 11px;
      font-weight: 500;
      color:#c71616;
      text-transform: uppercase;
      margin-bottom: 5px;
      border-bottom: 1.3px solid rgb(184, 184, 184);
      font-family: "Jost", sans-serif;
      height: 26px;
    }

    .story-date {
      font-size: 12px;
      color: #666;
      margin-bottom: 10px;
       font-family: "Jost", sans-serif;
    }

    .story-title {
      font-size: 15px;
      font-weight: 600;
      margin: 10px 0 5px;
    }

    .story-desc {
      font-size: 14px;
      color: #444;
      font-family: "Jost", sans-serif;
      margin-top: 15px;
       line-height: 1.3;
    }

    .author-date {
      font-size: 13px;
      color: #222;
      font-weight:600;
      margin-top: 20px;
      font-family: "Jost", sans-serif;
    }
    .para-p{
      color: black!important;
      font-family: "Jost", sans-serif;
      font-size: 16px;
      width: 76%;

    }
    .container-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  
}

.column {
  padding: 20px;
  box-sizing: border-box;
  border-left: 1px solid #ccc;
}

.column:first-child {
  border-left: none;
  padding: 14px 4px;
}



/* Story Blocks */
.story-block {
  margin-bottom: 20px;
}

.story-title {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
}

.story-desc {
  font-size: 15px;
  color: #444;
}





/* Carousel */
.carousel-container {
  position: relative;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  position: relative;
  /* width: 100%; */
}

.carousel-item img {
     width: 285px;
    display: block;
    height: 351px;
    object-fit: cover;
}


.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(248, 248, 248, 0.6);
  color: rgb(7, 7, 7);
  padding: 15px;
  width: 55%;
  height: 100px;
}

.carousel-caption h3 {
  margin: 5px 0 0;
  font-size: 18px;
  
}

.carousel-date {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: #191919;
}

.carousel-arrows {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.carousel-arrow {
  background: rgba(255, 255, 255, 0.7);
  padding: 6px 10px;
  font-size: 20px;
  border-radius: -2%;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.carousel-arrow:hover {
  background: black;
  color: white;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  padding: 20px 0;
  gap: 20px;
}

.info-text {
 
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Jost", sans-serif;
  width: 45%;
}

.info-highlight {
  text-align: right;
  color: #666;
}

.info-highlight h3 {
  margin: 5px;
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

.info-highlight span {
  font-size: 15px;
  color: #777;
  font-weight: 500;
}

.trending-sec-news-grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 0px 10px;
}

.trending-sec-news-grid-col-left {
  flex: 1.7;
  min-width: 300px;
  padding: 5px;
  border-right: 1px solid gainsboro;
}

.trending-sec-news-grid-col-right {
  flex: 1.5;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.trending-sec-news-grid-main-article img {
  width: 100%;
  height: auto;
 
}

.trending-sec-news-grid-main-content {
  margin-top: 10px;
}

.trending-sec-news-grid-tags {
  font-size: 12px;
  color: #010101;
  margin-bottom: 5px;
  font-family: "Jost", sans-serif;
}

.trending-sec-news-grid-main-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.trending-sec-news-grid-authors {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
}

.trending-sec-news-grid-authors div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trending-sec-news-grid-authors img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.trending-sec-news-grid-authors p {
  margin: 0;
  font-size: 14px;
  font-family: "Jost", sans-serif;
}

.trending-sec-news-grid-authors span {
  font-size: 12px;
  color: #aaa;
}

.trending-sec-news-grid-excerpt-wrapper {
  display: flex;
  gap: 2px;
  margin-top: 58px;
}

.trending-sec-news-grid-excerpt {
  flex: 1;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  border-right: transparent;
  margin: 0;
  text-align: justify;
}

.trending-sec-news-grid-excerpt.left {
  text-align: left;
}

.trending-sec-news-grid-excerpt.right {
  text-align: left;
      margin-top: -33px;
}
.sp-text{
  font-size: 27px;
  font-family: "Jost", sans-serif;
   
}

/* Top articles */
.trending-sec-news-grid-top-articles {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trending-sec-news-grid-sub-col {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.trending-sec-news-grid-sub-col img 
{
  width: 80px;
  height: 80px;
  object-fit: cover;
  }

.trending-sec-news-grid-sub-content {
  flex: 1;
}

.trending-sec-news-grid-date {
  font-size: 12px;
  color: #060606;
  margin-bottom: 5px;
  font-family: "Jost", sans-serif;
}

.trending-sec-news-grid-sub-content h3 {
  font-size: 14px;
  margin: 0;
}

/* Bottom 2-column section */
.trending-sec-news-grid-bottom-2col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trending-sec-news-grid-bottom-subcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.trending-sec-news-grid-col-right {
  flex: 1.5;
  min-width: 300px;
}

.trending-sec-news-grid-right-sub-wrapper {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid gainsboro;
  border-right: 1px solid gainsboro;
}

.trending-sec-news-grid-right-subcol {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid gainsboro;
  padding: 8px;
}

.trending-sec-news-grid-sub-col {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.trending-sec-news-grid-sub-col img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  
}

.trending-sec-news-grid-sub-content {
  flex: 1;
}

.trending-sec-news-grid-date {
  font-size: 12px;
  color: black;
  margin-bottom: 5px;
}

.trending-sec-news-grid-sub-content h4 {
  font-size: 16px;
  margin: 0;
}

/* bottom sub cols */
.three-column-news-grid-last {
  display: flex;
  gap: 30px;
  margin: 4px 0;
}

.news-column-last {
  flex: 1;
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.news-column-last :last-child {
  border-right: none;
  padding-right: 0;
   font-family: "Jost", sans-serif;
}

.news-category-last  {
  font-weight:500;
  font-size: 11px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-family: "Jost", sans-serif;
  border-bottom: 1px solid gainsboro;
}

.news-category-last  .highlight {
  font-weight: bold;
  margin-right: 4px;
}

.news-category-last  .art {
  color: #d50000;
}

.news-category-last  .world {
  color: #d32f2f;
}

.news-category-last  .human {
  color: #c2185b;
}

.news-block-last  {
  margin-bottom: 30px;
  border-bottom: 1px solid gainsboro;
}

.author-date-last  {
  font-size: 10px;
  color: #222;
  text-transform: uppercase;
  margin-bottom: 5px;
   font-family: "Jost", sans-serif;
}

.news-title-last  {
  font-size: 17px;
  font-weight: 600;
  margin: 9px 0 10px;
}

.news-title-last .underline {
  text-decoration: underline;
}

.news-excerpt-last  {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}
.profile-section-last  {
  max-width: 1100px;
  margin: 10px auto;
  font-family: 'Arial', sans-serif;
  padding: 0 20px;
}

.profile-header-last  {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.profile-header-last  .highlight {
  color: red;
    font-family: "Jost", sans-serif;
}

.profile-grid-last  {
  display: flex;
  gap: 40px;
}

.profile-left-last  {
  width: 35%;
}

.author-img-last {
  width: 269px;
    height: 227px;
    object-fit: cover;

  margin-bottom: 15px;
}

.role-last  {
  text-transform: uppercase;
  font-size: 12px;
  color: #555;
  margin-bottom: 5px;
}

.author-name-last  {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
   font-family: "Jost", sans-serif;
}

.bio-last  {
  font-size: 12px;
  width: 150%;
  color: #444;
  line-height: 1.6;
}

.profile-right-last  {
  width: 55%;
  margin-left: 22px;
  position: relative;
}

.scrollable-posts-last  {
  max-height: 380px;
  overflow-y: auto;
  padding-right: 10px;
}

.scrollable-post-last s::-webkit-scrollbar {
  width: 6px;
}

.scrollable-posts-last ::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 3px;
}

.post-item-last  {
  margin-bottom: 25px;
  padding-bottom: 15px;
  margin-left: 46px;
  border-bottom: 1px solid #eee;
}

.post-meta-last  {
  font-size: 12px;
  font-weight: 500;
  color: #000000;
   font-family: "Jost", sans-serif;
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.post-title-last  {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
  font-family: "Jost", sans-serif;
}

.scroll-indicator-last  {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 18px;
  color: #888;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

.main-section {
  max-width: 1000px;
  margin: 0 auto;
}

/* --- TOP NEWS GRID --- */
.top-news-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 30px;
}

.news-card {
  flex: 1;
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.news-card:last-child {
  border-right: none;
}

.date {
  text-transform: uppercase;
  font-size: 11px;
  color: #666;
  margin-bottom: 6px;
  font-family: "Jost", sans-serif;
}

.headline {
  font-size: 17px;
  font-weight: bold;
  color: #111;
  margin-bottom: 20px;
}

/* --- BOTTOM LEAGUE GRID --- */
.bottom-league-grid {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  border-top: 1px solid #ccc;
  padding-top: 30px;
}

.league-card {
  flex: 1;
  border-right: 1px solid #ccc;
  padding-right: 20px;
}

.league-card:last-child {
  border-right: none;
}

.league-title {
  font-size: 12px;
  font-weight:500;
  text-transform: uppercase;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Jost", sans-serif;
}

.highlight-red {
  color: red;
}

.sub-title {
  color: #444;
  font-weight: normal;
}

.icon {
 width: 11px;
  color: #111;
  margin-top: 1px;
}

.main-grid-row {
  display: flex;
  gap: 20px;
  padding: 10px;
}

/* LEFT COL 2 SUB-COLS */
.left-col {
  flex: 3;
  display: flex;
  gap: 20px;
  border-right: 1px solid gainsboro;
}

/* Shared Block for Both Left Sub-cols */
.stock-news-grid {
  flex: 1;
  /*border-right: 1px solid gainsboro;*/
}

.title-bar {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid #ccc;
  margin-bottom: 15px;
  padding-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Jost", sans-serif;
}



.highlight-red {
  color: red;
}

.sub-title {
  color: #444;
  font-weight: normal;
}

/* News Items */
.stock-news-grid-items {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.stock-news-grid-items img {
  width: 80px;
  height: 80px;
  object-fit: cover;
 
}

.category {
  font-size: 12px;
  color: #090909;
  text-transform: uppercase;
  margin-bottom: 5px;
  font-family: "Jost", sans-serif;
}

.title {
  font-size: 16px;
  font-weight: bold;
  color: #111;
}

/* RIGHT COL */
.right-col {
  flex: 3;
}

.headline-feature img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.headline-feature .category {
  font-size: 13px;
  text-transform: uppercase;
  color: #444;
}

.headline-feature .title {
  font-size: 30px;
  font-weight: bold;
  margin-top: 10px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  height: 100px; /* or auto, adjust as needed */
  background: #fff;
  
 
}

.logo-img-left {
  height: 100%;
  width: 200%;
  object-fit: cover;
  border-top: 1px solid gainsboro;
}
.money-sec-news-grid {
  font-family: sans-serif;
  padding: 20px;
  border: 1px solid #ccc;
}

.money-sec-title .category {
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 10px;
}

.money-sec-title .date {
  color: #777;
}

.money-sec-title h1 {
  font-size: 32px;
  margin: 10px 0;
  font-weight: 700;
}

.money-sec-authors {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  align-items: center;
}

.money-sec-authors .author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.money-sec-authors img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.money-sec-article-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.6;
}

.money-sec-related-links {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ddd;
  padding-top: 15px;
  flex-wrap: wrap;
  gap: 20px;
}

.money-sec-related-links .link-item {
  flex: 1;
  min-width: 200px;
   border-left: 1px solid gainsboro;
}

.money-sec-related-links .link-item .date {
  font-size: 13px;
  color: #555;
  display: block;
  margin-bottom: 5px;
  padding: 5px;
  text-transform: uppercase;
}

.money-sec-related-links .link-item h3 {
  font-size: 15px;
  padding: 5px;
  font-weight: 600;
 
}

.money-sec-title h3{
  font-size: 30px;
}


.last-section-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  padding: 10px;
  border-top: 1px solid #ddd;
  font-family: sans-serif;
}

.news-column {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.news-column:last-child {
  border-right: none;
}

.news-header {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.news-icon {
  margin-right: 8px;
  font-size: 16px;
}

.news-region {
  color: red;
  text-transform: uppercase;
  margin-right: 5px;
}

.news-label {
  color: #777;
  text-transform: uppercase;
}

.news-article {
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}
.news-article-second{
 
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-top: 60%;
}
.news-article-se{
 
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-top: 10%;
}
.news-article-secon{
 
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-top: 20%;
}
.news-article-s{
 
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
  margin-top: 7%;
}
.author-dates {
  font-size: 11px;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
   font-family: "Jost", sans-serif;
}
.last-para{
  font-family: "Jost", sans-serif;
}

.news-article h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 5px 0;
}

.news-article p {
  font-size: 14px;
  color: #555;
}

.footer {
  padding: 10px;
  border-top: 2px solid #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
 
}

.footer-col {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.footer-col:last-child {
  border-right: none;
}

.footer-header {
  font-weight: bold;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.footer-icon {
  font-size: 16px;
}

.footer-title {
  color: #000;
   font-family: "Jost", sans-serif;
   font-size: 13px;
}

.footer-subtitle {
  color: #777;
  font-weight: 400;
  font-size: 13px;
   font-family: "Jost", sans-serif;
}

.footer-about {
  display: flex;
  gap: 15px;
}

.footer-about-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}

.footer-about-text {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
   font-family: "Jost", sans-serif;
}

.footer-live-report .footer-report-row {
  display: flex;
  gap: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.footer-author {
  font-weight: 500;
  font-size: 13px;
  color: #333;
  white-space: nowrap;
   font-family: "Jost", sans-serif;
}

.footer-title-text {
  font-size: 14px;
  color: #444;
   font-family: "Jost", sans-serif;
}

.footer-list {
  list-style: none;
  padding-left: 0;
}

.footer-list li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  line-height: 1.4;
   font-family: "Jost", sans-serif;
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding: 15px 30px;
  font-family: sans-serif;
  font-size: 14px;
  color: #444;
  position: relative;
  font-family: "Jost", sans-serif;
}

.footer-bottom-menu {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 10px 0;
  border-bottom: 1px solid #ccc;
}

.footer-bottom-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  border-left: 1px solid #ccc;
  padding: 0 15px;
}

.footer-bottom-menu a:first-child {
  border-left: none;
}

.footer-bottom-copy {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}

.footer-bottom-copy strong {
  color: #333;
}

.footer-scroll-top {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
 
  border: 1px solid #000;
  padding: 8px;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}


/* detail page */
   .det-sec-news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 20px;
      padding: 10px;
      
    }

    .right-col-det  {
      display: flex;
      flex-direction: column;
      border-right: 1px solid gainsboro;
      margin-left: 79px;
    }
      .left-col-det{
         display: flex;
         width: 110%;
      flex-direction: column;
      border-right: 1px solid gainsboro;
      }

    .hot-news-title {
      font-size: 1.2em;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .news-item-det {
      display: grid;
      grid-template-columns: 1fr 3fr;
      margin-bottom: 20px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
    }

    .author-info-det {
      font-weight: bold;
      font-size: 0.9em;
      color: #333;
    }

    .content-snippet {
      font-size: 0.95em;
    }

    .section-title-det  {
      font-size: 11px;
      font-weight: 500;
      margin: 15px 0 10px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 5px;
       font-family: "Jost", sans-serif;
    }

    .latest-news-item-det  {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      border-bottom: 1px solid gainsboro;
    }

    .latest-news-item-det  img {
      width: 85px;
    height: 62px;
      margin-right: 10px;
      object-fit: cover;
    }

    .category-det  {
      font-weight: bold;
      font-size: 0.85em;
      color: #444;
    }

    .news-item-det {
  display: flex;
  align-items: center;
 margin-top: -17px;
}

.author-info-det img {
  width: 50px;
  height: 50px;
  border-radius: 50%; /* makes image round */
  object-fit: cover;
  margin-right: 15px; /* spacing between image and text */
}

.content-snippet {
  font-size: 1rem;
  line-height: 1.5;
}

    .title-det{
      font-size: 36px;
      margin-top: 15px;
    }
.para-det{
  font-family: "Jost", sans-serif;
  font-size: 12px;
  color: black;
  font-weight: 500;
}
.para-dets{
  font-family: "Jost", sans-serif;
 font-size: 20px;
    color: #000;
    line-height: 27px;
}
.para-detss{
  font-family: "Jost", sans-serif;
 font-size: 16px;
    color: #4e4d4d;
    line-height: 27px;
    text-align: justify;
    padding: 5px;
}

.stl{
  font-family: "Jost", sans-serif; 
  font-size: 32px;
    color: #000;
    line-height: 27px;
    
}
.first-det{
  width: 98%;
 
}

.author{
   font-family: "Jost", sans-serif;
    font-weight: 500;
    font-size: 14px;
    border-right: 1px solid gainsboro;
}
.news-title-det{
   font-family: "Jost", sans-serif;
   padding: 5px;
}
.image-with-caption {
  text-align: center; /* center the image and caption */
  margin-bottom: 20px;
}

.image-with-caption .first-det {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.caption-text {
  font-size: 0.8rem;
  color: #fcfcfc;
  margin-top: -25px;
  margin-left: 70%;
 
}
.text-image-section {
  display: flex;
  align-items: flex-start;
  gap: 0; /* no space between columns */
}

.text-content {
  flex: 4;
  font-size: 1rem;
  line-height: 1.6;
  padding-right: 30px;
}

.para-next {
  font-family: "Jost", sans-serif;
   color: #4e4d4d;
}

.right-images {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Sticky behavior */
.sticky-bottom-image {
  position: sticky;
  top: 0; /* Stick to top of viewport */
  align-self: flex-start; /* prevent stretching */
}

.sticky-bottom-image img {
  width: 87%;
  display: block;
  border-radius: 0px;
}

.box-container-detail-wrapper {
  display: flex;
  gap: 20px;
  margin: 30px 0;
   font-family: "Jost", sans-serif;
}

.box-container-detail-article {
  flex: 1;
  border: 1px solid #333;
  padding: 20px;
  box-sizing: border-box;
}

.box-container-detail-title {
  font-size: 13px;
  font-weight: 600;
  color: rgb(116, 115, 115);
  margin-bottom: 10px;
  text-transform: uppercase;
   font-family: "Jost", sans-serif;
}

.box-container-detail-meta {
  display: flex;
  
  font-size: 0.85rem;
  margin-bottom: 10px;
  color: #555;
}

.box-container-detail-heading {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.box-container-detail-description {
  font-size: 0.95rem;
  color: #666;
  margin: 0;
}

.det-side-sec-layout-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 0;
  
}

/* Full width image article */
.det-side-sec-layout-item.full {
  display: flex;
  flex-direction: column;
}

.det-side-sec-layout-img {
  width: 100%;
  height: auto;
  display: block;
}

.det-side-sec-layout-title {
  font-size: 1rem;
  font-weight: 500;
  margin-top:-78px;
    width: 218px;
  background-color: white;
  line-height: 1.4;
  font-family: "Jost", sans-serif;
}

/* Side-by-side layout for thumb + text */
.det-side-sec-layout-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.det-side-sec-layout-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.det-side-sec-layout-text {
  display: flex;
  flex-direction: column;
}

.det-side-sec-layout-category {
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  color: #000;
  border-left: 2px solid #000;
  padding-left: 10px;
  margin-bottom: 5px;
}

.det-side-sec-layout-link {
  font-size: 0.9rem;
  font-weight: 300;
  
  color: #000;
  line-height: 1.4;
}


.category-cover-box {
  margin-top: 3px;
  position: relative;
  background-image: url('../img/art.jpg'); /* Your image path */
  background-size: cover;
  background-position: center;
  height: 350px;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  overflow: hidden;
}

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Adjust opacity here */
  z-index: 1;
}

.category-cover-content {
  position: relative;
  z-index: 2; /* Ensure content appears above the overlay */
  max-width: 800px;
  margin-left: 4%;
}

.category-post-count {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.9;
   font-family: "Jost", sans-serif;
}

.category-post-count em {
  font-style: italic;
}

.category-title {
  font-size: 45px;
  font-weight: 700;
  
  margin: 5px 0 10px;
}

.category-description {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  opacity: 0.95;
   font-family: "Jost", sans-serif;
}

.article-container {
  display: flex;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
  margin-top: 30px;
  border-top: 1px solid gainsboro;
}

.image-section img {
  max-width: 100%;
  height: auto;
  width: 500px;
  padding: 7px;
}

.content-section {
  margin-left: 30px;
  max-width: 570px;
}

.category-date {
  font-size: 12px;
  color: #555;
  margin-bottom: 0px;
}

.category-date span {
  font-weight: bold;
   font-family: "Jost", sans-serif;
}

.content-section h1 {
  font-size: 28px;
  font-weight:600;
  margin-bottom: 15px;
  line-height: 1.3;
    font-family: "Jost", sans-serif;
}

.description {
  font-size: 17px;
  line-height: 1.6;
  color: gray;
  font-weight: 300;
   font-family: "Jost", sans-serif;
}

/* author page */
.au-sep-page-det {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}

.author-image img {
  width: 180px;
  height: auto;
  margin-right: 30px;
}

.author-content {
  max-width: 750px;
}

.author-meta {
  font-size: 10px;
  color: #777;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
   font-family: "Jost", sans-serif;
}

.author-content h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  
}

.author-bio {
  font-size: 17px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 400;
   font-family: "Jost", sans-serif;
}

.author-social span {
  font-size: 12px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
}

.author-social {
  font-size: 15px;
  color: #333;
}

.first-h1{
  font-size:22px;
}
.info-highlight .hot-pa{
  margin: 5px;
  color: #000;
  font-weight: 600;
  font-size: 24px;
}
#carousel-title{
  color: black;
  font-weight: 600;
}
.cate-high{
  font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: "Jost", sans-serif;
    margin-top:6px;
}