
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Source+Serif+4:ital,opsz,wght@0,8..60,200..900;1,8..60,200..900&display=swap');
    
    
    
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
     font-family: "Source Serif 4", serif;
      background-color: #f5f7f2;
      overflow-x: hidden;
      margin: 0;
      padding: 0;
    }
.top-header .left {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: visible;
  white-space: normal;
}
    /* Top header bar */
    .top-header {
  
  color: #666;
  font-size: 12px;
  margin-top: 8px;
  height: 27px;
  width: 100%;
  display: flex;
  justify-content: center; /* Center the content wrapper */
  align-items: center;
  padding: 1px 0 5px 0;
  margin-left: 9%;
}

.top-header .container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.top-header .left span {
  margin-right: 10px;
  font-family: "Source Serif 4", serif;
}

.top-header .left span:first-child {
  font-weight: bold;
  color: #0e2b5c;
  font-family: "Source Serif 4", serif;
}

.top-header .right i {
  margin-left: 8px;
  font-size: 13px;
  color: #001c4c;
}

/* ——— hidden search bar ——— */
.search-bar {
  max-height: 0;               /* start collapsed */
  overflow: hidden;
  display: flex;
  gap: 0.5rem;
  padding: 0 1rem;
  transition: max-height 0.35s ease, padding 0.35s ease;
  
}

/* shown state */
.search-bar.active {
  max-height: 4rem;            /* enough to show input */
  padding: 0.8rem 1rem;
}

/* input + button cosmetics */
.search-bar input {
  flex: 1;
  padding: 0.3rem 0.1rem;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  font-size:11px;
}

.search-bar button {
 
  color: #fff;
  border: none;
  padding: 0 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}
.left a{
  color: #666; 
  text-decoration: none;
}
.left a:hover{
text-decoration: underline;
}

/* ========= BUTTON STYLE (tweak as you like) ========= */

.subscribe-btn:hover { transform: translateY(-2px); }

/* ========= MODAL WRAPPER ========= */
.subscribe-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 999;
  visibility: hidden;
}
.subscribe-modal__overlay {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.35s ease;
}

/* ========= PANEL ========= */
.subscribe-modal__panel {
  position: relative;
  max-width: 420px;
  width: 90%;
  padding: 2.5rem 2rem 2.75rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  transform: translateY(60px) scale(0.96);
  opacity: 0;
  transition: all 0.45s cubic-bezier(.25,.8,.25,1);
  text-align: center;
  font-family: "Segoe UI", sans-serif;
}
.subscribe-modal__panel h2 {
  margin: 0 0 0.75rem;
  font: 700 1.65rem/1.2 "Georgia", serif;
}
.subscribe-modal__text {
  margin: 0 0 1.4rem;
  font-size: 0.95rem;
  color: #334155;
}

/* ========= FORM ========= */
.subscribe-modal__form {
  display: flex;
  gap: 0.75rem;
}
.subscribe-modal__form input {
  flex: 1;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
}
.subscribe-modal__form button {
  padding: 0.55rem 1.15rem;
  background: #1d64a3;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s;
}
.subscribe-modal__form button:hover { background: #154b7a; }

/* ========= CLOSE BTN ========= */
.subscribe-modal__close {
  position: absolute;
  top: 0.6rem;
  right: 0.9rem;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: #64748b;
  cursor: pointer;
  line-height: 1;
}

/* ========= OPEN STATE ========= */
.subscribe-modal.active {
  visibility: visible;
}
.subscribe-modal.active .subscribe-modal__overlay { opacity: 1; }
.subscribe-modal.active .subscribe-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ========= SMALL SCREENS ========= */
@media (max-width: 480px) {
  .subscribe-modal__panel { padding: 2rem 1.4rem; }
  .subscribe-modal__form { flex-direction: column; }
  .subscribe-modal__form button { width: 100%; }
}


/* ============ OVERLAY ============ */
.mega-menu {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  background: #f3f6ef;
  transform: translateY(-100%);
  transition: transform .45s cubic-bezier(.25,.8,.25,1);
  z-index: 1000;
  font-family: "Georgia", serif;
}
.mega-menu.active { transform: translateY(0); }

/* ============ TOP BAR ============ */
.mega-menu__top {
  background: #001c4c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 56px;
}
.mega-menu__close {
  position: absolute;
  left: 2.4rem;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  line-height: 1;
}
.mega-menu__logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.mega-menu__user {
  position: absolute;
  right: 1.15rem;
  display: flex;
}
.mega-menu__user-icon {
  width: 24px; height: 24px;
  stroke-width: 2.2;
  color: #fff;
}
.menu-pa{
  font-family: "Segoe UI", sans-serif;
  color:#001c4c ;
  font-size: 16px;
        line-height: 16px;
        font-weight: 800;
}

/* ============ COLUMNS ============ */
.mega-menu__columns {
  padding: 20px 80px;
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.mega-menu__columns section {
  padding: 0 1.4rem;
  border-left: 1px solid #d9d9d9;
}
.mega-menu__columns section:first-child { border: none; }

.mega-menu__columns h3 {
  margin: 0 0 .9rem;
  font-size: 1.45rem;
  font-weight: 700;
  color: #001c4c;
}

.mega-menu__columns ul {
  margin-top: 10px;
  padding: 0;
  list-style: none;
}
.mega-menu__columns li {
  padding: .35rem 0;
  
  font-size: 15px;
  cursor: pointer;
}
.mega-menu__columns li:hover { text-decoration: underline; }

/* smaller extra column */
.mega-menu__extras li { font-size: 15px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 680px) {
  .mega-menu__columns { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .mega-menu__logo { font-size: 1.35rem; }
}

/* optional smooth body scroll lock */
body.menu-open { overflow: hidden; }


    /* Main header */
   .main-header {
  background-color: #001b49;
  padding: 10px 20px;
  display: flex;
  justify-content: space-evenly; /* or use 'space-around' or 'space-evenly' */
  align-items: center;
}

.main-header .menu-icon {
  font-size: 24px;
  color: white;
  cursor: pointer;
  font-weight: 900;
}

.main-header .logo {
  color: white;
  font-size: 42px;
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  letter-spacing: 0px;
}

.main-header .subscribe-btn {
  background-color: #ffd700;
  font-family: "Source Serif 4", serif;
  color: #000;
  padding: 5px 13px;
  font-weight: 400;
  border: none;
  cursor: pointer;
  font-size: 12px;
}

 /* Navigation Bar */
    .nav-bar {
      background-color: #eef0e6;
      padding: 12px 166px;
     
     
    }

    .nav-bar a {
      color: #1a1a1a;
      font-weight: bold;
      font-size: 11px;
      margin: 0 10px;
      text-decoration: none;
    }

    .nav-bar a:hover {
      text-decoration: underline;
    }


    /* starting the news sec */
        .news-section {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      padding: 40px 170px;
      
    }

    .main-article {
      border-left: 1px solid #001b49;
      padding-left: 20px;
    }

    .main-article h1 {
      font-size: 35px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 10px;
      font-family: "Source Serif 4", serif;
      border-bottom: 2px solid transparent;
      transition: border-bottom 0.3s ease;
    }

    .main-article h1:hover {
      border-bottom: 1px solid #e4e4e4;
    }

    .main-article .meta {
      font-size: 14px;
      color: #555;
      margin-bottom: 8px;
      font-weight: 500;
    }

    .main-article p {
     
      color: #191818;
      font-size: 15px;
        line-height: 17px;
    
    }

    .main-article a {
      text-decoration: none;
      color: #000000;
    }
     .main-article a:hover{
      text-decoration: underline;
     }

    .side-article {
      display: flex;
      flex-direction: column;
      gap: 20px;
      border-left: 1px solid gray;
    }

    .side-article .article {
      display: flex;
      flex-direction: column;
      padding: 0px 12px;
    }

    .side-article img {
      width: 100%;
      height: 100%;
      border-radius: 0px;
    }
    .category{
      color: #37709f;
      font-weight: 800;
    }

    .side-article h3 {
      font-size: 19px;
      font-weight: 700;
      margin: 10px 0 5px;
      transition: border-bottom 0.3s ease;
      font-family: "Source Serif 4", serif;
    }

    .category-side a:hover {
      text-decoration: underline;
    }

    .side-article .category {
      color: #0056a3;
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .meta-juan{
        font-family: "Source Serif 4", serif;
        color: #a3a3a3;
        font-size: 12px;
        font-weight: 700;
        border-bottom: 1px solid gainsboro;
    }

    .author {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 20px;
    }

    .author img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    .author-info {
      display: flex;
      align-items: center;
      font-size: 12px;
      color: #888;
    }
     .author-badge {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #888;
  font-size: 14px;
  font-weight: bold;
}

.badge-icon {
  display: inline-flex;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  line-height: 1;
}

.v-part {
  background-color: #001b49;
  color: white;
  padding: 5px 5px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}
.plus-part {
  background-color: #d4af37;
  color: #001b49;
  padding: 5px 5px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.author-name {
  margin-left: 8px;
}
    .author-info span {
      font-weight: 400;
      color: #888;
    }

    .category-side{
    font-weight: 700;
    color: #37709f;
    letter-spacing: -.01em;
    font-size: 19px;
    line-height: 19px;
    font-family: "Source Serif 4", serif;
    padding: 6px;
    }

  .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  padding: 0px 157px;
}
 .news-grid-second {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 25px 60px;
  padding: 20px ;
}

hr{
 width: 74%;
 margin: 0px 163px;
border-color: rgb(255, 254, 254);
}
.news-card {
  padding: 20px;
  position: relative;
  transition: border-bottom 0.3s;
  border-left: 1px solid gainsboro;
  margin-top: 18px;
}
.opinion{
  background-color: #cfdbe5;
}
.opinions{
  background-color: #e3e3e3;
}
.news-cards {
  padding: 8px;
  position: relative;
  transition: border-bottom 0.3s;
  border-left: 1px solid gainsboro;
  margin-top: 36px;
}


.news-card:hover {
  border-bottom: 1px solid gainsboro;
}

.au-a{
  text-decoration: none;
  color: rgb(39, 38, 38);
  
}
.au-a:hover{
  text-decoration: underline;
  color: black;
}

.news-img, .author-img {
  width: 100%;
  height: 50%;
  border-radius: 0px;
}
.news-imgs{
   width: 100%;
  height: 60%;
  border-radius: 0px;
}

.author-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.quote-mark {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 90px;
  color: #37709f;
  font-family: serif;
}

.author-name-s{
  font-weight: 900;
  font-size: 22px;
  color: #37709f;
  margin: 10px 0 0 0;
}

.author-title {
  color: #6c757d;
  font-size: 14px;
  margin: 0 0 10px 0;
}

.category {
  color: #007BFF;
  font-weight: bold;
  font-size: 16px;
  margin: 10px 0 5px;
}

.headline {
  font-size: 18px;
  font-weight: bold;
  margin: 5px 0;
  line-height: 1.2;
   font-family: "Source Serif 4", serif;
}

.excerpt {
  font-size: 16px;
  color: #888282;
  margin-bottom: 15px;
   font-family: "Source Serif 4", serif;
   line-height: 20px;
}

.author-info {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  border-radius: 20px;
  overflow: hidden;
  font-size: 14px;
  margin-right: 10px;
  line-height: 1;
}

.v {
  background-color: #001b49;
  color: white;
  padding: 4px 6px;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.plus {
  background-color: #d4af37;
  color: #001b49;
  padding: 4px 6px;
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.author-name-small {
  font-size: 13px;
  color: #e1d6d6;
}


/* third sec */
.news-grid-third {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr;
  gap: 20px;
  align-items: start;
  padding: 20px 158px;
  
}

.news-item {
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.3s ease;
  padding-bottom: 10px;
  
}

.news-item:hover {
  border-bottom: 1px solid #ebedee;
}

.news-item img {
  width: 100%;
  height: 50%;
  display: block;
  margin-bottom: 10px;
  
}

.title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.1;
  color: black;
}

a.cer {
  text-decoration: none;
}

a.cer:hover {
  text-decoration: underline;
  color: black;
}


.subheading {
  font-size: 1.3rem;
  color: #3477a5;
  margin-bottom: 5px;
  font-weight: bold;
  letter-spacing: 0.3px;
}

.description {
  font-size: 0.95rem;
  color: #555;
}

.tag {
  color: #ffcc00;
  font-weight: bold;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.author-third{
  font-size: 0.85rem;
  font-style: italic;
  color: #333;
}

.sponsored {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid gray;
  padding-left: 20px;
  grid-template-columns: 2fr 2fr ;

}

.sponsor-item img {
  width:60%;
  height: 50%;
}

.sponsor-item p {
  font-size: 0.85rem;
  line-height: 1.1;
  width: 135px;
  letter-spacing: -0.5px;
}

.sponsor-item a {
  color: #000;
  text-decoration: none;
  border-bottom: 1px dotted transparent;
  transition: border-color 0.3s;
}

.sponsor-item a:hover {
  border-bottom: 1px solid #000;
}
.image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.5);
}

.overlay-card {
  position: relative;
  overflow: hidden;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  display: block;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Black shade with 40% opacity */
  z-index: 1;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  color: white;
  padding: 1.5rem;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
}

.overlay-content .tag {
  color: #fde636;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 19px;
  font-size: 17px;
  margin-bottom: 5px;
  letter-spacing: -.06em;
  font-family: "Source Serif 4", serif;
}

.overlay-content .titles {
  font-size: 1.7rem;
  font-weight: bold;
   letter-spacing: -.04em;
  font-family: "Source Serif 4", serif;
  line-height: 0.9;
  color: white;
  
}

.overlay-content .author-third {
  font-size: 0.9rem;
  font-style: italic;
}
.bar p{
  font-family: "Source Serif 4", serif;
   letter-spacing: -.04em;
   font-size: 11px;
    line-height: 0.9;
    color: #3477a5;
}
.bar-s{
  background-color: gray;
  width: 100%;
  height: 100%;
  border: 12px solid gainsboro;
  margin-top: 10px;
}
@keyframes typing {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

@keyframes blink {
  1% {
    border-color: transparent;
  }
}

.bar {
  overflow: hidden;
  white-space: nowrap;
}

.bar p {
  font-family: "Source Serif 4", serif;
  letter-spacing: -0.04em;
  font-size: 11px;
  line-height: 0.9;
  color: #3477a5;
  margin: 0;
}

.animated-text {
  display: inline-block;
  border-right: 2px solid #3477a5;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  animation: typing 3s steps(10, end) forwards, blink 0.7s step-end infinite;
}


/* fourth sec */
.news-section-four {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 150px;
 
}

.main-article-four {
  width: 70%;
}

.main-article-four img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.5rem;
}

.caption-four {
  font-size: 0.9rem;
  color: #444;
  margin-bottom: 1rem;
  font-weight: bold;
}

.caption-four .credit {
  color: #999;
  font-style: italic;
}

.subhead-four {
  font-size: 1.3rem;
  color: #37709f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.9px;
}

.headline-four {
  color: #333;
  font-weight: bold;
  margin-bottom: 0.5rem;
  font-size: 42px;
  line-height: 43px;
  letter-spacing: -.62px;
}

.summary-four {
  font-size: 1rem;
  color: #444;
}

.live-updates {
  width: 30%;
  border-left: 1px solid rgb(235, 233, 233);
  padding: 0px 10px;
}

.live-title {
  font-size: 1.2rem;
  color: darkred;
  font-weight: bold;
  margin-bottom: 1rem;
}

.arrow {
  color: red;
  font-size: 1.2rem;
}

.live-list {
  list-style: none;
  padding-left: 0;
}

.live-list li {
  border-bottom: 1px solid #eee;
  padding: 0.3rem 0;
  font-family: sans-serif;
  font-weight: bold;
  color: #333;
  font-size: 14px;
  position: relative;
  padding-left: 1.6rem;
  cursor: pointer;
  transition: border-bottom 0.3s;
}

.live-list li:hover {
  border-bottom: 1px solid rgb(216, 210, 210);
}
.live-list li a {
  display: block;
  padding: 0.6rem 0;
  color: black;
  text-decoration: none;
  transition: border-bottom 0.3s;
}

.live-list li a:hover {
 
  text-decoration: underline;
}

.live-list li::before {
  content: "●";
  color: red;
  position: absolute;
  left: 0;
  top: 0.6rem;
  font-size: 0.7rem;
}

.time {
  font-weight: bold;
  display: inline-block;
  width: 3.5rem;
}
.author-box-set{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
  position: relative;
}

.author-img-set {
  width: 60px!important;
  height: 60px!important;
  border-radius: 50%;
  object-fit: cover;
}

.author-info-set{
  position: relative;
}

.author-name-set{
  font-weight: bold;
  color: #005689;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 4px;
}

.headline-set{
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  color: #222;
}

.vplus-badge {
  width: 32px;
  position: absolute;
  left: 0;
  bottom: -24px;
}


/* ad banner */
.ad-container {
      display: flex;
      border: 1px solid #e5e1e1;
      overflow: hidden;
      padding: 20px 150px;
      margin-top: 50px;
    }

    .left-banner {
      background-color: #0c0c0c;
      color: #fff6c0;
      padding: 20px;
      width: 320px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      font-family: 'Arial Black', sans-serif;
    }

    .left-banner h3 {
      font-size: 27px;
      margin: 0;
    }

    .left-banner p {
      font-size: 18px;
      color: #fff6c0;
      margin-top: 10px;
    }

    .ad-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
   

    .text-adv h3 {
      font-size: 32px;
      margin: 0 0 10px;
      color: #000;
    }

    .text-adv p {
      font-size: 20px;
      color: #666;
      margin: 0;
    }

    .adv-footer-la {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 30px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .brand img {
      width: 40px;
      height: 40px;
    }

    .brand-name {
      font-size: 20px;
      color: #333;
    }

    .open-button {
      background-color: #c59b29;
      color: white;
      border: none;
      padding: 12px 28px;
      font-size: 20px;
      border-radius: 50px;
      cursor: pointer;
    }

    .open-button:hover {
      background-color: #b28923;
    }

    /* panorama */
      .container-panorama {
      display: flex;
      gap: 20px;
      max-width: 1200px;
      border-left: 1px solid gainsboro;
    }
    .left-article-panorama,.pan-h3 {
      padding: 20px 150px;
      flex: 2;
      border-right: 1px solid #ccc;
      padding-right: 20px;
    }

    .left-article-panorama img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      border-bottom: 1px solid #ccc;
    }

    .category-panorama {
      color: #2a71b8;
      font-size: 20px;
      font-weight: bold;
      margin-top: 10px;
      text-align: center;
    }

    .headline-panorama {
      font-size: 36px;
      font-weight: 500;
      color: #333;
      margin: 5px 0 20px;
      line-height: 40px;
      text-align: center;
    }

    .right-ad-panorama {
      flex: 1;
      background-color: #f5f7f2;
      padding: 20px;
      text-align: left;
      min-width: 300px;
      margin-top: 10px;
    }

    .ad-brand-panorama {
      font-size: 16px;
      color: #333;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .ad-title-panorama {
      font-size: 42px;
      color: #4d3d00;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .ad-desc-panorama{
      font-size: 18px;
      color: #4d3d00;
    }
    .add-img-pan{
    margin-top: 40px;
  width: 90%;
  height: 80%;
  background-blend-mode: lighten;
      
    }
    .author-info-panorama {
      display: flex;
      justify-content: center;
      font-size: 12px;
      color: #888;
    }
    .author-name-small-panorama {
     font-size: 12px;
     color: #918c8c;
    }

  .digital-leash-news {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 150px;
  margin-top: 280px;
  border-top: 1px solid gainsboro;
 
}
 .digital-leash-newss {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 150px;
  margin-top: 8px;
  
 
}

.news-card-digital {
  width: 32%;
  display: flex;
  flex-direction: column;
  border: none;
  overflow: hidden;
}

.news-card-digital img {
  width: 100%;
  height: 100%;
  display: block;
}

.news-content-digital {
  padding: 10px 0;
}

.news-tag-digital {
  font-weight: 500;
  font-size: 1rem;
  margin: 8px 0;
  color: #888;
}

.news-tag.blue {
  color: #37709f;
  font-size: 18px;
  letter-spacing: -0.04em;
  font-weight: bold;
}

.news-tag.grey {
  color: #b3b3b3;
}

.news-card-digital h3 {
  margin: 5px 0;
  font-family: "Source Serif 4", serif;
  letter-spacing: 0.01em;
  font-size: 20px;
  font-weight: 600;
  line-height: 0.9;
  
}

.author-digital {
  font-size: 0.7rem;
  color: #9f9d9d;
  margin-top: 10px;
 
  
}

.bg-light {
  background-color: #f2f2e9;
  padding: 15px;
  box-sizing: border-box;
}

.video-thumb {
  position: relative;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 2.3rem;
  transform: translate(-50%, -50%);
  color: white;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  pointer-events: none;
}

.culture-news-sec {
  display: flex;
  gap: 20px;
  font-family: 'Georgia', serif;
  padding: 20px 150px;
}

.culture-main-card {
  position: relative;
  width: 30%;
  flex-shrink: 0;
}

.culture-main-card img {
  width: 100%;
  height: auto;
  display: block;
}

.overlay-content {
  position: absolute;
  bottom: 15px;
  left: 15px;
  color: white;
}

.category {
  font-weight: bold;
  color: #ffc107;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.overlay-content h3 {
  font-size: 1.5rem;
  line-height: 1.3;
  margin: 5px 0;
}

.author {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  gap: 6px;
  margin-top: 8px;
}

.icon {
  background-color: #0056cc;
  padding: 4px 6px;
  border-radius: 50%;
  color: white;
  font-weight: bold;
}

.culture-secondary-card {
  width: 35%;
}

.culture-secondary-card img {
  width: 100%;
  height: auto;
  display: block;
}

.text-content {
  padding-top: 10px;
}

.tag-blue {
  color:#37709f;
  font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: bold;
  margin-bottom: 5px;
}

.text-content h3 {
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: -0.2px;
  margin-bottom: 10px;
  font-family: "Source Serif 4", serif;
}

.text-content .author {
  color: #666;
  font-size: 0.95rem;
}

.ad-column {
  width: 30%;
  display: grid;
  grid-template-columns: 1fr 1fr;
 
  gap: 15px;
}

.ad-blo-sec img {
  width: 100%;
    height: 55%;
    object-fit: cover;
    display: block;
}

.ad-title {
  font-size: 11px;
    text-decoration: underline;
    margin: 5px 0;
    width: 96px;
}
.ad-source {
  font-size: 0.85rem;
  color: #444;
}
.author-manu
{
  color: #9a9595;
  font-size: 0.65rem;
}

.communication-news-sec {
  display: flex;
  gap: 20px;
 padding-top: 20px;
   padding: 20px 150px;
}

/* Left main news */
.main-news-communication {
  width: 50%;
 
}
.main-news-communication img {
  width: 100%;
  height: auto;
  display: block;
}
.main-news-communication .sub-heading-communication {
  color: #37709f;
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: bold;
  margin: 10px 0 5px;
  
}
.main-news-communication .title-communication {
 font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: -0.2px;
    font-family: "Source Serif 4", serif;
}

/* Right section (2 stacked news) */
.side-news-communication {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Individual right news block */
.right-item-communication {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.right-item-communication img {
  width: 140px;
  height: auto;
  object-fit: cover;
}
.right-item-communication .text-block-communication {
  flex: 1;
}
.right-item-communication .sub-heading-communication {
  color: #174a7c;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
.right-item-communication .title-communication {
  width: 64%;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3;
}
.right-item-communication .author-communication {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}
.author-communication .icon-communication {
  background-color: #f5c542;
  border-radius: 5px;
  padding: 2px 5px;
  font-weight: bold;
}


.podcast-news-sec {
  display: flex;
  gap: 25px;
  padding: 20px 150px;
   font-family: "Source Serif 4", serif;
   letter-spacing: -0.2px;
}

/* Left Text Block */
.podcast-text {
  width: 35%;
}
.podcast-text .sub-heading-podacst {
  color: #174a7c;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}
.podcast-text .main-title-podacst {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.podcast-text .description-podacst {
  font-size: 15px;
  color: #444;
  line-height: 1.4;
}
.podcast-text .author-podacst {
  font-size: 12px;
  color: #666;
  font-weight: bold;
  margin-top: 10px;
}

/* Center Image */
.podcast-image {
  width: 30%;
  position: relative;
}
.podcast-image img {
  width: 100%;
  height: auto;
  display: block;
}
.audio-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: white;
  padding: 8px;
  border-radius: 8px;
  font-size: 16px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

/* Right Sponsored Block */
.sponsor-block {
  width: 35%;
  background-color: #eaede2;
  padding: 20px;
}
.sponsor-block .sub-heading-podacst {
  color: #b8b2b2;
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 5px;
}
.sponsor-block .main-title-podacst {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 5px;
}
.sponsor-block .sponsor-podacst {
  color: #666;
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 10px;
}
.sponsor-block img {
  width: 100%;
  height: auto;
  display: block;
}

/* artificial */
.artificial-news-sec {
  display: flex;
  gap: 20px;
  padding: 20px 150px;
 
}

/* Left Section */
.left-column-artificial {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Profile Card */
.profile-card-artificial img {
  width: 100%;
  height: auto;
}
.profile-text-artificial {
  background-color: #333;
  color: white;
  padding: 15px;
  text-align: center;
  margin-top: -5px;
}
.profile-text-artificial .section-title-artificial {
  color: #f9d523;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}
.profile-text-artificial .profile-name-artificial {
  color: #f9d523;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}
.profile-text-artificial .quote-artificial {
  font-size: 20px;
  margin-top: 8px;
  font-weight: bold;
}

/* Quote Card */
.quote-card-artificial {
  position: relative;
}
.quote-card-artificial img {
  width: 100%;
  height: auto;
}
.quote-label-artificial {
  position: absolute;
  top: 10px;
  left: 10px;
  background: yellow;
  color: black;
  font-weight: bold;
  padding: 4px 8px;
  font-size: 16px;
  display: inline-block;
}
.quote-label-artificial .rss {
  margin-left: 6px;
}

/* Middle Section */
.middle-column-artificial {
  width: 35%;
}
.ai-article-card {
  position: relative;
}
.ai-article-card-artificial img {
  width: 100%;
  height: auto;
  display: block;
}
.overlay-text-artificial {
  position: absolute;
 
  left: 20px;
  color: white;
}
.overlay-text-artificial .tag-artificial {
  font-weight: bold;
  color: #ffe600;
  font-size: 18px;
}
.overlay-text-artificial .title-artificial {
  font-size: 26px;
  font-weight: bold;
  margin: 5px 0;
}
.overlay-text-artificial .author-artificial {
  font-size: 16px;
  font-weight: bold;
}

/* Right Section (Ads) */
.ad-column-artificial {
  width: 35%;
  border-left: 1px solid rgb(214, 214, 214);
  
}
.ad-grid-artificial {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 20px;
}
.ad-item-artificial img {
  width: 100%;
  height: auto;
  display: block;
}
.advertisement-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 4px 0;
}

  .news-grid-intrested {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 2rem;
      padding: 20px 150px;
    }

    /* -------------  NEWS CARD  ------------- */
    .news-card-intrested {
      display: flex;
      flex-direction: column;
    }

    .news-card-intrested .thumb-intrested {
      width: 100%;
      height: 220px;
      overflow: hidden;
      border: 1px solid #e3e3e3;
      background: #f7f7f7;
    }

    .news-card-intrested .thumb-intrested img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .news-card-intrested .meta-intrested {
     
     color: #37709f;
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: bold;
    margin: 1rem 0 0.25rem;
    }

    .news-card-intrested .title-intrested {
    font-family: "Source Serif 4", serif;
    letter-spacing: 0.01em;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
}
    

    .news-card-intrested .author-intrested {
      font-size: 0.7rem;
    color: #9f9d9d;
    margin-top: 10px;
    }

    /* -------------  AD SPACE  ------------- */
    .ad-space-intrested {
      border: 1px solid #eee;
      background: #fafafa;
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: "Helvetica Neue", Arial, sans-serif;
      font-size: 1rem;
      color: #999;
      min-height: 220px;
      text-align: center;
    }

/* carousel */
 /* ---------- Carousel shell ---------- */
   .carousel {
      position: relative;
      padding: 20px 150px;
    }

    .carousel-track {
      display: flex;
      gap: 2rem;
      transition: transform 0.4s ease;
      
    }

    /* Navigation buttons */
    .nav {
      position: absolute;
      top: 26rem;
      width: 2.5rem;
      height: 2.5rem;
      border: 0;
      border-radius: .5rem;
      background: #eaeaea;
      font-size: 1.5rem;
      line-height: 2.5rem;
      cursor: pointer;
    }

    .nav.prev {
      left: calc(50% - 4rem);
    }

    .nav.next {
      right: calc(50% - 4rem);
    }

    .pagination {
      position: absolute;
      
      left: 50%;
      transform: translateX(-50%);
      font-weight: 600;
    }

    /* Card styling */
    .card-carousel {
      flex: 0 0 300px;
      padding: 2rem 1.5rem;
      background: #fafafa;
      box-shadow: 0 2px 4px rgba(0,0,0,.1);
      overflow: hidden;
    }

    @media (max-width: 600px) {
      .card-carousel {
        flex-basis: 80%;
      }
    }

    /* Editorial card */
    .card-carousel.editorial .logo-carousel {
      width: 120px;
      height: 80px;
      border-radius: 50%;
      background: var(--bg-dark);
      color:#252f52;
      font-size: 5rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .label-carousel,
    .author-carousel {
     
      font-weight: 700;
      color: #37709f;
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: bold;
    border-bottom: 1px solid gary;
    }

    .label-carousel {
      font-size: 1.25rem;
    }

    .author-carousel {
      font-size: 1.25rem;
      margin-bottom: .5rem;
      border-bottom: 1px solid gray;
    }

    .label-carousel::after {
      content: "";
      display: block;
      width: 60px;
      height: 3px;
      background: #000;
      margin-top: .25rem;
    }

    .headline-carousel {
      font-size: 2rem;
      font-weight: 700;
      margin: .75rem 0;
      line-height: 1.1;
      border-bottom: 1px solid gray;
    }

    .subhead-carousel {
      font-size: 1.1rem;
      line-height: 1.3;
    }

    /* Opinion card */
    .card-carousel.opinion-carousel {
      position: relative;
    }

    .quote-mark-carousel {
      position: absolute;
      top: 0;
      right: 3rem;
      font-size: 6rem;
      color: #2263d3;
      line-height: .4;
    }

    .avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      overflow: hidden;
      margin-bottom: .75rem;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .membership-badge {
      display: inline-flex;
      gap: .25rem;
      margin-top: 1rem;
    }

    .membership-badge span {
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      border-radius: 4px;
      font-weight: 700;
      font-size: 1rem;
      line-height: 1;
    }

    .membership-badge .v {
      background: var(--bg-dark);
      color: #fff;
    }

    .membership-badge .plus {
      background: var(--gold);
      color: #000;
    }

    /* —— WRAPPER —— */
.society-news-feat{
 padding: 20px 150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;   /* big column + skinny column  */
  gap: 2rem;
 
  line-height: 1.3;
}

/* —— MAIN ARTICLE —— */
.society-news-feat .main-article{
  display: flex;
  flex-direction: column;
}

.society-news-feat .main-img{
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  height: auto;
}

.society-news-feat .main-caption{
  margin: .5rem 0 1.5rem;
  font-size: .9rem;
  color: #666;
}

.society-news-feat .kicker{
  color:#0051a8;
  font-size:1.05rem;
  margin-bottom:.25rem;
}

.society-news-feat .headline{
 font-size: 38px;
  line-height: 36px;
  font-weight:600;
  color: #333;
  margin:0 0 1.25rem;
   font-family: "Source Serif 4", serif;
 
}

/* —— SIDE STRIP —— */
.society-news-feat .side-list{
  display:flex;
  flex-direction:column;
  gap:2rem;
}

/* one side item */
.society-news-feat .side-item{
  display:grid;
  grid-template-columns:137px 1fr;   /* tiny thumb + text */
  gap:1rem;
}

.society-news-feat .side-thumb{
 width: 146px;
    height: 135px;
}

.society-news-feat .side-kicker{
 color: #37709f;
    font-size: 18px;
    letter-spacing: -0.04em;
    font-weight: bold;

}

.society-news-feat .side-title{
  font-size:0.9rem;
  font-weight:700;
  margin:.25rem 0 .5rem;
}

.society-news-feat .side-meta{
  font-size:10px;
  color:#666;
}

.entertainment-news-feat{
 padding: 20px 150px;
  margin:0 auto;
 
  display:grid;
  grid-template-columns: 252px 1fr;     /* big column + right grid   */
  gap:2.5rem;
 
  line-height:1.3;
}

/* ————————————————————————————————————————  CARDS  ———————————————————————————————————————— */
.game-card{
  background:#eeeeee;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:2.5rem 2rem 3rem;
  box-sizing:border-box;
}

/* image */
.game-card .g-img{
 width: 175px;
    height: 139px;
  object-fit:contain;
  margin-bottom:1.75rem;
}

/* heading & subheading */
.game-card .g-title{
  font-size:1rem;
  font-weight:700;
  margin-bottom:1rem;
}
.game-card .g-sub{
  color:#0051a8;
  font-size:1.05rem;
  margin-bottom:2rem;
}

/* button */
.game-card .g-btn{
  display:inline-block;
  padding:.9rem 3rem;
  border:2px solid #37709f;
  color:#37709f;
  font-weight:700;
  font-size:1rem;
  background:#fff;
  text-decoration:none;
  border-radius:.25rem;
}
.game-card .g-btn:hover{
  background:#37709f;
  color:#fff;
}

/* ——————————————————  SMALL CARDS (right‑hand side)  —————————————————— */
.side-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:2rem 3rem;               /* row / column gaps */
}

.game-card.small{
  flex-direction:row;
  text-align:left;
  padding:2rem 1.5rem;
}

.game-card.small .g-img{
  width:120px;
  height:120px;
  margin:0 1.5rem 0 0;
}

.game-card.small .g-title{
  font-size:15px;
  margin:.25rem 0 .5rem;
}

.game-card.small .g-sub{
  font-size:.9rem;
  margin-bottom:1.25rem;
  max-width:20ch;
}

/* underline beneath subtitle */
.game-card.small .g-sub::after{
  content:"";
  display:block;
  width:3.5rem;
  height:2px;
  background:#000;
  margin:.6rem 0 1.2rem;
}
.sports-news-feat{
 padding: 20px 150px;
  margin:0 auto;
 
  display:grid;
  grid-template-columns: 300px 280px 1fr;  /* left / middle / right */
  gap:2.5rem 2rem;
}
/* ———————————————————  LEFT BIG CARD  ——————————————————— */
.card-big{
  position:relative;
  overflow:hidden;
}
.card-big .card-img{
  width:100%;height:auto;display:block;
  object-fit:cover;
}
.card-big .overlay{
  position:absolute;
  inset:0;
  padding:1.4rem 1.6rem 2rem;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  background:linear-gradient( to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 60% );
  color:#fff;
}
.card-big .kicker-liv{color:#eacd00;font-size:1.25rem;font-weight:700;}
.card-big .headline-liv{font-size:2.5rem;font-weight:700;margin:.4rem 0 1.1rem;color: black;}
.byline{display:flex;align-items:center;gap:.55rem;font-size:.95rem;font-weight:700;}
.byline-icon{
  width:26px;height:26px;border-radius:50%;display:inline-flex;
  justify-content:center;align-items:center;
  background:#093c8f;color:#ffce33;font-weight:700;
}
/* ———————————————————  MIDDLE STACK  ——————————————————— */
.stack-col{display:flex;flex-direction:column;gap:2.2rem;}
.card-small{display:grid;grid-template-columns:120px 1fr;gap:1.2rem;}
.card-small .card-img{width:120px;height:120px;object-fit:cover;}
.card-small .kicker-liv{color:#157215;font-size:1.05rem;font-weight:700;margin-bottom:.35rem;}
.card-small .headline-liv{font-size:14px;font-weight:700;line-height:1.15;font-family: "Source Serif 4", serif;}
/* ———————————————————  RIGHT FEATURE  ——————————————————— */
.card-right{background:#f2f2f2;display:flex;flex-direction:column;}
.card-right .brand{
  background:#000;color:#fff;font-weight:900;letter-spacing:.5px;
  padding:.4rem 0;text-align:center;position:relative;
}
.card-right .brand::before,
.card-right .brand::after{
  content:"";position:absolute;top:0;bottom:0;width:6px;background:#d20000;
}
.card-right .brand::before{left:0;}
.card-right .brand::after{right:0;}
.card-right .card-img{width:100%;height:auto;object-fit:cover;}
.card-right .body{padding-top:20px;}
.card-right .headline-liv{font-size: 24px;
    line-height: 26px;font-weight:700;font-family: "Source Serif 4", serif;color: #333;}
.card-right .subhead{font-size:1.35rem;line-height:1.2;}




/* and also */
/* ———————————————————————————  GRID WRAPPER  ——————————————————————————— */
.and-also-news-feed{
  padding: 20px 150px;
  margin:0 auto;
  
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem 3rem;
}

/* ———————————————————————————  EACH COLUMN  ——————————————————————————— */
.feed-col{
  border-left:1px solid #d5d5d5;
  padding-left:1.25rem;
  display:flex;
  flex-direction:column;
}
.feed-col:first-child{border-left:none;padding-left:0;}     /* no line on first */

/* Section kicker (EAT, TRIPS, STAKE) */
.section-label{
  color:#37709f;
  font-size:1.2rem;
  font-weight:800;
  margin:.25rem 0 1rem;
}

/* Main image */
.feed-img{
  aspect-ratio: 2 / 1;
    margin-bottom: 1.1rem;
    width: 266px;
    height: 147px;
}

/* Small kicker under the image (Recipe, Offers…) */
.item-kicker{
  color:#0051a8;
  font-size:1.3rem;
  font-weight:700;
  margin-bottom:.4rem;
}

/* Main headline */
.main-headline{
  font-size:2.3rem;
  font-weight:700;
  margin:0 0 1rem;
  line-height:1.12;
  border-bottom:3px solid #000;     /* underline like screenshot */
  display:inline-block;
  padding-bottom:.2rem;
}

/* Author / source line */
.byline{
  font-size:.9rem;
  font-weight:700;
  margin-bottom:1.6rem;
  letter-spacing:.15px;
  text-transform:uppercase;
  color:#666;
}

/* Sub‑links list */
.feed-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:1.05rem;}
.feed-list li{font-size:1.05rem;line-height:1.25;}
.feed-list .list-kicker{color:#0051a8;font-weight:700;}

.main-headline-also h3{
  font-size: 1.4rem;
    line-height: 1.1;
    letter-spacing: -0.2px;
    font-family: "Source Serif 4", serif;
    color: black;
}


/* ——————————————————————————  WRAPPER  —————————————————————————— */
.most-read-sec{
 padding: 20px 150px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;         /* two columns */
  gap:2rem 3rem;
}

/* ——————————————————————————  LIST STYLES  —————————————————————————— */
.mr-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:2rem;}
.mr-item{display:grid;grid-template-columns:60px 1px 100px 1fr;gap:1.5rem;align-items:start;}
/* number */
.mr-num{
  font-size:1rem;
  font-weight:700;
  color:#37709f;
}
/* vertical separators */
.mr-item>span.divider{
  background:#c7c7c7;
  width:1px;height:100%;
}
/* image */
.mr-img{
  width:100px;height:100px;
  flex-shrink:0;object-fit:cover;
}
/* headline */
.mr-headline{
  font-size:15px;
  font-family: "Source Serif 4", serif;
    line-height: 22px;
    letter-spacing: -.1px;
    color: #333;
  font-weight:700;
}
/* smaller top gap for items 04‑06 (they sit tighter in screenshot) */
.mr-list.right .mr-item{gap:1.1rem;}
/* optional line below last item? Not required. */

/* ———————————————————  FOOTER MODULE  ——————————————————— */
.footer{
  background:#001b4f;          /* navy blue */
  color:#fff;
  padding:3.5rem 1rem 4rem;
  text-align:center;
  font-family: "Source Serif 4", serif;
 
}

.footer .brand{
  color: white;
    font-size: 42px;
    font-family: "Source Serif 4", serif;
    font-weight: 400;
    letter-spacing: 0px;
    padding: 10px 472px;
}

.footer .copyright{
  margin:0 0 1.5rem;
  font-size:1rem;
}

.footer .nav-footer{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  gap:2.2rem;                  /* equal spacing between links */
  justify-content:center;
}

.footer .nav-footer a{
  color:#fff;
  text-decoration:none;
  font-size:1.2rem;
}

.footer .nav-footer a:hover{
  text-decoration:underline;
}



/* detail page starting */
/* ———————————————————————————————————
   Black‑Friday sanctions article
   ——————————————————————————————————— */
.detail-via-news-start {
  padding: 20px 170px;
  margin-inline: auto;
  font-family: "Source Serif 4", serif;
  line-height: 1.35;
}

/* Top label */
.detail-via-news-start .inspections {
  font-size: 17px;
  line-height: 19px;  /* ~18 px */
  font-weight: 900;
  letter-spacing: -.1px;
  color: #4f89b9;
  text-transform: uppercase;
  margin: 0 0 .5rem 0;
}

/* Main headline */
.detail-via-news-start .main-headlines {
 font-size: 42px;
 line-height: 44px;
 font-weight: 600;
 letter-spacing: -.1px;
  color: #222;
  margin: 0 0 1rem 0;
  word-break: break-word;
  
}

/* Bullet sub‑headline */
.detail-via-news-start .sub-headline {
  border-top: 1px solid gainsboro;
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: -.1px;
  color: #888;
  margin: 5px 0 1.5rem 0;
  border-bottom: 1px solid gainsboro;
}

/* Image block */
.detail-via-news-start .news-image {
 
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  border-top: 1px solid #e0e0e0;
}

.detail-via-news-start .news-image img {
  display: block;
  width: 100%;
  height: auto;
}
.para-detail{
  font-size: 14px;
    line-height: 16px;
    letter-spacing: -.1px;
    color: #666;
    padding: 9px 10px;
    background-color: #f0ecec;
}

/* ———————————————————————————————————
   Scoped author / social component
   ——————————————————————————————————— */
.detail-via-auth-sec{
  display:flex;
  align-items:flex-start;
  gap:1.25rem;
  line-height:1.25;
  padding: 20px 170px;
  margin-inline:auto;
  padding-block:.75rem;
  font-family: "Source Serif 4", serif;
}

/* = Left: avatar + text */
.detail-via-auth-sec .author-wrap{
  display:flex;
  gap:.9rem;
}

.detail-via-auth-sec .avatar{
  width:60px;
  height:60px;
  border-radius:50%;
  object-fit:cover;
  border:1px solid #dcdcdc;
}

.detail-via-auth-sec .author-name{
  font-size: 16px;
    line-height: 18px;
    letter-spacing: -.1px;
    color: #222;
    font-weight: 600;
  margin:0;
}

.detail-via-auth-sec .author-role{
  font-size: 16px;
    line-height: 18px;
    letter-spacing: -.1px;
    color: #222;
     font-weight: 600;
  margin:.15rem 0 .3rem;
}

.detail-via-auth-sec .author-dates{
  font-size:1rem;          /* ≈16 px */
  color:#888;
  margin:0;
}

.detail-via-auth-sec .pipe{ margin:0 .5rem; }

/* = Right: social icons */
.detail-via-auth-sec .social-wrap{
  display:flex;
  gap:1rem;
}

.detail-via-auth-sec .social-btn{
  width: 46px;
  height: 44px;
  border-radius:50%;
  background:#b3b3b3;
  color:#fff;
  font-size:1.4rem;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  transition:background .2s;
}

.detail-via-auth-sec .social-btn:hover{
  background:#999;
}

/* Comment bubble variant — pill‑shape with number */
.detail-via-auth-sec .social-btn.comments{
  width:43px;
  padding:0 1.25rem 0 .9rem;         /* leave room for icon + number */
  border-radius:30px;
  gap:.5rem;
  font-size:1.1rem;
}

.detail-via-auth-sec .social-btn.comments span{
  font-size:1.25rem;
  font-weight:600;
  line-height:1;
}

.detail-page-sec{
  width: 70%;            /* line‑length similar to La Vanguardia */
  padding: 20px 190px;
  line-height: 1.45;
  color: #111;
}

/* Intro (“lead”) paragraph — slightly larger & darker */
.detail-page-sec .lead{
  font-size: 1.15rem;             /* ≈18 px */
  font-weight: 400;
  margin-top: 1.5rem;
  margin-bottom: 1.25rem;
}

/* All paragraphs share the same rhythm */
.detail-page-sec p{
  font-size: 1.0625rem;           /* 17 px */
  margin: 0 0 1.25rem;
  line-height: 27px;
}

/* Divider line */
.detail-page-sec hr{
  border: none;
  border-top: 1px solid #d6d6d6;
  margin: 2rem 0 1.5rem;
}

/* Sub‑headline */
.detail-page-sec h2{
 font-size: 28px;
  line-height: 30px;           /* ≈18 px */
  font-weight: 600;
  letter-spacing: -.1px;
  margin: 0 0 1.25rem;
  
}
.detail-page-next-sec{
  width: 70%;            /* line‑length similar to La Vanguardia */
  padding: 0px 190px;
 font-family: "Source Serif 4", serif;
  line-height: 1.45;
  color:#111;
}

/* Headline */
.detail-page-next-sec h3{
   font-size: 22px;
    line-height: 30px;           /* ≈18 px */
  font-weight: 600;
  letter-spacing: -.1px;
  border-bottom: 1px solid gainsboro;
}

/* Small highlight line below headline */
.detail-page-next-sec .average{
  font-size: 1rem;                  /* 16 px */
  font-weight: 700;
  margin: 19px 0 1.25rem;
}

/* Legend intro line */
.detail-page-next-sec .legend-title{
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  border-bottom: 1px solid gainsboro;
}

/* Colour legend */
.detail-page-next-sec .legend{
  list-style:none;
  padding:0;
  margin:0 0 1.5rem;
  display:flex;
  flex-wrap:wrap;
  border-bottom: 1px solid gainsboro;
}

.detail-page-next-sec .legend li{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.9rem;
}

.detail-page-next-sec .swatch{
  width:14px; height:14px;
  display:inline-block;
  border:1px solid #dcdcdc;
}

/* Approximate palette from the screenshot */
.swatch‑a{ background:#f6eaea; }    /* very light */
.swatch‑b{ background:#e974b5; }
.swatch‑c{ background:#d6308d; }
.swatch‑d{ background:#76c074; }
.swatch‑e{ background:#3da044; }

/* Map image */
.detail-page-next-sec .map-figure{
  width:100%;
  margin:0 0 1.5rem;
}

.detail-page-next-sec .map-figure img{
  width:100%;
  height:auto;
  display:block;
}

/* Source / credit line */
.detail-page-next-sec .source{
  font-size:.8rem;
  color:#555;
  margin:0 0 1.25rem;
}

/* Paragraph rhythm */
.detail-page-next-sec p{
  font-size:1.0625rem;             /* 17 px */
  margin:0 0 1.25rem;
}

.detail-page-next-sec-two{
   width: 70%;            /* line‑length similar to La Vanguardia */
  padding: 0px 190px;
 font-family: "Source Serif 4", serif;
 
  line-height: 1.45;
  color:#111;
}

/* = Pull‑quote block */
.detail-page-next-sec-two .pull-quote{
  position: relative;
  margin: 2rem 0 2rem;
  padding-left: 2.5rem;             /* space for big quote mark        */
  border-top: 3px solid #e0e0e0;
  border-bottom: 3px solid #e0e0e0;
}

.detail-page-next-sec-two .pull-quote::before{
  content: "“";
  position: absolute;
  left: 0;
  top: -.3rem;
  font-size: 4rem;                  /* big decorative quote            */
  line-height: 1;
  color:#000;
  font-family: Georgia, serif;
}

.detail-page-next-sec-two .pull-quote p{
  font-size: 1.85rem;               /* ≈30 px */
  font-weight: 700;
  margin: 1rem 0 .75rem;
  line-height: 1.18;
}

.detail-page-next-sec-two .pull-quote footer{
  font-size: 1rem;                  /* 16 px  */
  font-style: normal;
  margin-bottom: .75rem;
}

.detail-page-next-sec-two .pull-quote cite{
  font-weight: 700;
}

/* = Body paragraph after the quote */
.detail-page-next-sec-two p{
  font-size: 1.0625rem;             /* 17 px  */
  margin: 0 0 1.25rem;
}

/* = Heading above the forthcoming chart */
.detail-page-next-sec-two h3{
  font-size: 1.25rem;               /* 20 px  */
  font-weight: 700;
  margin: 2rem 0 .5rem;
  line-height: 1.3;
}

/* Small label (e.g., “En porcentaje”) */
.detail-page-next-sec-two .small-label{
  font-size: .9rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
}

.detail-right-left-sec{
  max-width: 1200px;
  margin-inline: auto;
  padding: 0 1rem 3rem;
  display: flex;
  gap: 2rem;
  line-height: 1.45;
  color: #111;
}

/* = Main story (left) */
.detail-right-left-sec .main-story{
  flex: 1 1 65%;
  width: 60%;            /* line‑length similar to La Vanguardia */
  padding: 0px 150px;
 font-family: "Source Serif 4", serif;
}

.detail-right-left-sec .headline{
 font-size: 25px;
    line-height: 30px;           /* ≈18 px */
  font-weight: 600;
  letter-spacing: -.1px;
}

.detail-right-left-sec .byline{
  font-size: 1rem;
  color: #666;
  margin: 0 0 1.5rem;
}

.detail-right-left-sec .lead-image{
  margin: 0 0 1.25rem;
}

.detail-right-left-sec .lead-image img{
  width: 100%;
  height: 100%;
  display: block;
  margin-top: 20px;
}

.detail-right-left-sec .lead-image figcaption{
  font-size: .8rem;
  color: #555;
  margin-top: .25rem;
}

/* = Sidebar (right) */
.detail-right-left-sec .sidebar{
  flex: 0 0 320px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Widget base */
.detail-right-left-sec .widget-title{
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 .75rem;
  line-height: 1.3;
}

/* = “Most read” list */
.detail-right-left-sec .most-read ol{
  margin: 0;
  padding-left: 1.25rem;
  font-size: .95rem;
}

.detail-right-left-sec .most-read a{
  color: #0056b3;
  text-decoration: none;
}

.detail-right-left-sec .most-read a:hover{
  text-decoration: underline;
}

/* = Promo card */
.detail-right-left-sec .promo-card{
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.detail-right-left-sec .promo-card img{
  width: 100%;
  height: auto;
  display: block;
}

.detail-right-left-sec .promo-text{
  position: absolute;
  inset: auto 0 0 0;
  padding: .5rem;
  background: rgba(0,0,0,.6);
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-align: center;
}

/* = Newsletter form */
.detail-right-left-sec .newsletter form{
  display: flex;
  gap: .5rem;
  margin-top: .75rem;
}

.detail-right-left-sec .newsletter input{
  flex: 1;
  padding: .5rem;
  font-size: .95rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.detail-right-left-sec .newsletter button{
  padding: .5rem 1rem;
  font-size: .95rem;
  border: none;
  border-radius: 4px;
  background: #0056b3;
  color: #fff;
  cursor: pointer;
}

.detail-right-left-sec .newsletter button:hover{
  background: #003f87;
}

/* Utility: hide elements from sighted users but keep for a11y */
.detail-right-left-sec .visually-hidden{
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.det-es-sec{
  background-color:#d7d4d4;
  padding: 20px;
}

.detail-mostread-article{
  width: 60%;            /* line‑length similar to La Vanguardia */
  padding: 0px 150px;
 font-family: "Source Serif 4", serif;
 
  line-height: 1.45;
  color: #111;
}

/* == Author row */
.detail-mostread-article .author-card{
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  margin-bottom: .75rem;
}

.detail-mostread-article .avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #dcdcdc;
}

.detail-mostread-article .name{
  font-size: 1.25rem;         /* ≈20 px */
  font-weight: 700;
  margin: 0;
}

.detail-mostread-article .role{
  font-size: 1rem;            /* 16 px  */
  margin: .15rem 0;
}

.detail-mostread-article .more{
  font-size: .9rem;
  color: #0056b3;
  text-decoration: none;
}

.detail-mostread-article .more:hover{
  text-decoration: underline;
}

/* Bio paragraph */
.detail-mostread-article .bio{
  font-size: 1rem;
  margin: 0 0 1.25rem;
}

/* Divider */
.detail-mostread-article hr{
  border: none;
  border-top: 1px solid #d6d6d6;
  margin: 0 0 1.25rem;
}

/* Tags */
.detail-mostread-article .tags{
  font-size: .95rem;
  margin: 0 0 2rem;
}

.detail-mostread-article .label{
  font-weight: 700;
}

.detail-mostread-article .tags a{
  color: #0056b3;
  text-decoration: none;
}

.detail-mostread-article .tags a:hover{
  text-decoration: underline;
}

/* Comments button */
.detail-mostread-article .comments-btn{
  display: inline-block;
  padding: .55rem 1.5rem;
  background: #9c9c9c;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  margin-bottom: 2.5rem;
}

.detail-mostread-article .comments-btn:hover{
  background: #7c7c7c;
}

/* Loading cue */
.detail-mostread-article .loading{
  font-size: .95rem;
  color: #666;
  text-align: center;
  margin: 0;
}


/* category */
/* ----------  GLOBAL WRAPPER  ---------- */
		.cate-sec-start {
			font-family: "Source Serif 4", serif;
			display: flex;
			gap: 2rem;
			/* padding mimics the gutter in the screenshot */
			padding: 20px 128px;
			box-sizing: border-box;
			max-width: 1400px;
			margin-inline: auto;
		}

		.cate-sec-start *,
		.cate-sec-start *::before,
		.cate-sec-start *::after {
			box-sizing: inherit;
		}

		/* ----------  SHARED CARD RULES  ---------- */
		.card-cat {
			position: relative;
			display: flex;
			flex-direction: column;
			justify-content: flex-end; /* text sticks to bottom */
			color: #fff;
			overflow: hidden;
			border-radius: 0.25rem;
		}

		/* handy gradient overlay for readability */
		.card-cat::after {
			content: "";
			position: absolute;
			inset: 0;
			background: linear-gradient(
				to top,
				rgba(0, 0, 0, 0.75) 0%,
				rgba(0, 0, 0, 0.55) 40%,
				rgba(0, 0, 0, 0) 75%
			);
			pointer-events: none;
		}

		.card__content-cat {
			position: relative;
			padding: 1.75rem 2rem;
			z-index: 1;
		}

		/* ----------  MAIN ARTICLE (LEFT)  ---------- */
		.main-article-cat {
			flex: 1 1 66%;
			min-height: 420px;
			background: url("../img/news69.jpeg") center / cover!important;
      border-radius: 0px;
		}
		.main-article-cat .category {
			color: #f6d547; /* the vivid yellow in screenshot */
			font-weight: 600;
			font-size: 1.15rem;
			text-transform: uppercase;
		}
		.main-article-cat .title-cat {
			font-family: "Source Serif 4", serif;
			font-size: 30px;
      line-height: 32px;
      font-weight: 700;
      letter-spacing: -.01em;
			margin: 0.35rem 0 0.75rem;
		}
		.main-article-cat .author {
			font-weight: 600;
			font-size: 0.95rem;
			margin: 0;
		}
		.main-article-cat .underline {
			display: inline-block;
			width: 4rem;
			height: 2px;
			margin: 0.65rem 0 1.1rem;
			background: currentColor;
		}

		/* ----------  SIDE ARTICLE (RIGHT)  ---------- */
		.side-article-cat {
			flex: 1 1 33%;
			min-height: 420px;
			background: url("../img/news70.jpeg") center / cover #0047ab!important;
      border-radius: 0px;
		}
		.side-article-cat .quote {
			position: absolute;
			top: 1rem;
			left: 1rem;
			font-family: "Source Serif 4", serif;
			font-size: 4rem;
			line-height: 0.85;
			transform: translateY(-10%);
			opacity: 0.95;
		}
		.side-article-cat .avatar {
			width: 68px;
			height: 68px;
			border-radius: 50%;
			object-fit: cover;
			border: 3px solid #ffffff;
			margin-bottom: 0.9rem;
		}
		.side-article-cat .col-author-name {
			font-family: "Source Serif 4", serif;
			font-weight: 700;
			font-size: 1.35rem;
			margin: 0.15rem 0 0.75rem;
		}
		.side-article-cat .col-title {
			font-family: "Source Serif 4", serif;
			font-weight: 700;
			font-size: clamp(1.5rem, 1.8vw + 1rem, 2.1rem);
			line-height: 1.25;
			margin: 0;
		}
  .digital-leash-news-cat {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 20px 150px;
 
  border-top: 1px solid gainsboro;
 
}
.news-card-digital-cat img {
  width: 100%;
  height: auto;
  display: block;
}
.news-card-digital-cat {
  width: 32%;
  display: flex;
  flex-direction: column;
  border: none;
  overflow: hidden;
}


    .cat-inner-sec {
     
      margin: 0 auto;
      padding: 20px 150px;
      display: flex;
      gap: 32px;
    }

    .column-cat {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .card-cats {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      overflow: hidden;
    }

    /* ———————————————————————————————
       TARJETA DE OPINIÓN (IZQUIERDA)
    ——————————————————————————————— */
    .opinion-card-cat {
      position: relative;
      color: #ffffff;
      min-height: 480px; /* alto mínimo aproximado */
    }

    .opinion-card-cat img.bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.55);
    }

    .opinion-card-cat .content-cat {
      position: relative; /* para que el z‑index esté por encima de la imagen */
      z-index: 1;
      height: 100%;
      padding: 32px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      margin-top: 170px;
    }

    .opinion-card-cat .quote-cat {
      font-size: 80px;
      line-height: 0.8;
      font-weight: 700;
    }

    .opinion-card-cat .avatar-cat {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      border: 4px solid #ffffff;
      margin-top: -40px; /* mitad hacia arriba para solapar con la comilla */
      margin-bottom: 16px;
      object-fit: cover;
    }

    .opinion-card-cat .author-cat {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .opinion-card-cat hr {
      width: 64px;
      border: 0;
      border-top: 3px solid #ffffff;
      margin: 16px 0;
    }

    .opinion-card-cat .headline-cat {
     font-size: 24px;
    line-height: 26px;
    font-weight: 600;
      max-width: 320px;
      line-height: 1.05;
    }

    .opinion-card-cat .badge-cat {
      position: absolute;
      left: 32px;
      bottom: 24px;
      width: 38px;
      height: 38px;
      background: url("https://dummyimage.com/38x38/000055/ffffff&text=V+") center / cover no-repeat;
      border-radius: 50%;
    }

    /* ———————————————————————————————
       NOTICIA PRINCIPAL (CENTRO)
    ——————————————————————————————— */
    .news-card-cat img.top {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
    }

    .news-card-cat .text-cat {
      padding: 10px;
      background-color: #f5f7f2;
    }

    .news-card-cat .kicker-cat {
      font-size: 17px;
    line-height: 19px;
    font-weight: 600;
    color: #37709f;
    letter-spacing: -.01em;
     
      margin-bottom: 12px;
    }

    .news-card-cat .headline-cat {
      font-size: 24px;
    line-height: 26px;
    color: #333;
     font-family: "Source Serif 4", serif;
      margin-bottom: 16px;
      letter-spacing: -.01em;
    }

    .news-card-cat .byline-cat {
      font-size: 8px;
      font-family: "Source Serif 4", serif;
      letter-spacing: 0.5px;
      color: #555555;
      font-weight: 500;
    }

    /* ———————————————————————————————
       BLOQUES DE PUBLICIDAD (DERECHA)
    ——————————————————————————————— */
    .ad {
      display: flex;
      flex-direction: column;
      gap: 8px;
      border-bottom: 1px solid #d8d8d8;
      padding-bottom: 16px;
      margin-bottom: 16px;
      
    }

    .ad img {
      background-color: #f5f7f2;
      width: 100%;
      height: auto;
      object-fit: cover;
    }

    .ad .title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.15;
    }

    .ad .sponsor {
      font-size: 14px;
      color: #999999;
    }

    .ad-label {
      font-size: 14px;
      color: #6b6b6b;
      text-align: right;
    }

    .cat-generated-grid-sec {
  display: grid;
  grid-template-columns: 1fr 649px;     /* text ︱ image */
  gap: 3rem;                            /* space between columns */
  font-family: "Source Serif 4", serif;
  margin: 0 auto;                       /* center the whole block */
  padding: 20px 150px;
  
}

/* ---------- text column ---------- */
.cat-generated-grid-sec__category {
  margin: 0 0 0.4rem;
  font-size: 17px;
  line-height: 19px;
  color: #4f89b9;  
  font-weight: 700;                    /* blue */
}

.cat-generated-grid-sec__title {
  margin: 0;
  font-size: 24px;
  line-height: 26px;
  font-weight: 600;
  color: #333;
  display: inline-block;
          /* underline that matches screenshot */
}
.cat-generated-grid-sec__title:hover{
  text-decoration: underline;
}

.cat-generated-grid-sec__author {
  margin: 1rem 0 0;
  font-size: 11px;
  font-weight: 600;
  color: #8a8a8a;                       /* muted grey */
}

/* ---------- image column ---------- */
.cat-generated-grid-sec__image-wrap {
  width: 100%;
}

.cat-generated-grid-sec__image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
  
}


/* read more btn */
.cat-generated-grid-sec__readmore-button {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  background: #001b4f;
  color: #fff;
  font: 600 1rem/1;
   font-family: "Source Serif 4", serif;
  text-decoration: none;
  border-radius: 2rem;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
  margin-left: 12%;
}

.cat-generated-grid-sec__readmore-button:hover {
  background: #154b7a;
  transform: translateY(-2px);
  box-shadow: 0 0 0 3px rgba(29, 100, 163, 0.25), 0 6px 15px rgba(0, 0, 0, 0.15);
}

.cat-generated-grid-sec__readmore-button span {
  position: relative;
  z-index: 1;
}

.cat-generated-grid-sec__readmore-button .arrow {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}

.cat-generated-grid-sec__readmore-button:hover .arrow {
  transform: translateX(5px);
}

.cat-generated-grid-sec__readmore-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.15),
    rgba(255, 255, 255, 0.05)
  );
  transform: rotate(0deg);
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.cat-generated-grid-sec__readmore-button:hover::before {
  animation: cat-generated-glow 2s linear infinite;
  opacity: 1;
}

@keyframes cat-generated-glow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
