*{margin: 0;  padding: 0;text-decoration: none;box-sizing: border-box;list-style: none;} body,html{overflow-x: hidden; overflow-y: scroll; font-family: candara; }


body{ background: var(--paper);  font-family: candara; line-height: 1.6; }

:root {
  --ink: #0a0a0f;
  --paper: #f4f1eb;
  --accent: #e8372a;
  --accent2: #f5a623;
  --cool: #1a3a5c;
  --muted: #8a8578;
  --border: rgba(10,10,15,0.12);
  --card-bg: #ffffff;
  --sidebar-bg: #f9f6f0;
  --dark: #0a0a0a;
  --primary: #00d4ff;
  --light: #f8f9fa;
}

.page-top {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  background: rgb(0, 29, 158);
  z-index: 9999; 
  box-sizing: border-box;
  
}

.ticker-bar{
  background: var(--ink);
  color: var(--paper);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  padding: 6px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner{
  display: inline-flex;
  gap: 60px;
  animation: ticker 28s linear infinite;
}

.ticker-inner span{  color: var(--accent2); margin-right: 8px;}  @keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.brand-name{
  display: flex;
  gap: 0;
  color: white;
  position: absolute; 
  white-space: nowrap;
  margin-right: auto;
}

.brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -15px;}



.mid-brand-name{
  font-family: 'Times New Roman';
  font-style: italic;
  font-weight: 600;
  color: gold;
  font-size: 3rem;
  line-height: 1;
  margin-top: 4px;
  

}


.last-brand-name{
  font-family: monospace;
  font-weight:1000;
  font-size: 3rem;
  align-items: center;
  color: white; 
  margin-left: -2px;
}

nav ul{
  float: right;
  margin-right: 25px;  
}

nav ul li{
  display: inline-block;
  line-height: 60px;
  margin: 0 15px;
 
}

nav ul li a{
  position: relative;
  color: white;
  font-size: 15px;
  padding: 5px 0;
  text-transform: uppercase;
  font-weight: bolder;
}

nav ul li a:hover{
  color: yellow;
}

nav ul li a::before{
  position: absolute;
  content: '';
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s linear;
}


nav ul li a:hover::before{
  transform: scaleX(1);
  transform-origin: left;
}

label #btn,
label #cancel{
  color: rgb(255, 255, 255);
  font-size: 30px;
  float: right;
  line-height: 80px;
  margin-right: 40px;
  cursor: pointer;
  display: none;
}

#check{
  display: none;
}

@media (max-width: 1024px) {
  
  nav .brand-name{
   left: unset;
    top: 30px;
     
  }

  nav ul{
    float: right;
    margin-right: 10px;
  }

  nav ul li {
    margin: 0 8px;
  }

  nav ul li a{
      font-size: 10px;
  }
  
}

@media  (max-width: 680px) {

 
  label #btn{
      display: block;
  }

  .topbar-men ul{
   position: fixed ;
    width: 100%;
    height: 100vh;
    background: rgb(0, 29, 158);
    top: 80px;
    left: -100%;
    text-align: left;
    transition: all .5s;
    z-index: 3;
  }

  nav ul li{
      
      display: block;
      margin: 50px 50px 50px;
      line-height: 30px;
  }

  nav ul li a{
      font-size: 18px;

  }

  #check:checked ~ ul{
    left: 0;
  }

  #check:checked ~  label #btn{
     display: none;
  }

  #check:checked ~ label #cancel{
    display: block;
      
  }
  

}

/* ── Dark mode toggle button ── */
    .dark-toggle-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
     
    }
    .dark-toggle-label {
      font-size: 15px;
      color: inherit;
      opacity: 0.6;
      transition: opacity 0.3s;
      white-space: nowrap;
      color: white;
      font-weight: bold;
      
      margin: 5px 10px;
    }
    .dark-toggle-label.active {
      opacity: 1;
      font-weight: bold;
    }
    .dark-toggle-track {
      position: relative;
      width: 48px;
      height: 26px;
      border-radius: 100px;
      background: #d0cfc6;
      border: none;
      cursor: pointer;
      padding: 0;
      outline: none;
      transition: background 0.35s;
      flex-shrink: 0;
    }
    .dark-toggle-track:focus-visible {
      box-shadow: 0 0 0 3px rgba(83,74,183,0.4);
    }
    body.dark-mode .dark-toggle-track {
      background: #534AB7;
    }
    .dark-toggle-thumb {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #fff;
      transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }
    body.dark-mode .dark-toggle-thumb {
      transform: translateX(22px);
    }
    .toggle-icon-sun,
    .toggle-icon-moon {
      position: absolute;
      transition: opacity 0.2s, transform 0.2s;
      color: #888;
      line-height: 1;
    }
    .toggle-icon-sun  { opacity: 1;  transform: scale(1);   }
    .toggle-icon-moon { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-sun  { opacity: 0;  transform: scale(0.6); }
    body.dark-mode .toggle-icon-moon { opacity: 1;  transform: scale(1); color: #7F77DD; }

    body.dark-mode {
      background-color: #121212;
      color: lightgray;
    }

    body.dark-mode a{
      color: gray;
    }

    body.dark-mode h1{
      color: lightgray;
    }

    body.dark-mode h3{
      color: grey;
    }

    body.dark-mode h4{
      color: grey;
    }

  body.dark-mode .featured{
    background-color:#0a0a0f;
  }

  body.dark-mode .featured ul li a{
    background-color: #0a0a0a;
  }

  body.dark-mode .carousel {
    background-color: #0a0a0a;
  }
  body.dark-mode .title {
    color: lightslategray;
  }








/* stop herwe!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */








.hero{
  margin-top: 120px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0;
  border-bottom: 3px solid var(--ink);
  min-height: 520px;
}

.hero-main{
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-main img{
  margin-top: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
} .hero-main:hover img { transform: scale(1.03); }

.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,15,0.92) 0%, rgba(10,10,15,0.2) 60%, transparent 100%);
}

.hero-content{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
}

.tag{
  display: inline-block;
  background: var(--accent);
  color: white;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 14px;
}

.tag.ai { background: #7b2fd4; } .tag.cyber { background: #0c7a4f; } .tag.gadget { background: var(--accent2); color: var(--ink); } .tag.space { background: #1a3a5c; }  .tag.ev { background: #2d7a3a; }

.hero-content h1{
  font-family: 'DM Serif Display', serif;
  font-size: 42px;
  line-height: 1.1;
  color: white;
  margin-bottom: 12px;
  max-width: 640px;
}

.hero-meta{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
}

.hero-sidebar{
  border-left: 3px solid var(--ink);
  display: flex;
  flex-direction: column;
}

.hero-sidebar-item{
  flex: 1;
  padding: 28px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: inherit;
}

.hero-sidebar-item:hover { background: rgba(232,55,42,0.04); } .hero-sidebar-item:last-child { border-bottom: none; }
.hero-sidebar-item h3{
  font-family: 'DM Serif Display', serif;
  font-size: 19px;
  line-height: 1.25;
  margin-top: 8px;
  color: var(--ink);
} .hero-sidebar-item .hero-meta { color: var(--muted); }

/* DATA STRIP !!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.data-strip{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  padding: 20px 60px;
}

.data-item{ text-align: center; color: var(--paper); }
.data-item  .num{
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
}
.data-item .label{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,235,0.5);
  margin-top: 4px;
}
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 60px 0;
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 0.06em;
    border-left: 5px solid var(--accent);
    padding-left: 14px;
    line-height: 1;
  }
  .see-all {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    text-decoration: none;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 2px;
}


/* ── MAIN GRID ── */

.content-wrapper{
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 0;
  padding: 0 60px;
  margin-top: 40px;
} .main-content { padding-right: 48px; border-right: 1px solid var(--border); } .sidebar { padding-left: 36px; }

.card-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 48px;
}

.card{
  cursor: pointer;
  transition: transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
} .card:hover { transform: translateY(-3px); }



.content-wrapper img.Sirv{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  border: 1px solid var(--border);
  margin-bottom: 14px;
  transition: opacity 0.2s;

}


.card:hover img { opacity: 0.88; } 

.card h3{
  font-family: 'DM Serif Display', serif;
  font-size: 18px;
  line-height: 1.3;
  margin: 8px 0 6px;
  color: var(--ink);
}

.card p{
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta{
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.card-wide{
   display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}  .card-wide:hover { opacity: 0.8; }  .card-wide:first-child { border-top: 1px solid var(--border); }  

.card-wide img.Sirv{
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid var(--border);
}

.card-wide h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    line-height: 1.25;
    margin: 6px 0 8px;
  }
  .card-wide p { font-size: 13px; color: var(--muted); }
 
  /* ── SIDEBAR WIDGETS ── */
  .widget { margin-bottom: 40px; }
  .widget-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 0.08em;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 8px;
    margin-bottom: 16px;
  }
  .trending-list { list-style: none; }
  .trending-list li {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
  }
  .trending-list li:hover { opacity: 0.7; }
  .trending-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--border);
    line-height: 1;
    min-width: 28px;
  }
  .trending-text h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 15px;
    line-height: 1.3;
    margin-bottom: 4px;
  }
  .trending-text span {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 10px;
    color: var(--muted);
  }
 
  /* ── NEWSLETTER WIDGET ── */
  .newsletter-widget {
    background: var(--ink);
    color: var(--paper);
    padding: 28px;
    margin-bottom: 40px;
  }
  .newsletter-widget h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
  }
  .newsletter-widget p {
    font-size: 13px;
    color: rgba(244,241,235,0.65);
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .newsletter-widget input {
    width: 100%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 10px 14px;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    margin-bottom: 10px;
    outline: none;
  }
  .newsletter-widget input::placeholder { color: rgba(255,255,255,0.35); }
  .newsletter-widget button {
    width: 100%;
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
  }
  .newsletter-widget button:hover { opacity: 0.85; }

  /* ── TOPICS BAR ── */
  .topics-bar {
    padding: 32px 60px;
    border-bottom: 1px solid var(--border);
  }
  .topics-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
  }
  .topic-pill {
    display: inline-block;
    padding: 8px 18px;
    border: 1.5px solid var(--ink);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--ink);
    transition: all 0.2s;
  }
  .topic-pill:hover { background: var(--ink); color: var(--paper); }

  /* ── PAGE LOAD ANIMATION ── */
  .fade-up {
    opacity: 0;
    transform: translateY(22px);
    animation: fadeUp 0.6s ease forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }
  .delay-4 { animation-delay: 0.4s; }

/* NEW SECTION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */

.carousel {
    background-color: black;
    margin-top: 20px;
    display: flex;
    overflow-x: auto;
    padding:20px;
    gap: 10px;
    scrollbar-width: none;
  }
  /* .carousel::-webkit-scrollbar { display:none; } */
  .card {
    
    flex: 2;
    height: 400px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.164);
    cursor: pointer;
    transition: transform 0.3s;
  }
  .card:hover { transform: scale(1.05); }
  .card img {
    width: 19rem;
    height:12rem ;
    object-fit: cover;
  }
  .overlay {
    
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.664);
    color: #fff;
    padding: 40px 20px 20px;
  }
  .date { font-size: 0.9em; opacity: 0.8; }
  .title {
   
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 5px;
  }

.featured{  margin: 10px;}

.featured .feat{  font-size: 2rem;  font-family: 'Times New Roman', Times, serif;}


.featured-sections{
  display: flex;
  flex-direction: row;
  margin: 10px;
  width: fit-content;
}

.featured-finance{
  margin: 10px;
  background-color: blue;
  width: 40%;
  display: flex;
  flex-direction: column;
}


.featured-finance .feat-fin{
  margin-bottom: 10px;
  font-size: 1rem;
  border-left: 10px solid red;
  padding: 5px;
  background-color: white;
}

.featured-finance a{
  text-align: center;
  font-family: candara;
  background-color: blue;
  color:  white;
  line-height: 30px;
}

.featured-finance ul li a:hover{ text-decoration: underline;}

.featured-finance  a:hover{  text-decoration: underline;}

.featured-finance img{  max-width: 100%;  max-height: fit-content;  margin-top: -10px;}

.featured-finance ul li {  padding: 10px;  border-top: 2px solid white;}

.featured-finance button{  background-color:blue;  padding: 20px;  border: none;}

.featured-finance button a{
  font-family: candara;
  font-size: large;
  color: white;
  padding: 15px;
  border: 2px solid rgb(179, 35, 35);
  background-color: red;
}

.other-features{  width: fit-content;  display: flex;  flex-direction: row;}


/* WORKING HERE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */










/* NEW SECTION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */


.featured{  width:100%;  margin: 10px;  display: flex;  flex-direction: row;}

.featured-one{  margin: 15px;  width: 30%;  display: flex;  flex-direction: column;}



.featured-one a{  color:black;  font-weight: bold;  font-family: candara;  line-height: 30px;}

.featured-one ul li img{  width: 150px; aspect-ratio: 4/3;   margin: 10px;   opacity: 1;}

.featured-one li a {  width: fit-content;  display: flex;  flex-direction: row;  background-color: white;  line-height: 30px;}



.featured-one a:hover{  text-decoration: underline;}

.featured-one ul li a:hover{  text-decoration: underline; }

.featured-one img:hover{  opacity: 0.5;}

.featured-two{  margin: 10px;  width: 40%;  display: flex;  flex-direction: column;}

.featured-two .feats{  margin: 10px;  border-left: 10px solid black;  padding: 10px;} .featured-two img{width: 100%; aspect-ratio: 4/3;}
 
.featured-two a{
  margin: 10px;
  display: flex;
  flex-direction: column;
  font-family: Arial, Helvetica, sans-serif;
  color: black;
  font-weight: bold;
  font-size: 1.3rem ;  
}

.featured-two ul li a{
  display: flex;
  flex-direction: row;
  font-family: candara;
  font-weight: light;
  font-size: 1rem;
}

.featured-two ul li img{
  padding-right: 10px;
  display: flex;
  flex-direction: row;
  width: 150px;
  opacity: 1;
} 

.featured-two ul li :hover{  text-decoration: underline;}

.featured-two a:hover{  text-decoration: underline;}

.featured-two img:hover{  opacity: 0.5;}





/* NEW-FOOTER-SECTION!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.section-for-footer{
    position: sticky;
    width: 100%;
    display: flex;
    flex-direction: row;
    background-color: #121212;
    bottom: 0; 
    min-height: 100vh;
  }

  .section-for-footer p{
    color: grey;
  }

  .footer-brand-name{
    display: flex;
    gap: 0;
    white-space: nowrap;
    margin-right: auto; 
  }

  .footer-brand-name .mid-brand-name{
    font-family: 'Times New Roman';
    font-style: italic;
    font-weight: 600;
    color: gold;
    font-size: 3rem;
    line-height: 1;
    margin-top: 10px; 
  }

  .footer-brand-name svg{ font-size: 2rem; flex-shrink: 0;  margin-right: -12px;}

  .first-content-footer{
    width: 40%;
    margin: 20px;
  }


 .second-content-footer{
  width: 60%;
  display: flex;
  flex-direction: row;
  margin-top: 30px;
 } 

 .second-content-sub-one{
    padding-right:200px;

 }

 .second-content-sub-one ul li a{
  line-height: 40px;
  color: grey;
  margin: 0;
  transition: all 0.3s ease;
  white-space:nowrap;
  
 }



 .second-content-sub-one i{
  margin-right: 5px;
 }

 .second-content-sub-one ul li a:hover{
  color:rgb(0, 140, 255); transform: translateY(-3px);
 }


 
 .footer-more{
  margin: 0;
  color: white;
  flex-direction: column;
  font-weight: bold;
 }

 .footer-more::after{
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, lightblue, rgb(0, 140, 255), purple);
  margin-top: 5px;

 }
 .before-section{
  content: '';
  position: absolute;
  width: 98%;
 
  height: 2px;
  background: linear-gradient(to right, #22d3ee, #a855f7);
 }


 .last-footer-section{
  display: flex;
  flex-direction: row;
  background-color: #121212;
 
 }

 .footer-socials{
  margin: 20px;
  
 }

 .footer-socials  i {
  margin-right: 30px;
  font-size: 1.3rem;
  color: grey;
  transition: all 0.3s ease;
  
 } .footer-socials i:hover{color: white; transform: translateY(-3px);}



 .rights-reserved{
  display:flex;
  gap: 10px;
  margin: 20px;
  font-size: 1rem;
  justify-content: center;
  margin-left:350px ;
  color: #BAC4C8;
 }

 .rights-reserved a{
  color:#BAC4C8 ;
  text-decoration: underline;
  font-weight: bold;
 }

 

 .footer-links{
  display: flex;
  text-align: center;
  gap: 20px;
  margin: 20px;
  margin-left: auto;
 }

 .footer-links a{
  color: #BAC4C8; transition: all 0.3s ease;
 }

 .footer-links a:hover{color: white; }

@media (max-width: 1024px) {
  .section-header { padding: 24px 28px 0; }
  .content-wrapper { padding: 0 28px; margin-top: 32px; grid-template-columns: 1fr 280px; }
  .main-content { padding-right: 32px; }
  .sidebar { padding-left: 24px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .card-wide { grid-template-columns: 160px 1fr; gap: 16px; }

  .hero { min-height: 440px; }
  .hero-content h1 { font-size: 32px; }
  .hero-sidebar-item h3 { font-size: 16px; }
  .hero-sidebar-item { padding: 20px; }

  .last-footer-section {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }
 
  .footer-socials {
    display: flex;
    justify-content: center;
    margin: 10px 0;
  }
 
  .rights-reserved {
    margin-left: auto;            /* was hardcoded 350px */
    margin-right: auto;
    width: 100%;
    justify-content: center;
    font-size: 0.85rem;
    text-align: center;
  }
 
  .footer-links {
    margin: 10px auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
 

}

@media (max-width: 768px) {
 
 
  /* Hero stacks vertically */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-main { min-height: 320px; }
  .hero-content { padding: 24px; }
  .hero-content h1 { font-size: 26px; max-width: 100%; }
  .hero-sidebar { border-left: none; border-top: 3px solid var(--ink); flex-direction: row; overflow-x: auto; }
  .hero-sidebar-item {
    min-width: 240px;
    border-bottom: none;
    border-right: 1px solid var(--border);
    padding: 20px;
    flex-shrink: 0;
  }
  .hero-sidebar-item:last-child { border-right: none; }
  .hero-sidebar-item h3 { font-size: 15px; }
 
  /* Data strip: 2×2 */
  .data-strip { grid-template-columns: repeat(2, 1fr); padding: 20px 18px; gap: 0; }
  .data-item { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .data-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .data-item .num { font-size: 30px; }
 
  /* Section headers */
  .section-header { padding: 24px 18px 0; }
 
  /* Content wrapper: single column */
  .content-wrapper { grid-template-columns: 1fr; padding: 0 18px; margin-top: 28px; }
  .main-content { padding-right: 0; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 40px; margin-bottom: 40px; }
  .sidebar { padding-left: 0; }
 
  /* Card grid: 2 cols on tablet */
  .card-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
 
  /* Wide card: stacked */
  .card-wide { grid-template-columns: 1fr; gap: 0; }
  .card-wide img { width: 100%; aspect-ratio: 16/9; }
 
  /* Opinion strip: stacked */
 
}


@media(max-width:680px){
  .card img.Sirv{
  max-height: 50%;


}





  .carousel {
    background-color: black;
    width: 100%;
    height: 2000px;
    display: flex;
    flex-direction: column;
    margin: 50px 0 0 0 ;
  }

  .card {
    margin: 20px;
    box-shadow: 0 8px 24px rgba(187, 177, 177, 0.404);
  }

  .card img {
    aspect-ratio: 9/16;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .more-top-stories{  width: 100%; display: flex; flex-direction: column; margin: 10px; }


    /* New section */






/* SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS */

      .sidebar-main-content{
      width:95%;
      margin: 20px;
      display: flex;
      flex-direction: column;
    }

    .sidebar-main-content a{
      color: black;
      font-size: 1.2rem;
      font-weight: bold;
    }  

    .sidebar-main-content img{
      width: 100%;
      aspect-ratio: 16/9;
      border-radius: 5px;
      opacity: 1;
      display: flex;
      flex-direction: column;
    } 


    .sub-sidebar-content{
      width: 100%;
      margin: 0;
      padding: 15px;
      display: flex;
      flex-direction: column;
    }

    .sub-container-one{
      width:100%;
      display: flex;
      flex-direction: row;
    }

    .sub-container-one img{
      width:100%;
      border-radius: 10px;
      opacity: 1;
    }   .sub-container-one img:hover{opacity: 0.5;}

    .sub-container-one a{
      color: black;
      font-size: 1rem;
    }  .sub-container-one a:hover{text-decoration: underline;}


   


  /* ::selection */
 

 
  .featured-sections{  width: fit-content;  display: flex;    flex-direction: column;  }

  .featured-finance{ width: fit-content;  margin: 10px;}
  
  .recommended-for-you{width:100%;    margin:0; display: flex;  flex-direction: column; }

  .for-you-one{width: auto; text-align: center; margin: 20px;}

  .for-you-one  img{width:100%;}

  .featured{width:100%; display: flex; flex-direction: column;}

  .featured-one{width: fit-content; margin: 10px; display: flex; flex-direction: column;}

  .featured-one ul li a {    padding: 10px;    width: fit-content;    display: flex;}

  .featured-one a img{max-width: 95%; max-height: fit-content; padding-right:20px;  }

  .featured-one ul li img{ max-width:60%;  max-height: fit-content;  }

  .featured-two{width:95%; margin: 0;  }

  .other-features{ width: fit-content; display: flex; flex-direction: column; margin: 10px;}

  .container-text-you-missed{width: 100%; margin: 0; display: flex; flex-direction: column;}

  .headline-one-text{width: 100%; display: flex;}  .headline-one-text a{width: 95%; text-align: left;} .headline-two-text{ width: 100%;}

  .section-for-footer{ 
    flex-direction: column;
  }

  .first-content-footer{
    width: fit-content;
  }

  .second-content-footer{
    width: 100%;margin:20px; flex-direction: column;
  }
  .second-content-sub-one{margin-bottom: 30px;}

  .last-footer-section{display: flex; flex-direction: column;}

  .footer-socials{
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rights-reserved{
   margin: auto;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
   
  }

}

@media (max-width: 480px) {
    
 
    .hero-main { min-height: 260px; }
    .hero-content { padding: 18px; }
    .hero-content h1 { font-size: 22px; }
    .hero-sidebar { flex-direction: column; overflow-x: unset; }
    .hero-sidebar-item {
      min-width: unset;
      border-right: none;
      border-bottom: 1px solid var(--border);
      flex-direction: row;
      gap: 14px;
      align-items: center;
    }
    .hero-sidebar-item:last-child { border-bottom: none; }
 
    /* Card grid: single column on small phones */
    .card-grid { grid-template-columns: 1fr; gap: 20px;  width: 100%; }
 
    .data-strip { grid-template-columns: repeat(2, 1fr); }
    .data-item .num { font-size: 28px; }
 
    .section-header { padding: 20px 14px 0; }
    .content-wrapper { padding: 0 14px; }
    
  .rights-reserved{
    margin: 2px;
     width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
    font-size: small;
  }

  .footer-links{
    display: flex;
    justify-content: center;
    align-items: center;
    margin:40px 10px  ;
    gap: 20px;
    white-space: nowrap;
    font-size: small;
   
  }


    
}





/* load animation */
  .fade-up {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUp 0.6s ease forwards;
  }
  @keyframes fadeUp { to { opacity: 1; transform: none; } }
  .fade-up:nth-child(1) { animation-delay: 0.05s; }
  .fade-up:nth-child(2) { animation-delay: 0.15s; }
  .fade-up:nth-child(3) { animation-delay: 0.25s; }
  .fade-up:nth-child(4) { animation-delay: 0.35s; }
  .card:nth-child(1) { animation-delay: 0.1s; }
  .card:nth-child(2) { animation-delay: 0.2s; }
  .card:nth-child(3) { animation-delay: 0.3s; }
  .card:nth-child(4) { animation-delay: 0.4s; }


/* WORK HERE!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
.other-featured-contents{
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: 20px;
}

.main-featured-content{
  width: 90% ;
  margin:0px;
}  
.main-featured-content a{
  color: black;
  line-height: 35px;
  font-size: medium;
  font-family: Arial, Helvetica, sans-serif;
}

.main-featured-content a:hover{  text-decoration: underline;}  .main-featured-content  img{border-radius: 5px; aspect-ratio: 16/9;}

.main-featured-content img:hover{  opacity: 0.5;}

.news-card-content{  width: 90%;  margin:0px;}  .news-card-content a{color: black;
  line-height: 30px; 
  font-size: medium;
  font-family: arial;}  .news-card-content a:hover{text-decoration: underline;}   .news-card-content  img{border-radius: 5px; aspect-ratio: 16/9;} .news-card-content img:hover{  opacity: 0.5;}

.sidebar-web-content{width: 90%}

.sidebar-adv{
  background-color: #3333337c;
  width: 100%;
  height: 300px;
  margin-bottom: 10px;
} .sidebar-adv p{ text-align:center; font-size: 2rem;  }

.sidebar-web-content h2 a{color: black;
  line-height: 20px; 
  font-size: medium;
  font-family: arial; margin-bottom: 20px;}  .sidebar-web-content a:hover{text-decoration: underline;}   .sidebar-web-content img{border-radius: 5px; aspect-ratio: 16/9;} .sidebar-web-content img:hover{  opacity: 0.5;}





