body {
  margin: 0;
  font-family: 'Arial', sans-serif;
}

.fr-header {
  border-bottom: 1px solid #ddd;
}

.fr-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  font-size: 14px;
  background-color: white;
  color: #000;
  border-bottom: 1px solid lightgrey;
}

.fr-nav-item {
  margin-right: 10px;
  cursor: pointer;
}

.fr-divider {
  margin: 0 5px;
  color: #999;
}

.fr-top-actions {
  display: flex;
  align-items: center;
}

.fr-subscribe-link {
  color: #0066cc;
  text-decoration: none;
  font-weight: 100;
  margin-right: 8px;
}

.fr-login-link {
  color: #000;
  text-decoration: none;
}

.fr-main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px 10px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: white;



  position: sticky;
  z-index: 9999;
  top: 0;
 
}




 .custom-menu-icon {
      font-size: 24px;
      padding: 0px;
      cursor: pointer;
    }

    /* Slide-in Menu */
    .custom-sidebar {
      position: fixed;
      top: 0;
      left: -100%;
      width: 300px;
      height: 100vh;
      background: #fff;
      box-shadow: 2px 0 10px rgba(0,0,0,0.1);
      transition: left 0.3s ease;
      z-index: 1000;
      padding: 20px;
    }

    .custom-sidebar.active {
      left: 0;
    }

    /* Close Button */
    .custom-close-btn {
      font-size: 28px;
      cursor: pointer;
      margin-bottom: 20px;
      display: inline-block;
    }

    /* Search Box */
    .custom-search-box {
      border: 1px solid #ccc;
      padding: 10px 15px;
      display: flex;
      align-items: center;
      margin-bottom: 30px;
    }

    .custom-search-box input {
      border: none;
      outline: none;
      flex: 1;
      font-style: italic;
    }

    .custom-search-box i {
      font-size: 16px;
      color: #555;
    }

    /* Menu List */
    .custom-nav-list {
      list-style: none;
    }

    .custom-nav-item {
      padding: 15px 0;
      border-bottom: 1px solid #eee;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .custom-nav-item i {
      font-size: 14px;
    }



.fr-left-controls {
  display: flex;
  align-items: center;
  gap: 30px;
}
.fr-left-controls i{
font-size: 22px;
}

.fr-menu-icon {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.fr-menu-icon span {
  display: block;
  height: 2px;
  background-color: #000;
  width: 16px;
}

.fr-search-icon {
  font-size: 18px;
  cursor: pointer;
}

.fr-logo {
  font-family: 'Georgia', serif;
  font-size: 42px;
  color: #005BAC;
  margin: 0;
}

.fr-newsfeed-label {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 18px;
  padding-right: 10px;
}

.fr-nav-wrapper {
  position: relative;
}

.fr-nav-menu {
  display: flex;

  gap: 20px;

  padding: 17px 0px;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  z-index: 2;
  align-items: center;
  justify-content: space-between;
}

.fr-nav-link {
  text-decoration: none;
  color: black;
  padding: 14px 0;
  position: relative;
  cursor: pointer;
}

.fr-dropdown-wrapper {
  position: relative;
}

/* .fr-dropdown-menu {
  position: fixed;
  top: 175px; 
  left: 0%;
  

  width: 100vw;
  max-width: 100vw;
  background-color: white;
  padding: 30px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-align: center;
  justify-content: center;
  align-items: center;

  opacity: 0;
  max-height: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, max-height 0.3s ease;



}


.fr-dropdown-wrapper:hover .fr-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  max-height: 1000px;
  pointer-events: auto;
}
 */


/* .fr-nav-menu {
  display: flex;
  flex-wrap: wrap;
  background-color: #f8f8f8;
} */

.fr-dropdown-wrapper {
  position: relative;
}

.fr-nav-link {
  display: inline-block;
  padding: 12px 0px;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  font-size: 13px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* Hidden by default */
.fr-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  padding: 10px;


  transition: opacity 0.3s ease-in, max-height 0.3s ease, transform 0.3s ease;

 
}

/* Shown when active */
.fr-dropdown-menu.show {
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
}

.fr-dropdown-list {
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.fr-dropdown-list li {
  padding: 10px 20px;
}

.fr-dropdown-list li a {
  color: #333;
  text-decoration: none;
}










/* Content alignment container */
.fr-dropdown-inner {
  max-width: 1200px; /* or your site's container width */
  margin: 0 auto;
  padding: 0 16px; /* match nav padding */
}

/* Layout inside dropdown */
.fr-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  
}

.fr-dropdown-list li {
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
}



.offer-section{
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0a6fc7;
  padding: 5px 0px;
  gap: 50px;
  margin-top: 10px;
}
.offer-section button{
  background-color: transparent;
  color: white;
  border-color:  white;
  border-radius: 8px;
  padding: 5px;
  font-weight: 600;
  text-transform: uppercase;
}
.offer-section p{
  text-transform: uppercase;
  color: white;
  font-size: 13px;
  font-weight: 600;
}
.section{
  display: flex;
  padding: 20px 0px;
  margin-bottom: 30px;
  
}
.main{
  padding: 10px 30px;
  z-index: 0;
}
.sectiona h1{
  font-size: 2rem;
  margin-top: 5px;
font-family: Georgia, 'Times New Roman', Times, serif;
}


.lp-container {
  font-family: Arial, sans-serif;
  padding: 20px;
  max-width: 600px;
  padding-left: 5px;
  padding-right: 0px;
}

.lp-heading {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
  color: #000;
}

.lp-post {
  position: relative;
  border-left: 2px solid #ddd;
  padding-left: 15px;
  margin-bottom: 20px;
}

.lp-dot {
  width: 8px;
  height: 8px;
  background-color: #c00;
  border-radius: 50%;
  position: absolute;
  left: -5px;
  top: 4px;
}

.lp-time {
  font-size: 13px;
  color: #555;
  margin-bottom: 4px;
}

.lp-red {
  color: #c00;
  font-weight: bold;
}

.lp-title {
  font-size: 17px;
  font-weight: bold;
  color: #000;
}

.lp-updated {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}
.news-block {
  font-family: Georgia, serif;
  border-top: 1px solid #ccc;
  padding: 20px;
  max-width: 700px;
  padding-left: 4px;
  padding-right: 0px;
}

.news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.news-text {
  flex: 1;
  padding-right: 20px;
}

.news-meta {
  font-size: 14px;
  margin-bottom: 6px;
}

.news-category {
  font-weight: bold;
  color: #1976d2; /* Blue */
  margin-right: 8px;
}

.news-author {
  color: #1976d2;
}

.news-title {
    font-size: 17px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 8px;
    color: #000;
}

.news-summary {
  font-size: 16px;
  color: #444;
  line-height: 1.2;
}

.news-image img {
  width: 120px;
  height: 80px;
  object-fit: cover;
}
.sectiona{
  width: 33%;
  padding-top: 15px;
}
.sectiona img{
  width: 100%;
}


.highlight-news-section {
  font-family: Georgia, serif;
  max-width: 400px;
  padding: 20px;
}


.highlight-news-meta {
  font-size: 14px;
  color: #1976d2;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}

.highlight-live-dot {
  width: 8px;
  height: 8px;
  background-color: #c00;
  border-radius: 50%;
  display: inline-block;
}

.highlight-live-label {
  color: #c00;
  font-weight: bold;
}

.highlight-news-category {
  color: #1976d2;
  font-weight: bold;
}

.highlight-news-title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.3;
}

.highlight-news-summary {
  font-size: 16px;
  color: #444;
  line-height: 1.3;
}

.highlight-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}
.sectionb{
  width: 21%;
}


.ul-card-wrapper {
  font-family: Georgia, serif;
  max-width: 400px;
  padding: 20px;
  padding-left: 0px;
}

.ul-card {
  margin-bottom: 30px;
}

.ul-card-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.ul-card-category {
  font-size: 14px;
  color: #1976d2;
  font-weight: bold;
  margin-bottom: 6px;
}

.ul-card-meta {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 6px;
}

.ul-card-section {
  color: #000;
  font-weight: bold;
}

.ul-card-topic {
  color: #1976d2;
  font-weight: normal;
}

.ul-card-title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
}
.sectionc{
  width: 21%;
}
.sectiond{
  width: 25%;
  border-left:1px solid rgb(197, 195, 195) ;
}
.nl-box-wrapper {
  font-family: Georgia, serif;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
  padding: 30px 20px;
}

.nl-box-icon {
  margin-bottom: 20px;
}

.nl-box-description {
  font-size: 18px;
  line-height: 1.2;
  color: #000;
  margin-bottom: 20px;
}

.nl-box-link {
  font-size: 17px;
  color: #1976d2;
  text-decoration: none;
  font-weight: normal;
}

.nl-box-link:hover {
  text-decoration: underline;
}
.st-talk-wrapper {
  font-family: Georgia, serif;
  max-width: 420px;
  padding: 20px;
  padding-top: 0px;
}

.st-talk-header {
  font-size: 14px;
  font-weight: bold;
  border-top: 4px solid #000;
  padding-top: 12px;

  margin-bottom: 16px;
  color: #000;
}

.st-talk-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.st-talk-title {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.2;
  color: #000;
  max-width: 85%;
}

.st-talk-time {
  font-size: 14px;
  color: #666;
  white-space: nowrap;
}

.st-talk-divider {
  border: none;
  border-top: 1px solid #ddd;
  margin: 10px 0;
}


.highlighted {
  color: #1976d2;
  font-weight: bold;
  font-size: 13px;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif ;
}





.part{
  width: 100%;
  display: flex;
  border-top: 4px solid black;
  padding-top: 10px;
}
.parta{
  width: 14%;
}
.partb{
  width: 25%;
}
.partc{
  width: 38%;
}
.partd{
  width: 25%;
}


.epicks-container {
  font-family: Georgia, serif;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.epicks-heading {
  font-size: 16px;
  font-weight: bold;
  border-top: 4px solid #000;
  padding-top: 10px;
  margin-bottom: 20px;
}

.epicks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.epicks-card {
  display: flex;
  flex-direction: column;
}

.epicks-feature-card {
  grid-row: span 2; /* visually taller */
}

.epicks-meta {
  font-size: 14px;
  color: #1976d2;
  font-weight: bold;
  margin-bottom: 6px;
}

.epicks-section {
  font-weight: bold;
}

.epicks-topic {
  margin-left: 8px;
  font-weight: normal;
}

.epicks-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3;
  margin: 10px 0;
  color: #000;
}

.epicks-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  object-fit: cover;
}

.epicks-small-img {
  width: 100%;
  max-height: 80px;
  margin-bottom: 10px;
  object-fit: cover;
}

.epicks-summary {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}
.parta h2{
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 15px;
}




.tariff-article-container {
 
  font-family: Georgia, serif;
  color: #1c1c1c;
  margin: 00px auto;
  line-height: 1.2;
}

.tariff-analysis-link {
  font-size: 14px;
  color: #666;
}

.tariff-analysis-link a {
  color: #005689;
  text-decoration: none;
  font-weight: bold;
}

.tariff-headline {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
  margin: 10px 0 20px 0;
}

.tariff-image {
  width: 100%;
 
}

.tariff-summary {
  font-size: 17px;
  color: #333;
}



.article-wrapper {
 padding: 20px;
 padding-top: 0px;
  font-family: Georgia, serif;
  color: #1c1c1c;
}

.article-block {
  overflow: hidden;
  margin-bottom: 30px;
}

.article-image {
  float: right;
  width: 140px;
  margin-left: 20px;
  margin-top: 15px;
}

.article-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 16px;
}

.article-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.article-summary {
  font-size: 17px;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

.article-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}





.hc-rugby-wrapper {

  margin: 0px auto;
  font-family: Georgia, serif;
  color: #1c1c1c;
}

.hc-rugby-article {
  margin-bottom: 30px;
}

.hc-rugby-section {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 6px;
}

.hc-rugby-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.hc-rugby-summary {
  font-size: 17px;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

.hc-rugby-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}





.energy-awards-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 50px auto;
  font-family: Georgia, serif;
  color: #1c1c1c;
  border-top: 1px solid rgb(194, 192, 192);
}

.energy-awards-logo img {
  width: 260px;
  height: auto;

  margin-top: 30px;
}

.energy-awards-content {
  max-width: 600px;
}

.energy-awards-text {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 15px;
}

.energy-awards-link {
  font-size: 17px;
  color: #0066cc;
  text-decoration: none;
}

.energy-awards-link:hover {
  text-decoration: underline;
}




.opinion{
  width: 100%;
  border-top: 4px solid black;
  display: flex;
}
.opiniona{
  width: 14%;
}
.opinionb{
  width: 40%;
}
.opinionc{
  width: 25%;
  padding: 0px 20px;
}
.opiniond{
  width: 25%;
}


.trade-block {

  margin: 00px auto;
  font-family: Georgia, serif;
  color: #1c1c1c;
}

.trade-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 10px;
}

.trade-title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.trade-summary {
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.2;
  margin-bottom: 30px;
}

.trade-author-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.trade-author-text {
  display: flex;
  flex-direction: column;
}

.trade-author-name {
  font-size: 16px;
  font-weight: bold;
  color: #0066cc;
  margin: 0;
}

.trade-author-role {
  font-size: 16px;
  color: #333;
  margin: 4px 0 0 0;
}

.trade-author-image img {
  width: 80px;
  height: auto;
}



.prod-article {

  margin: 00px auto;
  font-family: Georgia, serif;
  color: #1c1c1c;
}

.prod-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 10px;
}

.prod-title {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.prod-summary {
  font-size: 18px;
  font-style: italic;
  color: #555;
  line-height: 1.2;
  margin-bottom: 32px;
}

.prod-author {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.prod-author-text {
  display: flex;
  flex-direction: column;
}

.prod-author-name {
  font-size: 16px;
  font-weight: bold;
  color: #0066cc;
  margin: 0;
}

.prod-author-role {
  font-size: 16px;
  color: #333;
  margin: 4px 0 0 0;
}

.prod-author-image img {
  width: 80px;
  height: auto;
}


.opiniona h2{
  font-size: 14px;
  margin-top: 15px;
}








.ai-cs-container {
  max-width: 100%;
  margin: 60px 0px;
  display: flex;
  
  gap: 20px;
  padding: 40px 30px;
  background-color: rgb(228, 227, 227);
}

.ai-cs-intro {
  flex: 1;

}

.ai-cs-label {
  display: inline-block;
  border: 2px solid #1c1c1c;
  font-size: 14px;
  font-weight: bold;
  padding: 2px 8px;
  margin-bottom: 20px;
}

.ai-cs-heading {
  font-size: 36px;
  font-weight: 700;
  margin: 20px 0 20px 0;
}

.ai-cs-description {
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.ai-cs-sponsored {
  font-size: 14px;
  color: #555;
  margin-bottom: 25px;
}

.ai-cs-link {
  font-size: 16px;
  color: #0066cc;
  text-decoration: none;
}

.ai-cs-link:hover {
  text-decoration: underline;
}

.ai-cs-cards {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-cs-card {
  max-width: 100%;
}

.ai-cs-card-img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.ai-cs-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.ai-cs-card-text {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}


.techno{
  width: 100%;
  display: flex;
  border-top: 4px solid black;
  padding-top: 10px;
}
.technoa{
  width: 15%;
}
.technob{
  width:38% ;
}
.technoc{
  width: 26%;
  padding: 0px 20px;
}
.technod{
  width: 26%;
}
.technoa h2{
  font-size: 14px;
  text-transform: uppercase;
}

.techa h2{
  font-size: 14px;
  text-transform: uppercase;
}
.areala h2{
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 0px;
}



.rba-article-wrapper {
  
  margin: 40px auto;
 
  color: #1c1c1c;
}

.rba-article-block {
  overflow: hidden;
  margin-bottom: 30px;
}

.rba-article-image {
  float: right;
  width: 140px;
  margin-left: 20px;
  margin-top: 20px;
}

.rba-article-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 6px;
}

.rba-article-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 10px 0;
}

.rba-article-summary {
  font-size: 17px;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

.rba-article-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}



.econ-slice-wrapper {
 
  margin: 40px auto;
  
  color: #1c1c1c;
  
  
}

.econ-slice-block {
  overflow: hidden;
  margin-bottom: 30px;
  
}



.econ-slice-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 6px;
}

.econ-slice-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.econ-slice-summary {
  font-size: 17px;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

.econ-slice-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}






.ratewatch-wrapper {
  width: 680px;
  margin: 40px auto;
  font-family: Georgia, serif;
  color: #1c1c1c;
}

.ratewatch-block {
  overflow: hidden;
  margin-bottom: 30px;
}

.ratewatch-image {
  float: right;
  width: 89px;
  margin-left: 20px;
  margin-top: 20px;
}

.ratewatch-category {
  font-size: 14px;
  color: #0066cc;
  font-weight: bold;
  margin-bottom: 6px;
}

.ratewatch-title {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0 10px 0;
}

.ratewatch-summary {
  font-size: 17px;
  line-height: 1.2;
  color: #333;
  margin: 0;
}

.ratewatch-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 20px 0;
}



.marketstrip-bar {
  border-top: 6px solid #000;
  border-bottom: 1px solid #ddd;
  padding: 10px 0px;
  background-color: #fff;
  font-family: Arial, sans-serif;
  font-size: 14px;
  overflow-x: auto;
}

.marketstrip-items {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.marketstrip-item {
  display: inline-block;
  color: #000;
}

.marketstrip-name {
  color: #0057b7;
  font-weight: bold;
  margin-right: 5px;
}

.marketstrip-value {
  font-weight: bold;
  margin-right: 3px;
}

.marketstrip-change {
  font-size: 13px;
  margin-top: 2px;
}

.marketstrip-change.up {
  color: green;
}

.marketstrip-change.down {
  color: #b30000;
}

.marketstrip-divider {
  width: 4px;
  height: 35px;
  background-color: #ccc;
  margin: 0 5px;
}

.marketstrip-viewall {
  margin-left: auto;
  color: #0057b7;
  font-weight: normal;
  text-decoration: none;
  font-size: 14px;
}

.marketstrip-viewall:hover {
  text-decoration: underline;
}




.tech{
  width: 75%;
  display: flex;
  border-top: 4px solid black;
  padding-top: 10px;
}
.techa{
  width: 19%;
}
.techb{
  width:48% ;
}
.techc{
  padding-left: 20px;
  width: 34%;
}












.collector-showcase {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  max-width: 800px;
  font-family: 'Georgia', serif;
  /* padding: 20px; */
  padding-top: 20px;
}

.collector-details {
  flex: 1;
}

.collector-label {
  display: inline-block;
  color: #1a73e8;
  font-size: 14px;
  text-decoration: none;
  margin-bottom: 8px;
}

.collector-heading {
  font-size: 24px;
  font-weight: bold;
  color: #1a1a1a;
  margin: 0px 0;
  line-height: 1.1;
}

.collector-info {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.2;
  margin-top: 10px;
}

.collector-visual img {
  max-width: 220px;
  height: auto;
  display: block;
  margin-top: 30px;
}


.arealb1{
  display: flex;
}
.arealb2{
  display: flex;
  border-top: 1px solid lightgrey;
  margin-top: 20px;
}
.areal{
  border-top:4px solid black ;
  padding-top: 20px;
  margin-top: 40px;
  display: flex;
}
.arealb1 img{
  width: 49%;
}
.areal{
  width: 100%;
}
.areala{
  width: 14%;
}
.arealb{
  width: 86%;
}


.goldbuzz-wrapper {
  max-width: 750px;
  font-family: Georgia, serif;
  padding-left: 20px;
}

.goldbuzz-category {
  font-size: 14px;
  color: #1a73e8;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.goldbuzz-headline {
  font-size: 42px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.goldbuzz-subtext {
  font-size: 18px;
  color: #555;
  line-height: 1.2;
  margin: 0;
}



.mview{
  width: 100%;
  display: flex;
  border-top: 4px solid black;
  padding-top: 20px;
}
.mview1{
  width: 14%;
}
.mview2{
  width: 86%;
}
.mview1 h2{
  text-transform: uppercase;
  margin-top: 0px;
  font-size: 14px;
}
.Mag-apr{
  color: #0252a3;
  font-weight: bold;
}



.ranknews-container {
  display: flex;
  justify-content: space-between;
  max-width: 1100px;
  padding: 20px;
  font-family: Georgia, serif;
  gap: 40px;
}

.ranknews-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ranknews-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 12px;
}

.ranknews-number {
  font-size: 24px;
  font-weight: 400;
  color: #555;
  min-width: 20px;
  
}

.ranknews-title {
  font-size: 15px;
  font-weight: bold;
  color: #111;
  line-height: 1.2;
  margin-top: 5px;
}

.ranknews-livebadge {
  font-weight: normal;
  font-size: 14px;
  color: #d00;
  margin-right: 6px;
}

.ranknews-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background-color: #d00;
  border-radius: 50%;
  margin-right: 4px;
  position: relative;
  top: -1px;
}

.ranknews-live .ranknews-title {
  font-weight: 600;
}


.g-section{
  width: 100%;
  display: flex;
  border-top: 4px solid black;
  padding-top: 20px;
}
.g1 h2{
 text-transform: uppercase;
 font-size: 13px;

}
.g1{
  width: 14%;
}
.g2{
  width: 86%;
  display: flex;
}
.g2a img{
  width: 100%;
}
.g2a{
  width: 72%;
}
.g2b{
margin-top: 100px;
  
}




.cartoonblock-wrapper {
  font-family: Georgia, serif;

  padding: 20px;

}

.cartoonblock-title {
  font-size: 32px;
  font-weight: bold;
  color: #111;
  line-height: 1.3;
  margin: 0 0 10px;
}

.cartoonblock-date {
  font-size: 16px;
  color: #666;
  margin: 0 0 15px;
}

.cartoonblock-divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

.cartoonblock-link {
  font-size: 16px;
  color: #1a73e8;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  font-family: Arial, sans-serif;
}

.cartoonblock-arrow {
  margin-left: 6px;
  font-size: 18px;
}


.maggrid-wrapper {
  
  margin: auto;
  padding: 20px 0px;
  font-family: Georgia, serif;
}

.maggrid-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: start;
  margin-bottom: 25px;
  
}

.maggrid-logo-left {
  font-size: 20px;
  font-weight: 100;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.maggrid-logo-right {
  font-size: 20px;
  font-weight: 100;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.maggrid-columns {
  display: flex;
  gap: 30px;
}

.maggrid-column {
  border-top: 4px solid black;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.maggrid-image {
  width: 100%;
  height: 45vh;
  object-fit: cover;
  margin-bottom: 12px;
}
.div{
  gap: 20px;
}

.maggrid-headline {
  font-size: 19px;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 0 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.maggrid-author {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}




.magazine-article h2{
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.maggrid-subitem {
  border-top: 1px solid #ddd;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  
}



.finbanner-bar {
  background-color: #0b6fcc;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 50px;
  font-family: Georgia, serif;
}

.finbanner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.finbanner-logo {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 1px;
}


.detb img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.finbanner-tagline {
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.finbanner-icons a {
  color: white;
  font-size: 18px;
  margin-left: 40px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.finbanner-icons a:hover {
  opacity: 0.7;
}




.footergrid-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  font-family: Georgia, serif;

  padding-left: 50px;
  max-width: 1200px;
  margin: auto;
  border-top: 1px solid #ddd;
  font-size: 16px;
}

.footergrid-main {
  display: flex;
  flex: 3;
  gap: 60px;
  padding-right: 10px;
}

.footergrid-column {
  flex: 1;
}

.footergrid-title {
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 10px;
}

.footergrid-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.footergrid-list li {
  margin-bottom: 8px;
  cursor: pointer;
}

.footergrid-account {
  flex: 1;
  padding-left: 30px;
  border-left: 1px solid #ddd;
}

.footergrid-account .footergrid-title {
  font-weight: bold;
  font-size: 15px;
  margin-top: 0;
}




.footbar-wrapper {
  font-family: Georgia, serif;
  font-size: 14px;
  color: #111;
  
  margin-top: 30px;
  padding: 30px;
  
}

.footbar-row {

  padding: 15px 20px;
  border-top: 1px solid #ddd;
}

.footbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footbar-links li {
  cursor: pointer;
}

.footbar-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
  flex-wrap: wrap;
  border-top: 1px solid #ddd;
}

.footbar-copy {
  margin: 0;
  font-size: 14px;
  color: #111;
}

.footbar-apps img {
  height: 38px;
  margin-left: 10px;
}





/* detailed page */
.det-sectiona{
  padding: 30px;
  padding-top: 0px;
}
.det-seca{
  display: flex;
  gap: 20px;

}
.det-seca p{
  margin: 0;
  font-size: 13px;
  color: rgb(50, 127, 186);
}
.det-secb p{
  margin: 0;
  font-size: 13px;
  color: #005689;
}
.det-sectiona1{
  display: flex;
  justify-content: space-between;
}

.det-sectiona h1{
  border-top: 6px solid black;
  padding-top: 40px;
  margin-top: 7px;
  font-size: 3rem;
  padding-bottom: 40px;
  border-bottom:  1px solid lightgray;
  font-family: Georgia, 'Times New Roman', Times, serif;
}







.magazine-container {
    display: flex
;
    max-width: 1100px;
    margin: 40px auto;
    gap: 60px;
    font-family: Georgia, serif;
    color: #222;
}

.magazine-author-box {
  width: 270px;
  padding-right: 10px;
 
  text-align: center;
}

.magazine-author-image {
  width: 100%;
  max-width: 260px;
  margin: 0 auto 10px;
  display: block;
}

.magazine-author-name {
  font-weight: bold;
  font-size: 18px;
  margin-top: 10px;
}

.magazine-author-role {
  font-style: italic;
  font-size: 15px;
  color: #555;
  margin: 5px 0 15px;
}

.magazine-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 20px;
}

.magazine-actions {
  display: flex;
  justify-content: space-around;
  margin-bottom: 10px;
}

.magazine-action-btn {
  border: 1px solid #ccc;
  background-color: white;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  width: 48%;
}

.magazine-gift-btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
  font-size: 14px;
  background-color: white;
  border: 1px solid #ccc;
  cursor: pointer;
}

.magazine-article {
  padding-left: 30px;
  flex: 1;
}

.magazine-article p {
  font-size: 19px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.magazine-article em {
  font-style: italic;
}

.det-sectionb{
  width: 100%;
}




.subscribe-banner {
    background-color: #0066cc;
    color: white;
    padding: 40px 30px;
    text-align: center;
    border-radius: 10px;
    max-width: 100%;
    margin: 40px auto;
    /* margin-left: 300px; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Georgia, serif;
    /* align-items: center; */
    justify-content: right;
}

    .subscribe-heading {
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .subscribe-text {
      font-size: 16px;
      line-height: 1.3;
      margin-bottom: 25px;
    }

    .subscribe-text del {
      opacity: 0.8;
    }

    .subscribe-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
      text-align: center;
      justify-content: center;
    }

    .subscribe-btn {
      background-color: white;
      color: #0066cc;
      font-weight: bold;
      padding: 12px 18px;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-size: 14px;
    }

    .subscribe-login {
      font-size: 14px;
      color: white;
    }

    .subscribe-login a {
      font-weight: bold;
      color: white;
      text-decoration: underline;
      margin-left: 5px;
    }




.det-sectionc{
  display: flex;
  border-top: 4px solid black;
}
.det-sectionc1 h2{
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 32px;
}
.det-sectionc1{
  width: 25%;
}
   .det-sectionc2{
      width: 50%;
    }

        .det-sectionc3{
      width: 25% ;
    }


 .streaming-news-container {
     padding-right: 20px;
      margin: 10px auto;
      font-family: Georgia, serif;
    }

    .streaming-news-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid #ddd;
      padding: 20px 0;
    }

    .streaming-news-text {
      flex: 1;
      padding-right: 20px;
    }

    .streaming-news-category {
      color: #1a73e8;
      font-size: 14px;
      font-family: Arial, sans-serif;
      margin-bottom: 5px;
    }

    .streaming-news-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
      color: black;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

    .streaming-news-meta {
      font-size: 14px;
      color: #666;
      font-family: Arial, sans-serif;
    }

    .streaming-news-image {
      width: 130px;
      height: auto;
      object-fit: cover;
    }

 





     .mostviewed-container {
      max-width: 400px;
      font-family: Georgia, serif;
      margin: 30px auto;
    }

    .mostviewed-heading {
      font-size: 14px;
      font-weight: bold;
      font-family: Arial, sans-serif;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .mostviewed-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      margin-bottom: 25px;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 10px;
    }

    .mostviewed-number {
      font-size: 28px;
      color: #666;
      min-width: 20px;
    }

    .mostviewed-title {
      font-size: 18px;
      line-height: 1.4;
      font-weight: 500;
      color: black;
    }

    .mostviewed-item:last-child {
      border-bottom: none;
    }









    /* category page */


    .categ-section{
      padding: 30px;
      padding-top: 0px;
     
    }
    .categ{
       border-top: 6px solid black;
       padding-top: 30px;
       border-bottom: 1px solid lightgrey;
    }
    .categ span{
      color: rgb(25, 132, 174);
    }
    .categ h1{
      font-size: 4rem;
      font-family: Georgia, 'Times New Roman', Times, serif;
    }
    .categg{
      display: flex;
    }
    .bl{
      height: 140vh;
    }
    .catega{
      width: 18%;
    }
    .categb{
      width: 60%;
    }
    .categc{
      width: 30%;
    }
    .catega  h2{
      text-transform: uppercase;
      font-size: 14px;
      margin-top: 30px;

    }



 .categ-container {
      max-width: 950px;
      margin: 30px auto;
      font-family: Georgia, serif;
     
    }

    .categ-article {
      display: flex;
      justify-content: space-between;
      margin-bottom: 40px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 20px;
    }

    .categ-text {
      flex: 1;
      padding-right: 25px;
    }

    .categ-category {
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #1a73e8;
      margin-bottom: 5px;
    }

    .categ-title {
      font-size: 22px;
      font-weight: bold;
      line-height: 1.2;
      color: #111;
      margin-bottom: 10px;
    }

    .categ-description {
      font-size: 18px;
      color: #444;
      line-height: 1.2;
      margin-bottom: 12px;
    }

    .categ-meta {
      font-size: 14px;
      font-family: Arial, sans-serif;
      color: #888;
    }

    .categ-image {
      width: 160px;
      height: 20vh;
      object-fit: cover;
      margin-top: 25px;
    }


     .latest-container {
      max-width: 400px;
      font-family: Georgia, serif;
      border-top: 4px solid #000;
      padding-top: 10px;
      margin-left: 50px;
    }
    a{
      text-decoration: none;
      color: black;
    }

    .latest-heading {
      font-family: Arial, sans-serif;
      font-weight: bold;
      font-size: 16px;
      text-transform: uppercase;
      margin-bottom: 20px;
    }

    .latest-story {
      margin-bottom: 25px;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 15px;
    }

    .latest-category {
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #1a73e8;
      margin-bottom: 6px;
    }

    .latest-category span {
      color: #111;
      font-weight: bold;
      margin-right: 5px;
    }

    .latest-title {
      font-size: 18px;
      font-weight: bold;
      color: #111;
      line-height: 1.4;
      margin-bottom: 8px;
    }

    .latest-time {
      font-family: Arial, sans-serif;
      font-size: 14px;
      color: #888;
    }
.custom-menu{
  display: none;
}
.mob-view{
  display: none;
}



/* detail-page 2 ################################################################################*/

.det{
  border-top: 4px solid black;
  border-bottom: 1px solid lightgrey;
  display: flex;
  width: 100%;
  padding: 20px 0px;
  padding-bottom: 40px;
  gap: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.deta{
  width: 50%;
  padding-top: 10px;
}
.detb{
  width: 50%;
}
.detb img{
  width: 100%;
}
.deta1{
  padding-bottom: 20px;
  display: flex;
 gap: 30px;
  text-align: center;
  justify-content: center;
  align-items: center;
 font-size: 13px;
}
.det-p{
   color: #03598b;
 font-size: 10px;
 text-transform: capitalize;
}
.detspan{
  font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  font-size: 50px;
}
.deta h1{
  border-top: 0px;
  font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
  font-weight: 100;
  border-bottom: 0px;
  font-size: 4rem;
  margin-bottom: 0px;
  padding: 7px;
  line-height: 65px;
}
.deta2 p{
  color: rgb(127, 125, 125);
  font-style: italic;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 20px;
}







/* ########################################################################################################### */

@media (max-width: 767px){


.deta {
    width: 100%;
    order: 2;
  
}
.detb img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
}
.detb {

    width: 100%;
}
.det {
    border-top: 2px solid black;
    border-bottom: 1px solid lightgrey;
    flex-direction: column;
    width: 100%;
    padding: 30px 0px;
    padding-bottom: 40px;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
}
.deta1 {
    padding-top: 5px;
    display: flex
;
    gap: 30px;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 13px;
}

  
.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-item{
  flex-direction: column;
}
.news-image{
  width: 100%;
  margin-top: 20px;
}
.news-text {
    flex: 1;
    padding-right: 0px;
}
.news-block{
  padding-left: 0px;
}


  .ai-cs-container {
    max-width: 100%;
    margin: 60px 0px;
   flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
    background-color: rgb(228, 227, 227);
}
.collector-showcase {
  display: none;
}
.arealb2 {
    flex-direction: column;
    border-top: 1px solid lightgrey;
    margin-top: 20px;
}
.maggrid-columns {
    flex-direction: column;
    gap: 30px;
}
.footergrid-main {
    flex-direction: column;
    flex: 3;
    gap: 60px;
    padding-right: 10px;
}
.footergrid-wrapper {
 display: none;
}
.arealb1 {
    flex-direction: column;
}
.techno {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.footbar-row{
  display: none;
}
.footbar-copy {
    margin: 0;
    font-size: 18px;
    color: #111;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}

.ul-card-img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.footbar-bottom {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    flex-wrap: wrap;
    border-top: 0px solid #ddd;
}

.opinion {
    width: 100%;
    border-top: 4px solid black;
 flex-direction: column;
}
.fr-logo {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #005BAC;
    margin: 0;
}
.fr-newsfeed-label{
  display: none;
}
.fr-left-controls i {
    font-size: 18px;
}
.main {
    padding: 10px 15px;
    z-index: 0;
}
.fr-top-nav{
  display: none;
}
.fr-nav-menu{
  display: none;
}
.offer-section {
    text-align: center;
   flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a6fc7;
    padding: 5px 0px;
    gap: 0px;
    margin-top: 10px;
}
.sectiona h1 {
    font-size: 1.4rem;
    margin-top: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.section {
    flex-direction: column;
    padding: 20px 0px;
    margin-bottom: 0px;
}
.sectiona {
    width: 100%;
    padding-top: 1px;
}
.sectionb {
    width: 100%;
}
.highlight-news-section {

  font-family: Georgia, serif;
      max-width: 400px;
  padding: 0px;

}
.part {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.parta {
    width: 100%;
}
.partb {
    width: 100%;
}

.sectionc {
    width: 100%;
}
.ul-card-wrapper {
    font-family: Georgia, serif;
    max-width: 400px;
    padding: 0px;
    padding-left: 0px;
}
.sectiond {
    width: 100%;
    border-left: 0px solid rgb(197, 195, 195);
}
.st-talk-wrapper {
    font-family: Georgia, serif;
    max-width: 420px;
   padding: 0px;
    padding-top: 0px;
}
.partc {
    width: 100%;
}
.article-wrapper {
    padding: 0px;
    padding-top: 0px;
    font-family: Georgia, serif;
    color: #1c1c1c;
}
.magazine-article h2 {
    
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.partd {
    width: 100%;
}
.energy-awards-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.opinionb {
    width: 100%;
}
.opinionc {
    width: 100%;
    padding: 0px 0px;
}
.opiniond {
    width: 100%;
}
.ai-cs-cards {
    flex: 2;
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fr-main-nav {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    position: sticky;
    z-index: 9999;
    top: 0;
}
.technob {
    width: 100%;
}
.technoc {
    width: 100%;
    padding: 0px 0px;
} 
.technod {
    width: 100%;
}
.tech {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.techb {
    width: 100%;
}
.techc {
    padding-left: 0px;
    width: 100%;
}
.areala {
    width: 100%;
}
.areal {
    border-top: 4px solid black;
    padding-top: 20px;
    margin-top: 40px;
    flex-direction: column;
}
.arealb1 img {
    width: 100%;
}
.arealb {
    width: 100%;
}
.goldbuzz-wrapper {
    max-width: 750px;
    font-family: Georgia, serif;
    padding-left: 0px;
}
.goldbuzz-headline {
    font-size: 36px;
    font-weight: bold;
    color: #111;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
.collector-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}
.mview {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.ranknews-container {
    flex-direction: column;
    justify-content: space-between;
    max-width: 1100px;
    padding: 0px;
    font-family: Georgia, serif;
    gap: 40px;
}
.ranknews-column {
    flex: 1;
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.mview2 {
    width: 100%;
}
.mview1 {
    width: 100%;
}
.g-section {
    width: 100%;
    flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.g1 {
    width: 100%;
}
.g2 {
    width: 100%;
    flex-direction: column;
}
.g2a {
    width: 100%;
}
.g2b {
    margin-top: 10px;
}
.cartoonblock-wrapper {
    font-family: Georgia, serif;
    padding: 10px;
}
.maggrid-wrapper {
    margin: auto;
   padding: 0px;
    font-family: Georgia, serif;
}
.finbanner-left {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.finbanner-logo {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}
.finbanner-bar {
    background-color: #0b6fcc;
    color: white;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 24px 15px;
    font-family: Georgia, serif;
}
.finbanner-tagline{
  display: none;
}
.energy-awards-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    font-family: Georgia, serif;
    color: #1c1c1c;
    border-top: 1px solid rgb(194, 192, 192);
}
.energy-awards-logo img {
  width: 100%;
    height: auto;
    margin-top: 0px;
}
.energy-awards-content {
    max-width: 600px;
    text-align: center;
}


.custom-menu {
  width: 100%;
  display: block;
  max-width: 100%;
  border-top: 1px solid #ccc;
}

.custom-menu-item {
  border-bottom: 1px solid #ccc;
}

.custom-menu-header {
  font-weight: bold;
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-menu-header:hover {
  background-color: #f9f9f9;
}

.custom-dropdown-content {
  display: none;
  padding: 12px;
  background-color: #f5f5f5;
  font-size: 14px;
}

.custom-menu-item.active .custom-dropdown-content {
  display: block;
}

.custom-menu-item.active .custom-arrow {
  transform: rotate(180deg);
}

.cartoonblock-title {
    font-size: 27px;
    font-weight: bold;
    color: #111;
    line-height: 1.3;
    margin: 0 0 10px;
}

.mob-view{
  display: flex;
  justify-content: space-between;
  padding: 0px;
 
}
.pp1{
  margin-top: 5px;
}
.pp2{
  margin-top: 5px;
  color: #0a6fc7;
}







/* categ-page */
.categ h1 {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.categg {
flex-direction: column;
}

.categ-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
}
.categ-image {
    width: 90px;
    height: 13vh;
    object-fit: cover;
    margin-top: 25px;
}
.catega {
    width: 100%;
}
.categb {
    width: 100%;
}
.categ-description {
    font-size: 14px;
    color: #444;
    line-height: 1.2;
    margin-bottom: 12px;
}
.categ-category {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #1a73e8;
    margin-bottom: 5px;
}
.bl{
  display: none;
}
.catega h2 {
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 0px;
    padding-top: 10px;
}
.categ-section {
    padding: 15px;
    padding-top: 0px;
}
.categ {
    border-top: 6px solid black;
    padding-top: 20px;
    border-bottom: 1px solid lightgrey;
}




.categc {
    width: 100%;
}
.latest-container {
    max-width: 400px;
    font-family: Georgia, serif;
    border-top: 4px solid #000;
    padding-top: 10px;
    margin-left: 0px;
}



.subscribe-banner {
    background-color: #0066cc;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    margin-left: 00px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Georgia, serif;
}
.det-sectionc {
    flex-direction: column ;
    border-top: 4px solid black;
}
.det-sectionc3 {
    width: 100%;
}
.det-sectiona {
    padding: 15px;
    padding-top: 0px;
}

.det-sectiona h1 {
    border-top: 1px solid black;
    padding-top: 40px;
    margin-top: 5px;
    font-size: 2rem;
    line-height: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.det-sectionb {
    width: 100%;
}
.magazine-container {
    flex-direction: column;
    max-width: 1100px;
    margin: 40px auto;
    font-family: Georgia, serif;
    color: #222;
}

.magazine-author-box {
    width: 100%;
    padding-right: 0px;
    text-align: center;
}
.subscribe-actions {
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.subscribe-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 25px;
    text-align: center;
}
.subscribe-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.det-sectionc1 {
    width: 100%;
}
.det-sectionc2 {
    width: 100%;
}
.streaming-news-container {
    padding-right: 0px;
    margin: 10px auto;
    font-family: Georgia, serif;
}
.magazine-article {
    padding-left: 0px;
    flex: 1;
}
.det-sectiona{
  padding-top: 10px;
}

.finbanner-icons a {
    color: white;
    font-size: 18px;
    margin-left: 30px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.fas.fa-search{
  display: none;
}



.magazine-article p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
  
}

.mostviewed-container {
    max-width: 100%;
    font-family: Georgia, serif;
    margin: 17px auto;
}
}




@media (min-width: 768px) and (max-width: 991.98px){
  
.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-item{
  flex-direction: column;
}
.news-image{
  width: 100%;
  margin-top: 20px;
}
.news-text {
    flex: 1;
    padding-right: 0px;
}
.news-block{
  padding-left: 0px;
}


  .ai-cs-container {
    max-width: 100%;
    margin: 60px 0px;
   flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
    background-color: rgb(228, 227, 227);
}
.collector-showcase {
  display: none;
}
.arealb2 {
    flex-direction: column;
    border-top: 1px solid lightgrey;
    margin-top: 20px;
}
.maggrid-columns {
    flex-direction: column;
    gap: 30px;
}
.footergrid-main {
    flex-direction: column;
    flex: 3;
    gap: 60px;
    padding-right: 10px;
}
.footergrid-wrapper {
 display: none;
}
.arealb1 {
    flex-direction: column;
}
.techno {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.footbar-row{
  display: none;
}
.footbar-copy {
    margin: 0;
    font-size: 18px;
    color: #111;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}
.opinion {
    width: 100%;
    border-top: 4px solid black;
 flex-direction: column;
}
.fr-logo {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #005BAC;
    margin: 0;
}
.fr-newsfeed-label{
  display: none;
}
.fr-left-controls i {
    font-size: 18px;
}
.main {
    padding: 10px 15px;
    z-index: 0;
}
.fr-top-nav{
  display: none;
}
.fr-nav-menu{
  display: none;
}
.offer-section {
    text-align: center;
   flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a6fc7;
    padding: 5px 0px;
    gap: 0px;
    margin-top: 10px;
}
.sectiona h1 {
    font-size: 1.4rem;
    margin-top: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.section {
    flex-direction: column;
    padding: 20px 0px;
    margin-bottom: 30px;
}
.sectiona {
    width: 100%;
    padding-top: 1px;
}
.sectionb {
    width: 100%;
}
.highlight-news-section {
    font-family: Georgia, serif;
    max-width: 100%;
   padding: 0px;
}
.part {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.parta {
    width: 100%;
}
.partb {
    width: 100%;
}

.sectionc {
    width: 100%;
}
.ul-card-wrapper {
    font-family: Georgia, serif;
    max-width: 100%;
    padding: 0px;
    padding-left: 0px;
}
.sectiond {
    width: 100%;
    border-left: 0px solid rgb(197, 195, 195);
}
.st-talk-wrapper {
    font-family: Georgia, serif;
    max-width: 100%;
   padding: 0px;
    padding-top: 0px;
}
.partc {
    width: 100%;
}
.article-wrapper {
    padding: 0px;
    padding-top: 0px;
    font-family: Georgia, serif;
    color: #1c1c1c;
}
.partd {
    width: 100%;
}
.energy-awards-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.opinionb {
    width: 100%;
}
.opinionc {
    width: 100%;
    padding: 0px 0px;
}
.opiniond {
    width: 100%;
}
.ai-cs-cards {
    flex: 2;
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fr-main-nav {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    position: sticky;
    z-index: 9999;
    top: 0;
}
.technob {
    width: 100%;
}
.technoc {
    width: 100%;
    padding: 0px 0px;
} 
.technod {
    width: 100%;
}
.tech {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.techb {
    width: 100%;
}
.techc {
    padding-left: 0px;
    width: 100%;
}
.areala {
    width: 100%;
}
.areal {
    border-top: 4px solid black;
    padding-top: 20px;
    margin-top: 40px;
    flex-direction: column;
}
.arealb1 img {
    width: 100%;
}
.arealb {
    width: 100%;
}
.goldbuzz-wrapper {
    max-width: 750px;
    font-family: Georgia, serif;
    padding-left: 0px;
}
.goldbuzz-headline {
    font-size: 36px;
    font-weight: bold;
    color: #111;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
.collector-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}
.mview {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.ranknews-container {
    flex-direction: column;
    justify-content: space-between;
    max-width: 1100px;
    padding: 20px;
    font-family: Georgia, serif;
    gap: 40px;
}
.ranknews-column {
    flex: 1;
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.mview2 {
    width: 100%;
}
.mview1 {
    width: 100%;
}
.g-section {
    width: 100%;
    flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.g1 {
    width: 100%;
}
.g2 {
    width: 100%;
    flex-direction: column;
}
.g2a {
    width: 100%;
}
.g2b {
    margin-top: 10px;
}
.cartoonblock-wrapper {
    font-family: Georgia, serif;
    padding: 10px;
}
.maggrid-wrapper {
    margin: auto;
   padding: 0px;
    font-family: Georgia, serif;
}
.finbanner-left {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.finbanner-logo {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}
.finbanner-bar {
    background-color: #0b6fcc;
    color: white;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 24px 15px;
    font-family: Georgia, serif;
}
.finbanner-tagline{
  display: none;
}
.energy-awards-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    font-family: Georgia, serif;
    color: #1c1c1c;
    border-top: 1px solid rgb(194, 192, 192);
}
.energy-awards-logo img {
  width: 100%;
    height: auto;
    margin-top: 0px;
}
.energy-awards-content {
    max-width: 600px;
    text-align: center;
}


.custom-menu {
  width: 100%;
  display: block;
  max-width: 100%;
  border-top: 1px solid #ccc;
}

.custom-menu-item {
  border-bottom: 1px solid #ccc;
}

.custom-menu-header {
  font-weight: bold;
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-menu-header:hover {
  background-color: #f9f9f9;
}

.custom-dropdown-content {
  display: none;
  padding: 12px;
  background-color: #f5f5f5;
  font-size: 14px;
}

.custom-menu-item.active .custom-dropdown-content {
  display: block;
}

.custom-menu-item.active .custom-arrow {
  transform: rotate(180deg);
}

.cartoonblock-title {
    font-size: 27px;
    font-weight: bold;
    color: #111;
    line-height: 1.3;
    margin: 0 0 10px;
}

.mob-view{
  display: flex;
  justify-content: space-between;
  padding: 0px;
 
}
.pp1{
  margin-top: 5px;
}
.pp2{
  margin-top: 5px;
  color: #0a6fc7;
}







/* categ-page */
.categ h1 {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.categg {
flex-direction: column;
}

.categ-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
}
.categ-image {
    width: 90px;
    height: 13vh;
    object-fit: cover;
    margin-top: 25px;
}
.catega {
    width: 100%;
}
.categb {
    width: 100%;
}
.categ-description {
    font-size: 14px;
    color: #444;
    line-height: 1.2;
    margin-bottom: 12px;
}
.categ-category {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #1a73e8;
    margin-bottom: 5px;
}
.bl{
  display: none;
}
.catega h2 {
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 0px;
    padding-top: 10px;
}
.categ-section {
    padding: 15px;
    padding-top: 0px;
}
.categ {
    border-top: 6px solid black;
    padding-top: 20px;
    border-bottom: 1px solid lightgrey;
}




.categc {
    width: 100%;
}
.latest-container {
    max-width: 400px;
    font-family: Georgia, serif;
    border-top: 4px solid #000;
    padding-top: 10px;
    margin-left: 0px;
}



.subscribe-banner {
    background-color: #0066cc;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    margin-left: 00px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Georgia, serif;
}
.det-sectionc {
    flex-direction: column ;
    border-top: 4px solid black;
}
.det-sectionc3 {
    width: 100%;
}
.det-sectiona {
    padding: 15px;
    padding-top: 0px;
}
.det-sectiona h1 {
    border-top: 6px solid black;
    padding-top: 40px;
    margin-top: 11px;
    font-size: 2rem;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.det-sectionb {
    width: 100%;
}
.magazine-container {
    flex-direction: column;
    max-width: 1100px;
    margin: 40px auto;
    font-family: Georgia, serif;
    color: #222;
}

.magazine-author-box {
    width: 100%;
    padding-right: 0px;
    text-align: center;
}
.subscribe-actions {
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.subscribe-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 25px;
    text-align: center;
}
.subscribe-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.det-sectionc1 {
    width: 100%;
}
.det-sectionc2 {
    width: 100%;
}
.streaming-news-container {
    padding-right: 0px;
    margin: 10px auto;
    font-family: Georgia, serif;
}
.magazine-article {
    padding-left: 0px;
    flex: 1;
}
.det-sectiona{
  padding-top: 10px;
}

.finbanner-icons a {
    color: white;
    font-size: 18px;
    margin-left: 30px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.fas.fa-search{
  display: none;
}



.magazine-article p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}
.mostviewed-container {
    max-width: 100%;
    font-family: Georgia, serif;
    margin: 17px auto;
}

}
@media (min-width: 992px) and (max-width: 1200px){
  

  .ai-cs-container {
    max-width: 100%;
    margin: 60px 0px;
   flex-direction: column;
    gap: 20px;
    padding: 40px 15px;
    background-color: rgb(228, 227, 227);
}
.collector-showcase {
  display: none;
}
.arealb2 {
    flex-direction: column;
    border-top: 1px solid lightgrey;
    margin-top: 20px;
}
.maggrid-columns {
    flex-direction: column;
    gap: 30px;
}
.footergrid-main {
    flex-direction: column;
    flex: 3;
    gap: 60px;
    padding-right: 10px;
}
.footergrid-wrapper {
 display: none;
}
.arealb1 {
    flex-direction: column;
}
.techno {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.footbar-row{
  display: none;
}
.footbar-copy {
    margin: 0;
    font-size: 18px;
    color: #111;
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
}
.opinion {
    width: 100%;
    border-top: 4px solid black;
 flex-direction: column;
}
.fr-logo {
    font-family: 'Georgia', serif;
    font-size: 18px;
    color: #005BAC;
    margin: 0;
}
.fr-newsfeed-label{
  display: none;
}
.fr-left-controls i {
    font-size: 18px;
}
.main {
    padding: 10px 15px;
    z-index: 0;
}
.fr-top-nav{
  display: none;
}
.fr-nav-menu{
  display: none;
}
.offer-section {
    text-align: center;
   flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #0a6fc7;
    padding: 5px 0px;
    gap: 0px;
    margin-top: 10px;
}
.sectiona h1 {
    font-size: 1.4rem;
    margin-top: 5px;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.section {
    flex-direction: column;
    padding: 20px 0px;
    margin-bottom: 30px;
}
.sectiona {
    width: 100%;
    padding-top: 1px;
}
.sectionb {
    width: 100%;
}
.highlight-news-section {
    font-family: Georgia, serif;
    max-width: 100%;
   padding: 0px;
}
.part {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.parta {
    width: 100%;
}
.partb {
    width: 100%;
}

.sectionc {
    width: 100%;
}
.ul-card-wrapper {
    font-family: Georgia, serif;
    max-width: 100%;
    padding: 0px;
    padding-left: 0px;
}
.sectiond {
    width: 100%;
    border-left: 0px solid rgb(197, 195, 195);
}
.st-talk-wrapper {
    font-family: Georgia, serif;
    max-width: 100%;
   padding: 0px;
    padding-top: 0px;
}
.partc {
    width: 100%;
}
.article-wrapper {
    padding: 0px;
    padding-top: 0px;
    font-family: Georgia, serif;
    color: #1c1c1c;
}
.partd {
    width: 100%;
}
.energy-awards-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 15px;
}
.opinionb {
    width: 100%;
}
.opinionc {
    width: 100%;
    padding: 0px 0px;
}
.opiniond {
    width: 100%;
}
.ai-cs-cards {
    flex: 2;
    display: block;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fr-main-nav {
    display: flex
;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0px 10px;
    padding-left: 15px;
    padding-right: 15px;
    background-color: white;
    position: sticky;
    z-index: 9999;
    top: 0;
}
.technob {
    width: 100%;
}
.technoc {
    width: 100%;
    padding: 0px 0px;
} 
.technod {
    width: 100%;
}
.tech {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 10px;
}
.techb {
    width: 100%;
}
.techc {
    padding-left: 0px;
    width: 100%;
}
.areala {
    width: 100%;
}
.areal {
    border-top: 4px solid black;
    padding-top: 20px;
    margin-top: 40px;
    flex-direction: column;
}
.arealb1 img {
    width: 100%;
}
.arealb {
    width: 100%;
}
.goldbuzz-wrapper {
    max-width: 750px;
    font-family: Georgia, serif;
    padding-left: 0px;
}
.goldbuzz-headline {
    font-size: 36px;
    font-weight: bold;
    color: #111;
    line-height: 1.2;
    margin: 0 0 15px 0;
}
.collector-visual img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 30px;
}
.mview {
    width: 100%;
   flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.ranknews-container {
    flex-direction: column;
    justify-content: space-between;
    max-width: 1100px;
    padding: 20px;
    font-family: Georgia, serif;
    gap: 40px;
}
.ranknews-column {
    flex: 1;
    display: flex
;
    flex-direction: column;
    gap: 20px;
}
.mview2 {
    width: 100%;
}
.mview1 {
    width: 100%;
}
.g-section {
    width: 100%;
    flex-direction: column;
    border-top: 4px solid black;
    padding-top: 20px;
}
.g1 {
    width: 100%;
}
.g2 {
    width: 100%;
    flex-direction: column;
}
.g2a {
    width: 100%;
}
.g2b {
    margin-top: 10px;
}
.cartoonblock-wrapper {
    font-family: Georgia, serif;
    padding: 10px;
}
.maggrid-wrapper {
    margin: auto;
   padding: 0px;
    font-family: Georgia, serif;
}
.finbanner-left {
    display: flex
;
    align-items: center;
    gap: 10px;
}
.finbanner-logo {
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1px;
}
.finbanner-bar {
    background-color: #0b6fcc;
    color: white;
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 24px 15px;
    font-family: Georgia, serif;
}
.finbanner-tagline{
  display: none;
}
.energy-awards-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    font-family: Georgia, serif;
    color: #1c1c1c;
    border-top: 1px solid rgb(194, 192, 192);
}
.energy-awards-logo img {
  width: 100%;
    height: auto;
    margin-top: 0px;
}
.energy-awards-content {
    max-width: 600px;
    text-align: center;
}


.custom-menu {
  width: 100%;
  display: block;
  max-width: 100%;
  border-top: 1px solid #ccc;
}

.custom-menu-item {
  border-bottom: 1px solid #ccc;
}

.custom-menu-header {
  font-weight: bold;
  padding: 16px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.custom-menu-header:hover {
  background-color: #f9f9f9;
}

.custom-dropdown-content {
  display: none;
  padding: 12px;
  background-color: #f5f5f5;
  font-size: 14px;
}

.custom-menu-item.active .custom-dropdown-content {
  display: block;
}

.custom-menu-item.active .custom-arrow {
  transform: rotate(180deg);
}

.cartoonblock-title {
    font-size: 27px;
    font-weight: bold;
    color: #111;
    line-height: 1.3;
    margin: 0 0 10px;
}

.mob-view{
  display: flex;
  justify-content: space-between;
  padding: 0px;
 
}
.pp1{
  margin-top: 5px;
}
.pp2{
  margin-top: 5px;
  color: #0a6fc7;
}







/* categ-page */
.categ h1 {
    font-size: 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.categg {
flex-direction: column;
}

.categ-title {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.2;
    color: #111;
    margin-bottom: 10px;
}
.categ-image {
    width: 90px;
    height: 13vh;
    object-fit: cover;
    margin-top: 25px;
}
.catega {
    width: 100%;
}
.categb {
    width: 100%;
}
.categ-description {
    font-size: 14px;
    color: #444;
    line-height: 1.2;
    margin-bottom: 12px;
}
.categ-category {
    font-family: Arial, sans-serif;
    font-size: 11px;
    color: #1a73e8;
    margin-bottom: 5px;
}
.bl{
  display: none;
}
.catega h2 {
    text-transform: uppercase;
    font-size: 12px;
    margin-top: 0px;
    padding-top: 10px;
}
.categ-section {
    padding: 15px;
    padding-top: 0px;
}
.categ {
    border-top: 6px solid black;
    padding-top: 20px;
    border-bottom: 1px solid lightgrey;
}




.categc {
    width: 100%;
}
.latest-container {
    max-width: 400px;
    font-family: Georgia, serif;
    border-top: 4px solid #000;
    padding-top: 10px;
    margin-left: 0px;
}



.subscribe-banner {
    background-color: #0066cc;
    color: white;
    padding: 40px 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 40px auto;
    margin-left: 00px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: Georgia, serif;
}
.det-sectionc {
    flex-direction: column ;
    border-top: 4px solid black;
}
.det-sectionc3 {
    width: 100%;
}
.det-sectiona {
    padding: 15px;
    padding-top: 0px;
}
.det-sectiona h1 {
    border-top: 6px solid black;
    padding-top: 40px;
    margin-top: 11px;
    font-size: 2rem;
    padding-bottom: 40px;
    border-bottom: 1px solid lightgray;
    font-family: Georgia, 'Times New Roman', Times, serif;
}
.det-sectionb {
    width: 100%;
}
.magazine-container {
    flex-direction: column;
    max-width: 1100px;
    margin: 40px auto;
    font-family: Georgia, serif;
    color: #222;
}

.magazine-author-box {
    width: 100%;
    padding-right: 0px;
    text-align: center;
}
.subscribe-actions {
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}
.subscribe-text {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 25px;
    text-align: center;
}
.subscribe-heading {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.det-sectionc1 {
    width: 100%;
}
.det-sectionc2 {
    width: 100%;
}
.streaming-news-container {
    padding-right: 0px;
    margin: 10px auto;
    font-family: Georgia, serif;
}
.magazine-article {
    padding-left: 0px;
    flex: 1;
}
.det-sectiona{
  padding-top: 10px;
}

.finbanner-icons a {
    color: white;
    font-size: 18px;
    margin-left: 30px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.fas.fa-search{
  display: none;
}



.magazine-article p {
    font-size: 19px;
    line-height: 1.6;
    margin-bottom: 25px;
    text-align: center;
}
.mostviewed-container {
    max-width: 100%;
    font-family: Georgia, serif;
    margin: 17px auto;
}


.news-block {
    font-family: Georgia, serif;
    border-top: 1px solid #ccc;
    padding: 20px;
    max-width: 100%;
    padding-left: 4px;
    padding-right: 0px;
}


.news-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.news-item{
  flex-direction: column;
}
.news-image{
  width: 100%;
  margin-top: 20px;
}
.news-text {
    flex: 1;
    padding-right: 0px;
}
.news-block{
  padding-left: 0px;
}


}





/* mac */
@media (min-width:1400px){
  .main{
    padding: 10px 80px;
  }
   .fr-main-nav{
    padding-left: 80px;
    padding-right: 80px;
  }
  .ul-card-img{
    margin-bottom: 0px;
  }
  .trade-title{
    font-size: 27px;
  }
  .ai-cs-container{
    padding: 40px 80px;
  }
  .finbanner-bar{
    padding: 24px 80px;
  }
  .footergrid-wrapper{
    padding-left: 0px;
    margin: 20px 80px;
    max-width: 100%;
  }
  .maggrid-wrapper{
    padding: 20px 0px;
  }
  .footergrid-main{
    gap: 50px;
  }
  .footergrid-account{
    flex: .8;
  }
  .footbar-wrapper{
    padding: 30px 80px;
  }
  .footbar-row{
    padding: 20px 0px;
  }
  .footbar-bottom{
    padding: 20px 0px;
  }
  .det-sectiona{
    padding: 80px;
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .det-sectionb{
    width: 70%;
  }
  .det-sectionc2{
    width: 47%;
    padding-right: 50px;
  }
  .det-sectionc1{
    width: 24%;
  }
  .det-section h1{
    margin-top: 10px;
  }
  .categ-section{
    padding: 80px;
    padding-top: 0px;
    padding-bottom: 50px;
  }



  /* detailed */
  
  .det-sectionb{
    width: 100%;
  }


  .maggrid-image{
    height: 30vh;
  }
  .det{
    padding-top: 30px;
  }

.detb img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}
.magazine-container{
  max-width: 100%;
  margin: 40px 0px;
}


}


