@font-face {
  font-family: "Guardian TextSans Regular";
  src: url('../fonts/GuardianSansLight.otf') format('opentype');

  font-style: normal;
}

body {
  margin: 0;
  font-family: "Guardian TextSans Regular", sans-serif;
}

/* Top bar */
.top-bar {
  font-size: 12px;
  color: #555;
  padding: 10px 150px;
  border-bottom: 1px solid gainsboro;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar a {
  color: #555;
  text-decoration: none;
  margin-right: 15px;
}

/* Top section */
.top-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 150px;
  flex-wrap: wrap;
}

.date-weather {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  font-size: 11px;
  color: #202020;
}

.weather-icon img {
  width: 18px;
  height: auto;
}

.right-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.subscribe-button {
  background-color: #d43144;
  color: white;
  padding: 10px 15px;
  border: none;
  font-size: 10px;
  cursor: pointer;
  font-weight: 400;
  border-radius: 4px;
}

.subscribe-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.subscribe-box {
  background-color: white;
  padding: 30px;
  border-radius: 8px;
  width: 300px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.close-subscribe {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.sub-para {
  letter-spacing: 0.9px;
  margin: 0 0 10px;
  font-size: 18px;
}

.subscribe-box input {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}

.submit-subscribe {
  padding: 10px 20px;
  background-color: #d43144;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
}


.user-dropdown {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 5px 10px;
  border-radius: 4px;
}

.user-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  margin-right: 5px;
}

.text-undefined {
  font-size: 12px;
}

/* Logo */
.logo {
  display: flex;
  justify-content: center;
  padding: 7px;
}

.logo img {
  width: 160px;
  height: auto;
  border-bottom: 4px solid red;
  padding: 4px;
}

/* Navigation */
.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 110px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

.search-icon {
  width: 20px;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  font-family: "Guardian TextSans Regular", sans-serif;
}

.nav-links a {
  text-decoration: none;
  color: #6b6b6b;
}

.menu-toggle {
  font-weight: 200;
  display: flex;
  align-items: center;
  gap: 5px;
}

.menu-icon {
  font-size: 20px;
  cursor: pointer;
}

/* Mega Menu Overlay & Content */
.mega-menu-overlay {
  display: none;
  position: fixed;
 top: -60px;
    left: 40px;
    width: 94%;
 
  z-index: 1000;
  justify-content: center;
  align-items: flex-start;
  overflow-y: scroll;

}


.mega-menu-content {
  background: white;
  width: 90%;
  max-width: 1200px;
  margin: 60px auto 20px;
  padding: 30px;
  display: flex;
  gap: 40px;
  position: relative;

  border-radius: 6px;
}

.mega-column h3 {
  margin-top: 0;
  font-size: 18px;
  border-bottom: 2px solid #000;
  padding-bottom: 6px;
}

.mega-column ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.mega-column ul li {
  margin: 8px 0;
  font-size: 14px;
  color: #555;
  cursor: pointer;
}

.highlight-btn {
  background: #f0f0f0;
  border: none;
  padding: 10px 14px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
}

.highlight-btn:hover,
.mega-column ul li:hover {
  color: #000;
}

/* Close icon */
.close-menu {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


/* Search floating container */
.search-container {
  display: none;
  width: 90%;
  position: relative;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 1000;
  background-color: white;
  padding: 30px 40px;
  border-radius: 8px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid #000;
  padding: 12px 15px;
  font-size: 18px;
}

.search-field input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  margin-left: 10px;
  font-family: "Guardian TextSans Regular", sans-serif;
}

.search-btn {
  padding: 12px 30px;
  font-size: 14px;
  background: #eee;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #666;
  font-family: "Guardian TextSans Regular", sans-serif;
}

.close-icon {
  font-size: 24px;
  cursor: pointer;
}

/* section starting */
.container {
  display: flex;
  gap: 20px;
  padding: 20px 110px;
}

.col {
  background: #fff;
}

.left {
  flex: 1;

}

.right {
  flex: 1;
  border-left: 1px solid rgb(185, 183, 183);
  padding: 10px;
}

.center {
  flex: 2;
  border-left: 1px solid rgb(201, 200, 200);
  padding: 10px;
}

.left article h2 {
  margin: 0 0 8px;
  line-height: 115%;
  font-weight: bold;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.left article h1 {
  margin: 0 0 8px;
  line-height: 115%;
  font-weight: bold;
  font-size: 23px;
  font-family: Arial, Helvetica, sans-serif;
}

.byline {
  font-size: 14px;
  color: #900;
  margin-bottom: 10px;
}

.byline-st {
  font-size: 14px;
  color: rgb(18, 17, 17);
  margin-bottom: 10px;

}

.byline .icon {
  display: inline-block;
  color: white;
  font-weight: bold;
  background-color: #d43144;
  /* clean red tone */
  width: 18px;
  height: 18px;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin-right: 5px;
}

.byline-st .icon {
  display: inline-block;
  color: white;
  font-weight: bold;
  background-color: #a4192a;
  /* clean red tone */
  width: 15px;
  height: 16px;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  margin-right: 5px;
}

.lead {
  font-size: 16px;
  margin-bottom: 12px;
  font-family: "IBM Plex Serif", serif;
}

.leads {
  font-size: 13px;
  margin-bottom: 12px;
  font-family: "IBM Plex Serif", serif;
}

.bullets {
  font-weight: bold;
  margin: 10px 0 12px;
  padding: 10px;
  letter-spacing: 0.8px;
  font-size: 14px;
}

hr {
  border: none;
  border-bottom: 1px solid #ddd;
  margin: 20px 0;
}

.main-image-container {
  position: relative;
  margin-bottom: 20px;
}

.main-image-container img {
  width: 100%;
  display: block;
  border-left: 1px solid #ddd;
}

.caption {
  position: absolute;
  bottom: 50px;
  left: 10px;
  background: rgba(255, 255, 255, 0.8);
  padding: 4px 8px;
  font-size: 14px;
}

.view-photos {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 14px;
}

.caption-author {
  position: absolute;
  bottom: -20px;

  font-size: 12px;
  background: white;
  padding: 2px 4px;
  color: #555;
}

.center h3 {
  margin: 0 0 8px;
  padding-top: 15px;
  font-size: 22px;
  font-family: Arial, Helvetica, sans-serif;
}

.center .byline {
  margin: 0 0 20px;
}

.right h3 {
  margin-top: 0;
  border-bottom: 2px solid #900;
  padding-bottom: 5px;
}

.latest-list {
  list-style: none;
  padding: 0;
}

.latest-list li {
  margin-bottom: 16px;
  font-size: 16px;
  width: 75%;
  font-weight: 900;
  letter-spacing: 0.7px;
}

.latest-list time {
  display: block;
  color: #900;
  font-size: 12px;
  margin-bottom: 4px;
}

.main-image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-left: 1px solid #ddd;
  transition: opacity 0.5s ease;
}

.au-a {
  color: black;
  text-decoration: none;
}

.au-a:hover {
  color: #828181;
}

hr {

  width: 85%;
  margin-left: 10%;
}

/* next news */
.news-main-content {
  display: flex;
  gap: 20px;
  padding: 20px 120px;
  margin: 0 auto;
}

.news-left {
  flex: 2;
}

.news-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-left h3 {
  font-size: 28px;
  font-weight: bold;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
}

.news-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.news-card {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.news-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.news-card h3 {
  font-size: 19px;
  margin: 5px 0;
  font-weight: bold;

  font-family: Arial, Helvetica, sans-serif;
}

.port-line {
  font-size: 12px;
  line-height: 110%;
  color: #46000C;
}

.news-card .author {
  color: #900;
  font-weight: bold;
  font-size: 14px;
  margin: 5px 0;
}

.news-card .subtitle {
  font-size: 14px;
  color: #000000;
  font-weight: 600;
  margin-top: 5px;
  line-height: 1.3;
  letter-spacing: 0.7px;
}

.news-bottom {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.news-card.small {
  flex: 1;
  padding-left: 10px;
  border-left: 1px solid #ccc;
}

.news-card.small img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.news-card.small h3 {
  font-size: 15px;
  font-weight: bold;
  margin: 5px 0;
  font-family: Arial, Helvetica, sans-serif;
}

.news-card.small .byline-st {
  font-size: 13px;
  color: #900;
  font-weight: 600;
}

.news-card.small-size {
  flex: 1;
  padding-left: 10px;
  border-left: 1px solid #ccc;
}

.news-Malaga-sec {
  padding: 10px 120px;
  
  background-color: #fff;
}

.news-Malaga-sec h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.news-Malaga-sec hr {
  border: none;
  border-bottom: 1px solid #000;
  width: 100%;
  margin-bottom: 30px;
  margin-left: 0% !important;
}

.news-malaga-grid {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}

.malaga-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-left: 1px solid rgb(209, 204, 204);
  padding: 10px;
}

.malaga-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.malaga-card h3 {
  font-size: 19px;
  font-weight: 700;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;

}

.malaga-card .author {
  font-size: 11px;
  font-weight: 500;
  color: #000;
  display: flex;
  align-items: center;
  gap: 5px;
}

.malaga-card .author.red {
  font-weight: 600;
}

.malaga-card .icon {
  font-size: 16px;

}

.news-David-grid-sec {
  padding: 10px 130px;
 
}

.david-grid-container {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 30px;
}

/* Left Column */
.david-left img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.caption {
  font-size: 14px;
  margin: 10px 0 15px;
  color: #555;
}
.david-left h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0;
   font-family: Arial, sans-serif;
}
.david-left .author {
  color: #800000;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.icon {
  font-weight: bold;
}
.excerpt {
  font-size: 15px;
  color: #444;
  margin-top: 10px;
}

/* Middle Column */
.david-middle {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid rgb(204, 204, 204);
  padding: 10px;
}
.david-article-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.david-article-card h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
}
.david-article-card .author-name,
.david-article-card .author {
  font-size: 14px;
  color: #171616;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Right Column */
.david-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-left: 1px solid rgb(196, 194, 194);
  padding: 10px;
}
.image-card {
  display: flex;
  flex-direction: column;
}
.image-card img {
 width: 100%;
    height: 170px;
    object-fit: cover
}
.image-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin: 10px 0 5px;

  font-family: Arial, Helvetica, sans-serif;
}
.image-card .author-name {
  font-size: 14px;
  color: #101010;
}
/* Hide text in second card */
.image-card.no-text h3,
.image-card.no-text .author-name {
  display: none;
}


.inside-news-sec {
  padding: 30px 130px;
  font-family: Arial, sans-serif;
}

.inside-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ddd;
  margin-bottom: 20px;
}

.inside-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
}

.inside-header a {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
}

.inside-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.video-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  bottom: 0;
  padding: 10px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
  color: #fff;
  width: 100%;
  box-sizing: border-box;
}

.video-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.video-time {
  font-size: 13px;
  display: inline-block;
}

/* more news */
.morenews-grid-section {
  padding: 30px 130px;
  
}

.morenews-title {
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.morenews-container {
  display: grid;
 grid-template-columns: 1.3fr 1.2fr 1fr;
  gap: 30px;
}

.featured-news img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.featured-news h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.featured-news .author {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.featured-news .author span {
  color: #999;
}

.featured-news .excerpt {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.side-news-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  border-left: 2px solid rgb(192, 192, 192);
  padding: 10px;
  border-right: 1px solid gainsboro;
}

.side-news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
}

.side-news-item:last-child {
  border-bottom: none;
}

.side-news-text {
  width: 70%;
}

.side-news-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
  font-family: Arial, sans-serif;
}

.side-news-item .author {
  font-size: 13px;
  color: #666;
}

.side-news-item .author span {
  color: #999;
}

.side-news-item .red-icon {
  color: #c00;
  font-weight: bold;
  margin-right: 4px;
}

.side-news-item img {
 width: 143px;
    height: 107px;
  object-fit: cover;
  
}
.bottom-three-col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #ccc;
}

.bottom-col-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 1px solid rgb(219, 215, 215);
  padding: 5px;
}

.bottom-col-item img {
    width: 100%;
    height: 175px;
    object-fit: contain;
}

.bottom-col-item h4 {
  font-size: 16px;
  font-weight: bold;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.bottom-col-item .author {
  font-size: 13px;
  color: #666;
}

.bottom-col-item .author span {
  color: #999;
}
.sty{
  background-color: rgb(242 242 242);
  padding: 10px;
  margin-top: -18px;
}

.text-behind-news-sec {
  padding: 10px 130px;
  background-color: #fff;
}

.behind-title {
  font-size: 16px;
  color: #800000;
  font-weight: normal;
  margin-bottom: 20px;
  font-family: "IBM Plex Serif", serif;
  
}
.behind-titlem {
  font-size: 18px;
  color: #141414;
  font-weight: normal;
  margin-bottom: 20px;
  font-weight: 600;
  border-bottom: 1px solid gainsboro;
  font-family: Arial, Helvetica, sans-serif;
  
}


.behind-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.behind-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.behind-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 112%;
  font-weight: 600;
  letter-spacing: 0.7px;
}

.behind-item .icon {
  color: #800000;
  font-size: 18px;
  font-weight: bold;
  margin-top: 2px;
  color: white;
}

.behind-item p {
  font-size: 16px;
  color: #000;
  margin: 0;
  line-height: 1.4;
}

.divider {
  border-bottom: 1px solid #ccc;
  margin: 8px 0;
}


/* ofer plan */
.oferplan-section {
  padding: 10px 130px;
  
  
}

.section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
  
}

.cards-container {
  display: flex;
  gap: 20px;
  
}

.card-ofer{
  flex: 0 0 auto;
  width: 230px;
  border-left: 1px solid #c6bfbf;
  padding: 2px;
}

.card-ofer img {
  width: 100%;
  height: 50%;
  display: block;

}

.card-text {
  padding: 10px;
  background-color: #f4f3f3;
 
}

.card-category {
  font-size: 14px;
  color: #000000;
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 5px;
}

.card-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.8px;
}
.card-title-last {
  font-size: 18px;
  width: 230px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

.south-selection-news-grid {
  display: flex;
  padding: 20px 110px;
  gap: 40px;
  align-items: flex-start;
  box-sizing: border-box;
}

.left-article {
  display: flex;
  flex: 2;
  gap: 30px;
  align-items: flex-start;
}

.text-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.text-section .title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 12px;
  letter-spacing: -0.9px;
  font-family: Arial, Helvetica, sans-serif;
}

.text-section .author {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 12px;
  line-height: 1.2;
}

.text-section .summary {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  font-family: "IBM Plex Serif", serif;

}

.image-section {
  flex-shrink: 0;
  max-width: 420px;
}

.image-section img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.right-sidebar {
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 10px;
  border-left: 1px solid gainsboro;
}

.podcast-img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.podcast-info {
  width: 100%;
}

.podcast-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.4;
  font-family: Arial, Helvetica, sans-serif;
}

.podcast-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.play-button {
  width: 32px;
  height: 32px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
}

.duration {
  font-size: 14px;
  color: #666;
}

/* Section Title Styling */
.section-titles {
  padding: 10px 110px;
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.9px;
  margin-bottom: 0;
  line-height: 1.3;
}

.text-media{
  font-size: 12px;
  color: rgb(57, 57, 57);
}


.section-title-other {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: 2px solid #ccc;
  display: inline-block;
  padding-bottom: 5px;
  
}
.card-text-other {
  padding: 1px;
  
}
.card-pa{
  font-size: 13px;
}
.card-pas{
  font-size: 13px;
  position: relative;
  padding-left: 20px; /* space for the square */
  font-size: 15px;
  line-height: 1.5;
  color: #222;

}
.card-pas::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px; /* vertically aligns with the text */
  width: 5px;
  height: 5px;
  background-color: #949191; /* or any color */
}

.card-title-other{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.8px;
}

/* podcast */
.podcast-news-sec {
  display: flex;
  gap: 30px;
  padding: 10px 100px;
  justify-content: flex-start;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.podcast-card {
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.podcast-thumbnail {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin-bottom: 10px;
  object-fit: cover;
}

.podcast-category {
  font-size: 14px;
  color: #991b1b;
  font-weight: 600;
  margin-bottom: 6px;
}

.podcast-headline {
  font-size: 18px;
  font-weight: bold;
  color: #111;
  margin-bottom: 12px;
  line-height: 1.4;
}

.podcast-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border-top: 1px solid #ccc;
  padding-top: 12px;
}

.play-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  cursor: pointer;
}

.duration {
  font-size: 14px;
  color: #444;
}

.podcast-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 110px 0;
  font-family: sans-serif;
}

.left-section {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #111;
}

.headphone-icon {
  font-size: 24px;
  margin-right: 8px;
}

.see-more {
  font-size: 16px;
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.see-more:hover {
  color: #000;
}

.sport-news-sec {
  display: flex;
  background: #f8f8f8;
  padding: 10px 180px;
 
  height: 273px;
  
}

.sport-text-content {
  flex: 1;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sport-category {
  color: #a32035;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.sport-headline {
  font-size: 28px;
  color: #111;
  font-weight: 500;
  line-height: 1.3;
}

.sport-image-wrapper {
  flex: 1;
  position: relative;
}

.sport-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

.sponsor-tag {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sponsor-logo {
  height: 16px;
  vertical-align: middle;
}

/* opinion sec */
.opinion-side-news-sec {
  padding: 20px 110px;
  font-family: 'Georgia', serif;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #ccc;
  margin-bottom: 20px;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
}

.see-more {
  font-size: 16px;
  color: #222;
  text-decoration: none;
}

.opinion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
}

.opinion-card {
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.author-img {
  width: 100%;
  max-width: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.column-info {
  font-size: 14px;
  color: #770021;
  margin-bottom: 4px;
}

.author-name {
  font-size: 16px;
  font-weight: bold;
  color: #770021;
  margin-bottom: 6px;
}

.icon-plus {
  color: #770021;
  margin-right: 4px;
}

.opinion-title {
  font-size: 18px;
  color: #111;
  line-height: 1.4;
}

 .contest-grid-news-sec {
      display: grid;
      grid-template-columns: 3fr 1fr 1fr;
      grid-gap: 20px;
      padding: 20px 130px;
      margin: auto;
    }

    .main-article {
      grid-column: 1 / 2;
      border-right: 1px solid #dcd4d4;
      padding: 10px;
    }

    .main-article img {
      width: 100%;
      height: auto;
      
    }

    .main-article h3 {
      font-size: 1.6rem;
      margin: 10px 0;
      font-family: Arial, Helvetica, sans-serif;
    }

    .main-article .subtext {
      color: #b22222;
      font-size: 0.7rem;
      text-transform: uppercase;
    }

    .main-article .author {
      font-size: 0.85rem;
      color: #444;
      margin-top: 5px;
    }

    .side-articles {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .side-articles .side-article {
      display: flex;
      flex-direction: column;
    }

    .side-articles img {
      width: 100%;
      height: 40%;
      border-top: 1px solid gray;
      object-fit: cover;
    }

    .side-articles .author {
      font-size: 0.85rem;
      color: #444;
      margin-top: 5px;
    }

    .sub-grid {
      grid-column: 1 / -1;
      display: grid;
      grid-template-columns: repeat(3, 0.2fr);
      gap: 20px;
      margin-top: 30px;
      padding: 10px;
      border-top:1px solid rgb(218, 217, 217)
    }

    .sub-grid-item img {
      width: 100%;
    
    }
    .h4{
      font-family: Arial, Helvetica, sans-serif;

    }

    .sub-grid-item h4 {
      font-size: 1rem;
      margin: 10px 0 5px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .sub-grid-item .author {
      font-size: 0.85rem;
      color: #444;
    }

  .contest-next-news-sec {
      padding: 20px 130px;
      border-top: 1px solid #ddd;
    }

    .contest-next-news-sec .section-title {
      font-size: 1.2rem;
      font-weight: bold;
      border-bottom: 2px solid #b22222;
      padding-bottom: 5px;
      margin-bottom: 20px;
      color: #222;
      text-transform: uppercase;
      letter-spacing: 0.9px;
    }

    .contest-next-news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 20px;
      align-items: flex-start;
    }

    .subscription-item {
      display: flex;
      gap: 15px;
      margin-bottom: 20px;
      border-bottom: 1px solid #ddd;
      padding-bottom: 15px;
    }

    .subscription-item img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
    }

    .subscription-item .text {
      display: flex;
      flex-direction: column;
    }

    .subscription-item .club-name {
      color: #800000;
      font-size: 0.9rem;
    }

    .subscription-item .title {
      font-weight: bold;
      font-size: 1rem;
      color: #000;
      letter-spacing: 0.9px;
    }

    .subscription-item .date {
      font-size: 0.9rem;
      color: #555;
    }

    .subscription-item .date a {
      color: #800000;
      text-decoration: underline;
      font-weight: 500;
    }

    .offer-box img {
      width: 100%;
      height: auto;
      border: 1px solid #ccc;
      border-radius: 4px;
    }

    .subscriber-article,
    .club-discount {
      padding: 10px;
      border-left: 1px solid #d9d5d5;
      gap: 15px;
      font-family: Arial, Helvetica, sans-serif;
      align-items: flex-start;
    }

    .subscriber-article img,
    .club-discount img {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
    }

    .subscriber-article .text,
    .club-discount .text {
      display: flex;
      flex-direction: column;
    }

    .subscriber-article .note,
    .club-discount .note {
      color: #800000;
      font-size: 0.85rem;
    }

    .subscriber-article .desc,
    .club-discount .desc {
      font-size: 0.95rem;
      color: #000;
      font-weight: 500;
    }

    /* semanal sec */
 .semanal-news-sec {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 120px;
 
}

.news-card-semanal {
  flex: 1;
  min-width: 300px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-card-semanal img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.news-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.news-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
 
  font-family: Arial, Helvetica, sans-serif;
}

.news-subtitle {
  font-size: 0.9rem;
  color: #7b2c2c;
  font-weight: 500;
  margin: 0px;
}

.news-author {
  font-size: 0.95rem;
  color: #444;
}
.semanal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 120px;
  background-color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.logo-semanal {
  font-size: 2rem;
  font-weight: bold;
}

.logo-xl {
  color: red;
}

.logo-semanal {
  color: black;
}

.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  font-size: 1rem;
  color: #111;
  font-weight: 400;
}

.nav-menu a:hover {
  text-decoration: underline;
}

.divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}

 .business-news-sec {
    font-family: Arial, Helvetica, sans-serif;
      color: #000;
     
      padding: 20px 120px;
    }

    .business-news-sec .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid #ccc;
      padding-bottom: 10px;
      margin-bottom: 20px;
    }

    .business-news-sec .header .title {
      font-size: 24px;
      font-weight: 600;
      display: flex;
      align-items: center;
    }

    .business-news-sec .header .title img {
      margin-right: 10px;
      height: 25px;
    }

    .business-news-sec .header .contact {
      font-size: 16px;
    }

    .business-news-sec .companies {
      display: flex;
      justify-content: space-evenly;
      flex-wrap: wrap;
      gap: 20px;
    }

    .business-news-sec .company-card {
      
      border-right: 1px solid #ccc;
    padding: 4px;
      text-align: left;
    }

    .business-news-sec .company-card:last-child {
      border-right: none;
    }

    .business-news-sec .company-logo {
      height: 80px;
      margin-bottom: 10px;
    }

    .business-news-sec .category {
      font-size: 9px;
      color: #444;
      margin-bottom: 5px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .business-news-sec .name {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .business-news-sec .web {
      font-size: 9px;
      color: #444;
    }

    .business-news-sec .web span {
      font-weight: 600;
      margin-left: 5px;
    }

    .tennis-score-table {
    
      
      border-collapse: collapse;
      font-size: 18px;
    }

    .tennis-score-table td {
      padding: 10px 15px;
    }

    .tennis-score-table tr:not(:last-child) {
      border-bottom: 1px solid #ccc;
    }

    .tennis-score-table .player {
      text-align: left;
      font-weight: 500;
      white-space: nowrap;
    }

    .tennis-score-table .score {
      text-align: center;
      width: 40px;
      color: #333;
    }

       .motor-sur-news-sec {
    
      padding: 20px 130px;
      
    }

    .motor-sur-news-sec .section-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 10px;
      border-bottom: 1px solid #ccc;
      padding-bottom: 5px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .motor-sur-news-sec .news-grid-sur {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .motor-sur-news-sec .news-item-sur {
      display: flex;
      flex-direction: column;
    }

    .motor-sur-news-sec .news-item-sur img {
      width: 100%;
      height: auto;
      border-radius: 2px;
    }

    .motor-sur-news-sec .news-title-sur {
      font-size: 18px;
      font-weight: 600;
      margin-top: 10px;
      line-height: 1.3;

      color: #111;
      font-family: Arial, Helvetica, sans-serif;
    }

    .motor-sur-news-sec .news-meta {
      font-size: 14px;
      color: #999;
      margin-top: 4px;
    }

    .turium-sur-news-sec {
      padding: 0 20px;
      
    }

    .turium-sur-news-sec .news-columns {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      padding: 20px 120px;
    }

    .turium-sur-news-sec .news-card {
      border-right: 1px solid #ccc;
      padding-right: 20px;
    }

    .turium-sur-news-sec .news-card:last-child {
      border-right: none;
      padding-right: 0;
    }

    .turium-sur-news-sec img {
      width: 100%;
      height: auto;
      margin-bottom: 10px;
    }

    .turium-sur-news-sec .news-title {
      font-size: 17px;
      font-weight: 600;
      color: #111;
      line-height: 1.4;
    }

    .turium-sur-news-sec .news-snippet {
      display: flex;
      align-items: flex-start;
      margin-top: 15px;
      gap: 10px;
    }

    .turium-sur-news-sec .news-snippet img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      flex-shrink: 0;
      
    }

    .turium-sur-news-sec .news-snippet-text {
      font-size: 14px;
      line-height: 1.4;
    }

    .turium-sur-news-sec .turium-highlight {
      color: #bb9d00;
      font-weight: bold;
      font-size: 13px;
      text-transform: uppercase;
      margin-bottom: 5px;
    }

    /* Carousel styles */
    .flamenco-card {
      background-color: #f8f8f8;
      padding: 15px;
      border-radius: 4px;
      position: relative;
    }

    .carousel-wrapper {
      position: relative;
      overflow: hidden;
      height: 220px;
    }

    .carousel-slide {
      display: none;
    }

    .carousel-slide.active {
      display: block;
    }

    .carousel-nav {
      position: absolute;
      top: 10px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      font-size: 20px;
      color: #777;
      z-index: 10;
    }

    .carousel-nav span {
      background: white;
      padding: 2px 8px;
      cursor: pointer;
    }

    .flamenco-title {
      font-size: 16px;
      font-weight: 600;
      margin: 10px 0 5px;
    }

    .flamenco-meta {
      font-size: 13px;
      color: #777;
      margin-bottom: 12px;
    }

    .flamenco-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .price {
      font-size: 18px;
      font-weight: bold;
      color: #0074d9;
    }

    .offer-btn {
      background-color: #0074d9;
      color: white;
      border: none;
      padding: 8px 12px;
      font-size: 13px;
      cursor: pointer;
    }
    .wellife-sur-news-sec {
     padding: 20px 120px;
      
    }

    .wellife-sur-news-sec .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .wellife-sur-news-sec .news-item {
      display: flex;
      flex-direction: column;
      border-right: 1px solid #ddd;
      padding-right: 20px;
    }

    .wellife-sur-news-sec .news-item:last-child {
      border-right: none;
      padding-right: 0;
    }

    .wellife-sur-news-sec img {
      width: 26%;
      height: auto;
      
      margin-bottom: 12px;
      border-bottom: 1px solid gainsboro;
    }

    .wellife-sur-news-sec .logo {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 8px;
      color: #000;
    }

    .wellife-sur-news-sec .news-text {
      font-size: 17px;
      font-weight: 500;
      font-family: Arial, Helvetica, sans-serif;
    }

     .footer-sur-news-sec {
     
      margin: 60px auto;
      padding: 0 120px;
     
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }

    .footer-sur-news-sec .links-of-interest,
    .footer-sur-news-sec .printed-edition {
      flex: 1 1 45%;
    }

    .footer-sur-news-sec .section-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 8px;
      border-bottom: 2px solid #000;
      padding-bottom: 4px;
       font-family: Arial, Helvetica, sans-serif;
    }

    .footer-sur-news-sec .link-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      margin-top: 20px;
    }

    .footer-sur-news-sec ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-sur-news-sec ul li {
      margin-bottom: 10px;
      font-size: 15px;
      color: #444;
      cursor: pointer;
       font-family: Arial, Helvetica, sans-serif;
    }

    .footer-sur-news-sec ul li:hover {
      text-decoration: underline;
    }

    .footer-sur-news-sec .printed-box {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      border: 1px solid #eee;
      background-color: #fafafa;
      padding: 20px;
      border-radius: 6px;
    }

    .footer-sur-news-sec .printed-info {
      flex: 1;
    }

    .footer-sur-news-sec .printed-info img {
      width: 150px;
      border-radius: 4px;
    }

    .footer-sur-news-sec .printed-desc {
      font-size: 16px;
      margin-top: 10px;
      color: #222;
    }

    .footer-sur-news-sec .printed-links {
      margin-top: 20px;
    }

    .footer-sur-news-sec .printed-links a {
      display: block;
      font-size: 15px;
      color: #000;
      margin-bottom: 8px;
      text-decoration: none;
    }

    .footer-sur-news-sec .printed-links a:hover {
      text-decoration: underline;
    }

    .footer-sur-news-sec .subscribe-btn {
      margin-top: 20px;
      display: inline-block;
      padding: 12px 30px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 16px;
      color: #b40000;
      text-align: center;
      font-weight: bold;
      cursor: pointer;
    }
      .footer-sur-news-sec-bottom {
      font-family: 'Segoe UI', sans-serif;
      background-color: #fff;
      border-top: 1px solid #ccc;
      padding: 40px 20px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1300px;
      margin: 0 auto;
      color: #444;
      font-size: 14px;
    }

    .footer-left,
    .footer-right {
      flex: 1 1 45%;
    }

    .footer-left img.logo {
      max-height: 30px;
      margin-bottom: 10px;
    }

    .footer-left .company-details {
      margin-bottom: 20px;
    }

    .footer-left .social-icons {
      display: flex;
      gap: 10px;
      margin-bottom: 20px;
    }

    .footer-left .social-icons img {
      width: 20px;
      height: 20px;
      object-fit: contain;
      cursor: pointer;
    }

    .footer-left .vocento-logo {
      max-width: 100px;
    }

    .footer-right .dropdown-label {
      font-weight: bold;
      margin-bottom: 5px;
    }

    .footer-right p {
      margin: 10px 0;
      line-height: 1.5;
      color: #333;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 15px;
      margin-top: 10px;
    }

    .footer-links a {
      text-decoration: none;
      color: #444;
    }

    .footer-links a:hover {
      text-decoration: underline;
    }

    .back-to-top {
      text-align: right;
      margin-top: 20px;
      width: 100%;
      font-size: 13px;
      color: #000;
    }

    .back-to-top span {
      cursor: pointer;
    }




/* category sec starting */
.cat-sec-strat-news-wrapper {
      padding: 20px 130px;
      
      
    }

    .cat-sec-strat-news-heading {
      border-bottom: 1px solid #ccc;
      padding-bottom: 10px;
      margin-bottom: 15px;
    }

    .cat-sec-strat-news-heading h1 {
      font-weight: 300;
      font-size: 40px;
      font-family: Arial, Helvetica, sans-serif;

    }

    .cat-sec-strat-news-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 15px;
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid #ccc;
    }

    .cat-sec-strat-news-nav a {
      text-decoration: none;
      color: #444;
      white-space: nowrap;
    }

    .cat-sec-strat-news-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 20px;
    }

   

    .cat-sec-strat-news-content h2 {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
      font-family: Arial, Helvetica, sans-serif;
    }

    .cat-sec-strat-news-author {
      font-size: 14px;
      color: #555;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
    }

    .cat-sec-strat-news-author .badge {
      background-color: #b30000;
      color: white;
      font-size: 12px;
      padding: 2px 6px;
      margin-right: 8px;
      font-weight: bold;
    }

    .cat-sec-strat-news-author span {
      margin: 0 5px;
    }

    .cat-sec-strat-news-description {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .cat-sec-strat-news-bullets {
      list-style-type: disc;
      padding-left: 20px;
      font-size: 16px;
      color: #111;
    }

    .cat-sec-strat-news-image img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border: 1px solid #ccc;
    }

    /* second sec */

    .cat-sec-next-news-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
 padding: 20px 140px;
  border-top: 1px solid #e0e0e0;
  
}

.cat-sec-next-news-article {
  display: flex;
  flex: 3;
  gap: 20px;
}

.cat-sec-next-news-date {
  font-size: 10px;
  color: #444;
  min-width: 80px;
  font-family: Arial, Helvetica, sans-serif;
}

.cat-sec-next-news-image img {
  width: 240px;
  height: auto;
  object-fit: cover;
  display: block;
}

.cat-sec-next-news-content {
  display: flex;
  flex-direction: column;
 

}

.cat-sec-next-news-title {
  font-size: 20px;
  font-weight: bold;
  color: #111;

  font-family: Arial, Helvetica, sans-serif;
}

.cat-sec-next-news-author {
  font-size: 13px;
  color: #444;
  margin-top: 20px;
}

.cat-sec-next-news-sidebar {
  flex: 1;
  border-left: 1px solid #c5c5c5;
  padding-left: 20px;
}

.cat-sec-next-news-sidebar-header {
  font-weight: bold;
  font-size: 16px;
  border-bottom: 2px solid #111;
  padding-bottom: 5px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
}

.cat-sec-next-news-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-sec-next-news-sidebar-list li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.4;
  color: #222;
  font-family: Arial, Helvetica, sans-serif;
}

.cat-sec-next-news-sidebar-number {
  margin-right: 6px;
  color: #666;
}
.cat-sec-next-news-left {
  flex: 3;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* readmore btn */
.cat-sec-next-news-readmore {
  display: inline-block;
  margin-top: 18px;
  padding: 6px 12px;
  font-size: 14px;
  color: #0c0c0c;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  border: 1px solid rgb(243, 240, 240);
}

.cat-sec-next-news-readmore:hover {
  background-color: #e9e4e4;
}


/* detail news start */
.detail-sec-next-news-container {
  display: flex;
  justify-content: space-between;
  padding: 40px 140px;
  font-family: Arial, Helvetica, sans-serif;
  gap: 40px;
}

.detail-sec-next-news-main {
  flex: 3;
}

.detail-sec-next-news-breadcrumb {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.detail-sec-next-news-breadcrumb a {
  text-decoration: none;
  color: #444;
  font-weight: normal;
}

.detail-sec-next-news-headline {
  font-size: 45px;
  font-weight: bold;
  letter-spacing: -2.1px;
  color: #111;
  margin-bottom: 20px;
}

.detail-sec-next-news-subhead {
  font-size: 17px;
  color: #777;
  margin-bottom: 30px;
}

.detail-sec-next-news-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin-top: 10px;
}

.detail-sec-next-news-sidebar {
  flex: 1;
  border-left: 1px solid #bbb8b8;
  padding-left: 20px;
}

.detail-sec-next-news-sidebar-header {
  font-size: 18px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #111;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.detail-sec-next-news-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-sec-next-news-sidebar-list li {
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
  color: #222;
  line-height: 1.5;
}

.detail-sec-next-news-sidebar-list .num {
  font-weight: bold;
  margin-right: 8px;
  color: #666;
}

/* author */
.detail-author-sec-news-container {
  font-family: Arial, sans-serif;
  padding: 20px 0px;
  border-bottom: 1px solid #ddd;
}

.detail-author-sec-news-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.detail-author-sec-news-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.detail-author-sec-news-texts {
  flex-grow: 1;
}

.detail-author-sec-news-name {
  font-weight: bold;
  font-size: 18px;
  color: #111;
}

.detail-author-sec-news-location {
  color: #444;
  font-size: 14px;
  margin-top: 2px;
}

.detail-author-sec-news-datetime {
  color: #444;
  font-size: 14px;
  margin-top: 5px;
}

.detail-author-sec-news-follow {
  background-color: white;
  border: 1px solid #ccc;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.detail-author-sec-news-follow:hover {
  background-color: #f3f3f3;
}

.detail-author-sec-news-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.detail-author-sec-news-comments {
  display: flex;
  align-items: center;
  color: #b3001b;
  font-size: 14px;
  gap: 5px;
}

.detail-author-sec-news-buttons {
  display: flex;
  gap: 15px;
}

.detail-author-sec-news-icon {
  background: none;
  border: none;
  color: #555;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}

.detail-author-sec-news-icon:hover {
  text-decoration: underline;
}

.detail-para{
  font-family: "Guardian TextSans Regular";
  font-size: 19px;
  line-height: 29px;
  margin-bottom: 20px;
  word-break: break-word;
  letter-spacing: 1px;
}
.detail-col-griditems-sec-news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 20px 130px;
  font-family: Arial, sans-serif;
}

.detail-col-griditems-sec-news-column {
  border-top: 2px solid #eee;
  padding-top: 10px;
}

.detail-col-griditems-sec-news-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  border-bottom: 1px solid gainsboro;
}

.detail-col-griditems-sec-news-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}

.detail-col-griditems-sec-news-headline {
  font-weight: bold;
  font-size: 17px;
  line-height: 1.4;
  color: #111;
  margin-bottom: 6px;
}

.detail-col-griditems-sec-news-author {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}

.detail-col-griditems-sec-news-link {
  font-size: 14px;
  color: #222;
  border-top: 1px solid #eee;
  padding-top: 8px;
  margin-top: 8px;
}
.detail-col-sideitems-sec-news-wrapper {
  
  max-width: 400px;
  font-family: "Guardian TextSans Regular";
  padding-top: 50px;
  letter-spacing: 1px;
}

.detail-col-sideitems-sec-news-title {
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.detail-col-sideitems-sec-news-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.detail-col-sideitems-sec-news-img {
  width: 90px;
  height: 70px;
  object-fit: cover;
  flex-shrink: 0;
}

.detail-col-sideitems-sec-news-text {
  flex-grow: 1;
}

.detail-col-sideitems-sec-news-headline {
  font-size: 13px;
  color: #111;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 4px;
  width: 161px;
}

.detail-col-sideitems-sec-news-source {
  font-size: 13px;
  color: #777;
  text-transform: uppercase;
}






