/* Latest Posts Section */
.latest-grid-section {
  padding: 40px 0;
  background: #fff;
  overflow-x: hidden;
  width: 100%;
}

.latest-grid-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
  overflow: hidden;
}

/* Title */
.latest-grid-title {
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 25px;
  border-bottom: 3px solid #ccc;
  color: #000;
}

/* Grid - 3 columns on desktop */
.latest-grid-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
}

/* Card */
.latest-grid-card {
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.latest-grid-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.latest-grid-thumb {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.latest-grid-thumb img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: all 0.3s ease;
  max-width: 100%;
}

.latest-grid-card:hover .latest-grid-thumb img {
  filter: brightness(80%);
}

/* Info */
.latest-grid-info {
  padding: 15px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
  box-sizing: border-box;
}

/* Title */
.latest-grid-post-title {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.latest-grid-post-title a {
  color: #000;
  text-decoration: none;
}

.latest-grid-post-title a:hover {
  text-decoration: underline;
}

/* Meta Info */
.latest-grid-meta {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
  flex-wrap: nowrap;
  min-height: 20px;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
}

/* Dot */
.latest-dot {
  width: 17px;
  height: 17px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  transition: background 0.3s;
}

.latest-dot:hover {
  background: #000;
}

/* Category */
.latest-cat {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  flex-shrink: 0;
  white-space: nowrap;
}

.latest-cat:hover {
  text-decoration: underline;
}

/* Date */
.latest-date {
  color: #666;
  flex-shrink: 1; /* allow it to shrink slightly */
  white-space: normal; /* allow wrapping */
  overflow: visible;
  text-overflow: unset;
}

/* Author */
.latest-author {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
  flex-shrink: 0;
  white-space: nowrap;
}

.latest-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.latest-author a:hover {
  text-decoration: underline;
}

/* Load More */
.load-more-wrap {
  text-align: center;
  margin-top: 30px;
  width: 100%;
}

.btn-load-more {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-load-more:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Responsive - 2 columns on mobile (768px and below) */
@media (max-width: 768px) {
  .latest-grid-section {
    overflow-x: hidden;
  }

  .latest-grid-posts {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding-right: 10px;
  }

  .latest-grid-info {
    padding: 10px;
    min-height: unset;
  }

  .latest-grid-post-title {
    font-size: 14px;
  }

  .latest-grid-meta,
  .latest-author {
    font-size: 12.5px;
    flex-wrap: wrap; /* allow wrapping */
  }

  .latest-dot {
    width: 17px;
    height: 17px;
  }

  .latest-cat,
  .latest-date {
    font-size: 12.5px;
    white-space: normal; /* allow date wrapping */
  }

  .latest-grid-thumb img {
    height: 160px;
  }
}

/* AJAX Load More */
.load-more-wrap {
  text-align: center;
  margin: 30px 0;
}

.btn-load-more {
  background: #000;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
}

.btn-load-more:hover {
  background: #333;
}

/* Layout wrapper for grid + sidebar */
.latest-grid-wrapper {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Main grid section should take 75% width */
.latest-grid-section {
  flex: 0 0 75%;
}

/* Sidebar styling (WordPress sidebar area) */
.latest-grid-wrapper #secondary,
.latest-grid-wrapper .widget-area {
  flex: 0 0 25%;
}

/* On smaller screens, stack them */
@media (max-width: 991px) {
  .latest-grid-wrapper {
    flex-direction: column;
  }

  .latest-grid-section,
  .latest-grid-wrapper #secondary,
  .latest-grid-wrapper .widget-area {
    flex: 0 0 100%;
  }
}
/* Full width content when no sidebar on homepage */
.home #main-content.mh-content,
.home-page #main-content.mh-content {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
}

.home .mh-wrapper,
.home-page .mh-wrapper {
    max-width: 100% !important;
}

/* Hottest Songs Section */
.hottest-songs-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

/* Container fix: ensure section doesn’t touch screen edges */
.hottest-songs-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Section Title - force theme background reset */
.hottest-songs-section .section-title {
  background: none !important;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 8px;
  margin-bottom: 25px;
  border-bottom: 3px solid #000;
  width: 100%;
  display: block;
  color: #000 !important;
}

/* Grid Layout */
.songs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

/* Song Card */
.song-card {
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.song-card:hover {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Thumbnail */
.song-thumb {
  position: relative;
  overflow: hidden;
}

.song-thumb img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  object-fit: cover;
}

.song-card:hover .song-thumb img {
  filter: brightness(80%);
}

/* Song Info */
.song-info {
  padding: 12px 14px 15px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 110px;
}

/* Title */
.song-title {
  font-size: 15.5px;
  font-weight: 600;
  margin: 0 0 8px;
  line-height: 1.4;
  flex-grow: 1;
}

.song-title a {
  color: #000;
  text-decoration: none;
}

.song-title a:hover {
  text-decoration: underline;
}

/* Meta Info */
.song-meta {
  font-size: 13px;
  color: #444;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.4;
  white-space: normal;
}

/* Larger clickable dot linked to category */
.song-dot {
  width: 17px;
  height: 17px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
  transition: background 0.3s;
  flex-shrink: 0;
}

.song-dot:hover {
  background: #000;
}

/* Category */
.song-cat {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  flex-shrink: 0;
}

.song-cat:hover {
  text-decoration: underline;
}

/* Date */
.song-date {
  color: #666;
  flex: 1 1 auto;
  min-width: 100px;
}

/* Author Info */
.song-author {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
}

.song-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.song-author a:hover {
  text-decoration: underline;
}

/* Divider Above Button */
.songs-divider {
  margin: 30px 0 20px;
  border: none;
  border-bottom: 2px solid #e0e0e0;
}

/* Button */
.more-songs {
  text-align: center;
  margin-top: 10px;
}

.btn-more {
  background: #000;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-more:hover {
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
}

/* Responsive Fix: 2 Grid on Mobile */
@media (max-width: 768px) {
  .songs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .song-info {
    padding: 10px;
    min-height: unset;
  }

  .song-title {
    font-size: 14px;
  }

  .song-meta,
  .song-author {
    font-size: 12.5px;
  }

  .song-meta {
    flex-wrap: wrap;
    line-height: 1.5;
  }

  .song-dot {
    width: 17px;
    height: 17px;
  }

  .song-cat,
  .song-date {
    font-size: 12.5px;
  }

  .song-thumb img {
    height: 100%;
    object-fit: cover;
  }
}

/* Force full width for archive pages */
.archive #main-content.mh-content .latest-grid-wrapper,
.search #main-content.mh-content .latest-grid-wrapper {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.archive #main-content.mh-content .latest-grid-section,
.search #main-content.mh-content .latest-grid-section {
    width: 100% !important;
    flex: 0 0 100% !important;
}

.archive #main-content.mh-content .container,
.search #main-content.mh-content .container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* Featured Artists Section */
.featured-artists {
  background: #ffffff;
  padding: 28px 20px;
  box-sizing: border-box;
}

.featured-artists .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Title: left on desktop, centered on mobile, with red underline */
.featured-artists .section-title {
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 18px 0;
  text-align: center;
  display: inline-block;
  position: relative;
}


/* mobile center */
@media (max-width: 768px) {
  .featured-artists .section-title {
    display: block;
    text-align: center;
    margin-bottom: 18px;
  }
  .featured-artists .section-title::after {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 8px 0;
  box-sizing: border-box;
}

/* Track: horizontal flex container */
.carousel-track {
  display: flex;
  flex-direction: row;
  gap: 20px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: center;
  box-sizing: border-box;
}

/* Desktop: show 7 items per view */
@media (min-width: 769px) {
  .artist {
    flex: 0 0 auto;
    width: calc((100% - 120px) / 7); /* 6 gaps * 20px = 120px */
    max-width: 160px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Mobile: show 3 items per view */
@media (max-width: 768px) {
  .artist {
    flex: 0 0 auto;
    width: calc((100% - 40px) / 3); /* 2 gaps * 20px = 40px */
    max-width: 140px;
    box-sizing: border-box;
    text-align: center;
  }
}

/* Artist visuals */
.artist img {
  width: 100%;
  max-width: 120px;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 3px solid #eee;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.artist img:hover {
  transform: scale(1.07);
  border-color: #e60023;
  box-shadow: 0 6px 18px rgba(230,0,35,0.18);
}

.artist p {
  margin: 8px 0 0 0;
  font-size: 14px;
  color: #000;
  font-weight: 600;
  text-align: center;
  line-height: 1.1;
   white-space: nowrap; /* Prevent text wrapping */
}

/* Plain arrow buttons - JS will set left/top to center over icons */
.carousel-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: #e60023;
  font-size: 80px;
  cursor: pointer;
  z-index: 3;
  padding: 0 0 40px 0;
  transition: color 0.2s ease, transform 0.12s ease;
}

.carousel-btn:hover {
  color: #c4001e;
  transform: translateY(-2px);
}

/* smaller on tiny screens */
@media (max-width: 420px) {
  .carousel-btn { width: 40px; height: 40px; font-size: 60px; }
}

/* Make sure artists stay in a row */
.carousel-track .artist { display: block; }

/* Utility */
.featured-artists a { color: inherit; text-decoration: none; }

/* 404 Page Styles */
.error-404 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 60vh;
  padding: 40px;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

.error-404 .page-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #222;
  font-weight: 400;
  position: relative;
  z-index: 2;
  border: none;
  padding: 0;
}

.error-404 .entry-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.error-404 .mh-box p {
  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.error-search {
  max-width: 400px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.error-search form {
  display: flex;
  gap: 10px;
}

.error-search .search-field {
  flex: 1;
  padding: 12px 15px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background: #fff;
  outline: none;
}

.error-search .search-submit {
  padding: 12px 20px;
  font-size: 16px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Baby character animation */
.baby-character {
  position: absolute;
  right: -100px;
  bottom: 20px;
  width: 120px;
  height: 120px;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="40" r="30" fill="white" opacity="0.8"/><circle cx="40" cy="35" r="5" fill="black"/><circle cx="60" cy="35" r="5" fill="black"/><path d="M40,55 Q50,65 60,55" stroke="black" stroke-width="2" fill="none"/><circle cx="35" cy="25" r="3" fill="white"/><circle cx="55" cy="25" r="3" fill="white"/></svg>');
  background-repeat: no-repeat;
  z-index: 1;
  animation: walk 15s linear infinite;
  opacity: 0.5;
}

@keyframes walk {
  0% {
    transform: translateX(0) rotateY(0deg);
    right: -100px;
  }
  50% {
    right: calc(100% + 100px);
    transform: translateX(0) rotateY(0deg);
  }
  51% {
    transform: translateX(0) rotateY(180deg);
  }
  100% {
    right: -100px;
    transform: translateX(0) rotateY(180deg);
  }
}

@media (max-width: 480px) {
  .error-404 {
    padding: 20px;
  }
  
  .error-404 .page-title {
    font-size: 36px;
  }
  
  .error-404 .mh-box p {
    font-size: 16px;
  }
  
  .baby-character {
    width: 80px;
    height: 80px;
    opacity: 0.3;
  }
  
  .error-search form {
    flex-direction: column;
  }
}

/* ===== Sidebar: Check-Out Section ===== */
.checkout-sidebar {
  background: #fff;
  border: 1px solid #eee;
  padding: 20px;
  box-sizing: border-box;
}

.checkout-title {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 3px solid #ccc;
  padding-bottom: 6px;
  padding-top: 8px;
}

/* Vertical post list */
.checkout-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #f0f0f0;
  margin-bottom: 20px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.checkout-card:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}

/* Thumbnail */
.checkout-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

/* Info */
.checkout-info {
  padding: 12px;
}

.checkout-post-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 8px;
}

.checkout-post-title a {
  color: #000;
  text-decoration: none;
}

.checkout-post-title a:hover {
  text-decoration: underline;
}

/* Meta */
.checkout-meta {
  font-size: 13px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.4;
}

.checkout-dot {
  width: 17px;
  height: 17px;
  background: #000;
  border-radius: 50%;
  display: inline-block;
}

.checkout-cat {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.checkout-cat:hover {
  text-decoration: underline;
}

.checkout-date {
  color: #666;
}

/* Author */
.checkout-author {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
  margin-top: 4px;
}

.checkout-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.checkout-author a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
  .checkout-sidebar {
    display: none !important;
  }
}

/* Checkout Sidebar Sticky Behavior */
.checkout-sidebar {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#checkout-placeholder {
  display: none;
}
.fixed-sidebar {
  position: fixed !important;
  top: 20px !important;
}
.absolute-sidebar {
  position: absolute !important;
}

/* ===========================
   TGpbaze: Fixed Header CSS - Matches Reference Exactly
   =========================== */

/* ---------- General layout ---------- */
.tgpbaze-header-wrapper { 
    background: #000; 
    border-bottom: none; 
}
.tgpbaze-header-wrapper * { 
    box-sizing: border-box; 
}

/* Masthead (logo + top icons) */
.masthead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 15px 20px;
    max-width: none;
    width: 100%;
    position: relative;
    z-index: 50;
}

/* Logo */
.masthead__logo { 
    flex: 0 0 auto; 
}
.masthead__logo .custom-logo { 
    max-height: 60px; 
    width: auto; 
    display: block; 
}

/* Masthead controls container */
.masthead__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Search container */
.masthead__search {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

/* round icon button base */
.metro-button {
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    padding: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background .12s;
    position: relative;
    z-index: 10;
}
.metro-button:hover { 
    background: rgba(255,255,255,0.12); 
}

/* masthead icon color (white) */
.masthead .metro-button svg,
.masthead .metro-button use { 
    color: #fff; 
    fill: currentColor; 
}

/* search form hidden by default, expands when .search-open applied to .masthead */
.masthead .search-form { 
    display: none;
    align-items: center; 
    gap: 8px; 
    position: absolute;
    right: 0;
    top: 0;
    background: #000;
    padding: 0;
    z-index: 5;
}
.masthead.search-open .search-form { 
    display: flex !important; 
}

.metro-search__input {
    width: 320px;
    padding: 12px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    outline: none;
    font-size: 14px;
}

/* Search submit button - hidden on desktop, visible on mobile */
.metro-search__submit {
    display: none;
    padding: 12px 20px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background .12s;
}
.metro-search__submit:hover {
    background: rgba(255,255,255,0.2);
}

/* Close search button */
.metro-button_close-search {
    background: rgba(255,255,255,0.1);
}

/* ---------- Main nav (second row) ---------- */
.site-navigation {
    background: #000;
    padding: 0;
    position: relative;
    overflow: visible;
    z-index: 40;
}

/* Nav container */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 20px;
    max-width: none;
    width: 100%;
    position: relative;
}

/* main menu - aligned left below logo */
.site-navigation__menu {
    display: flex;
    gap: 36px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    white-space: nowrap;
    justify-content: flex-start;
}

/* Hide Articles on mobile */
.menu-item-desktop-only {
    display: none;
}

/* nav link style - REDUCED GAP BETWEEN TEXT AND UNDERLINE */
.navigation__link {
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 6px 7px; /* Reduced bottom padding from 20px to 14px */
    position: relative;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    display: inline-block;
    white-space: nowrap;
}

/* Underline - Moved closer to text */
.navigation__link::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 6px; /* Moved up from 8px to 6px */
    width: 100%;
    height: 3px;
    background: #fff;
    opacity: .96;
    border-radius: 2px;
    transition: all .14s ease;
}

/* hover widen effect */
.navigation__link:hover::after {
    width: 110%;
    opacity: 1;
}

/* active / current -> red */
.site-navigation__menu li.current-menu-item > .navigation__link::after,
.site-navigation__menu li.current-menu-ancestor > .navigation__link::after,
.navigation__link.is-active::after {
    background: #e03131 !important;
    opacity: 1;
}

/* if homepage (static nav), highlight first item */
body.home .site-navigation__menu li:first-child > .navigation__link::after {
    background: #e03131 !important;
    opacity: 1;
}

/* hide potential drop-downs on desktop */
.site-navigation__menu li ul { 
    display: none !important; 
}

/* Desktop Hamburger - COMPLETELY SEPARATE SECTION */
.desktop-hamburger-section {
    position: absolute;
    right: 20px;
    top: 0;
    z-index: 101;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Desktop hamburger button */
.nav-hamburger {
    position: relative;
    z-index: 102;
    pointer-events: auto;
}

/* Make hamburger icon white */
.nav-hamburger svg {
    color: #fff !important;
    fill: currentColor !important;
}

/* Hide desktop hamburger section on mobile */
@media (max-width: 768px) {
    .desktop-hamburger-section {
        display: none !important;
    }
}

/* Show desktop hamburger section on desktop */
@media (min-width: 769px) {
    .desktop-hamburger-section {
        display: flex;
    }
    
    /* Ensure search form doesn't overlap hamburger */
    .masthead .search-form {
        right: 80px; /* More space for separate hamburger section */
    }
}

/* Compressed state for desktop nav */
.site-navigation.compressed .site-navigation__menu {
    transform: scale(0.85);
    transform-origin: left center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.site-navigation.compressed .navigation__link {
    font-size: 14px;
    padding: 10px 4px 9px; /* Adjusted bottom padding */
}

/* ---------- Mobile Dropdown Menu ---------- */
.mobile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    z-index: 999;
    display: none;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown-content {
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mobile-dropdown__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.mobile-dropdown__item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-dropdown__link {
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    display: block;
    padding: 15px 0;
    text-transform: uppercase;
}

/* ---------- Mobile specific ---------- */
@media (max-width: 768px) {
    .masthead { 
        padding: 12px 15px 10px 15px; 
    }
    .masthead__logo .custom-logo { 
        max-height: 45px; 
    }

    /* Show mobile hamburger */
    .masthead__hamburger {
        display: flex !important;
    }

    /* Show mobile navigation */
    .site-navigation {
        display: block;
        background: #000;
        z-index: 100;
    }

    /* Hide desktop hamburger on mobile */
    .nav-hamburger {
        display: none !important;
    }

    /* Show 5 items on mobile in main nav */
    .site-navigation__menu li.menu-item-desktop-only {
        display: none;
    }

    /* Mobile nav layout - horizontal scroll */
    .site-navigation__menu {
        display: flex;
        gap: 20px;
        padding: 0 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .site-navigation__menu::-webkit-scrollbar {
        display: none;
    }

    .navigation__link {
        font-size: 14px;
        padding: 10px 4px 7px; /* Reduced bottom padding */
        white-space: nowrap;
        flex-shrink: 0;
    }

    /* Search input adjustments for mobile */
    .metro-search__input { 
        width: 200px; /* Reduced width to prevent overflow */
        margin-left: 15px; /* Added left margin */
    }

    /* Show search submit button on mobile */
    .metro-search__submit {
        display: block;
    }

    /* Adjust search form layout for mobile */
    .masthead .search-form {
        position: fixed;
        left: 15px;
        right: 15px;
        top: 12px;
        padding: 8px;
        background: #000;
        border-radius: 22px;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .masthead.search-open .search-form {
        display: flex !important;
        align-items: center;
    }

    /* Make entire header sticky on mobile */
    .tgpbaze-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: #000; /* Ensure no transparency issues */
    }

    /* Shortcut nav scrolls normally */
    .shortcut-nav {
        position: relative;
        z-index: 1;
    }

    /* Mobile dropdown starts below navs and covers shortcuts */
    .mobile-dropdown-menu {
        position: fixed;
        top: 120px; /* Approximate height of masthead + nav - adjust if needed */
        left: 0;
        right: 0;
        bottom: 0;
        overflow-y: auto;
    }

    .mobile-dropdown-menu.active {
        display: block;
    }
}

/* ---------- Desktop Styles ---------- */
@media (min-width: 769px) {
    /* Hide mobile hamburger from top on desktop */
    .masthead__hamburger {
        display: none !important;
    }
    
    /* Show desktop nav and hamburger */
    .site-navigation,
    .nav-hamburger {
        display: flex;
    }

    /* Show all 6 menu items on desktop */
    .menu-item-desktop-only {
        display: list-item;
    }

    /* Hide mobile dropdown on desktop */
    .mobile-dropdown-menu {
        display: none !important;
    }

    /* Desktop nav alignment - left aligned below logo */
    .site-navigation__menu {
        justify-content: flex-start;
        margin-left: 0;
    }

    /* Desktop hamburger positioned at far right below search icon */
    .nav-hamburger {
        position: absolute;
        right: 20px;
        top: 0;
    }
}

/* ---------- Shortcut nav ---------- */
.shortcut-nav {
    background: #fff;
    padding: 25px 0;
}
.shortcut-nav__list {
    display: flex;
    gap: 28px;
    justify-content: flex-start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.shortcut-nav__item { 
    text-align: center; 
    flex-shrink: 0;
}
.shortcut-nav__item a {
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: none;
}

/* Hover only affects icon circle */
.shortcut-nav__item a:hover { 
    transform: none;
}
.shortcut-nav__item a:hover .shortcut-nav__circle { 
    background: #000;
}

/* Shortcut circle default: light grey; icon default: black */
.shortcut-nav__circle {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .12s;
}
.shortcut-nav__circle svg { 
    width: 28px; 
    height: 28px; 
    color: #111; 
    fill: currentColor; 
}
.shortcut-nav__title { 
    font-size: 12px; 
    font-weight: 700; 
    color: #111; 
}

/* Hide scrollbars but keep functionality */
.shortcut-nav__list::-webkit-scrollbar {
    display: none;
}

.shortcut-nav__list {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ensure nav links don't wrap and cause vertical scroll */
.site-navigation__menu li { 
    white-space: nowrap; 
}

/* Remove mobile dropdown header */
.mobile-dropdown-header {
    display: none !important;
}

/* ===========================
   Footer Styles - High Specificity
   =========================== */

/* Top Social Bar */
.tgpbaze-header-wrapper ~ .footer-social-bar {
    background: #000 !important;
    width: 100% !important;
}

.tgpbaze-header-wrapper ~ .footer-social-bar .footer-social-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

.tgpbaze-header-wrapper ~ .footer-social-bar .social-link {
    flex: 1 !important;
    color: white !important;
    text-align: center !important;
    padding: 8px 0 !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
    display: block !important;
}

.tgpbaze-header-wrapper ~ .footer-social-bar .social-link.facebook {
    background: #3b5998 !important;
}

.tgpbaze-header-wrapper ~ .footer-social-bar .social-link.twitter {
    background: #1da1f2 !important;
}

.tgpbaze-header-wrapper ~ .footer-social-bar .social-link:hover {
    opacity: 0.85 !important;
    transform: scale(1.01) !important;
}

/* Main Footer */
.tgpbaze-header-wrapper ~ .main-footer {
    background: #000 !important;
    padding: 15px 10px !important;
    color: #ccc !important;
    font-family: Arial, sans-serif !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-container {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
    align-items: center !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-left {
    flex: 1 !important;
    font-size: 13px !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-left a {
    color: #ccc !important;
    text-decoration: none !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-dmca {
    flex-shrink: 0 !important;
    margin-top: 8px !important;
}

/* Footer Links */
.tgpbaze-header-wrapper ~ .main-footer .footer-links {
    text-align: right !important;
    margin-top: 10px !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-links a {
    color: #ccc !important;
    margin: 0 6px !important;
    text-decoration: none !important;
}

.tgpbaze-header-wrapper ~ .main-footer .footer-links a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* ===========================
   Site Title & Tagline Styles
   =========================== */

/* Site text container */
.tgpbaze-site-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

/* Site title - Blue heading */
.tgpbaze-site-title {
    color: #2c5aa0 !important;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: Arial, sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Site description/tagline - White and clear */
.tgpbaze-site-desc {
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    margin: 4px 0 0 0;
    padding: 0;
    letter-spacing: 0.5px;
    font-family: Arial, sans-serif;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tgpbaze-site-title {
        font-size: 22px;
        letter-spacing: 0.8px;
    }
    
    .tgpbaze-site-desc {
        font-size: 14px;
        letter-spacing: 0.4px;
    }
}

/* Ensure custom logo link styling */
.masthead__logo .custom-logo-link {
    display: block;
    text-decoration: none;
}

.masthead__logo .custom-logo-link:hover {
    text-decoration: none;
}

/* Hover effects for site text */
.masthead__logo .custom-logo-link:hover .tgpbaze-site-title {
    color: #1e3d6f !important;
}

.masthead__logo .custom-logo-link:hover .tgpbaze-site-desc {
    color: #f0f0f0 !important;
}

/* ===========================
   Content Single Design - TGPbaze
   =========================== */

/* Post Title */
.entry-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0;
    color: #000;
    text-align: left;
}

/* Author Meta Section */
.post-meta {
    display: flex;
    align-items: flex-start; /* Changed to flex-start for better alignment */
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Author Avatar */
.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: block;
}

/* Author Info */
.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 700;
    font-size: 16px;
    color: #000;
    text-decoration: none;
    display: block;
    margin-bottom: 2px;
    line-height: 1.2;
}

.author-name:hover {
    text-decoration: underline;
}

/* Article Date */
.article-date {
    font-size: 14px;
    color: #666;
    line-height: 1.3;
}

.article-date time {
    display: inline-block;
}

/* Make only "Published" and "Updated" text bold */
.article-date strong {
    font-weight: 700;
}

/* Desktop: Published and Updated side by side in straight line */
@media (min-width: 769px) {
    .article-date time {
        display: inline-block;
        margin-right: 15px;
    }
    
    .article-date time:last-child {
        margin-right: 0;
    }
    
    .post-meta {
        align-items: center; /* Center align on desktop */
    }
}

/* Mobile: Avatar left, author name top right, date below author name */
@media (max-width: 768px) {
    .post-meta {
        align-items: flex-start;
        flex-wrap: nowrap;
    }
    
    .author-info {
        margin-left: 0;
    }
    
    .author-name {
        font-size: 15px;
        margin-bottom: 4px;
    }
    
    .article-date {
        font-size: 13px;
        line-height: 1.3;
    }
    
    /* Mobile: Stack Published and Updated vertically */
    .article-date time {
        display: block;
        margin-bottom: 2px;
    }
    
    .article-date time:last-child {
        margin-bottom: 0;
    }
}

/* Social Share & Comments Row */
.meta-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 20px 0;
}

/* Social Share Buttons */
.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.share-button svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Comments Button - Black Background */
.comments-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.comments-cta:hover {
    background: #333;
    color: #fff;
}

.comments-cta svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Mobile: Smaller comment button that fits mobile */
@media (max-width: 768px) {
    .meta-actions {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .comments-cta {
        padding: 6px 12px;
        font-size: 13px;
        border-radius: 16px;
    }
    
    .comments-cta svg {
        width: 14px;
        height: 14px;
    }
    
    .share-buttons {
        gap: 6px;
    }
    
    .share-button {
        width: 36px;
        height: 36px;
    }
    
    .share-button svg {
        width: 16px;
        height: 16px;
    }
}

/* Featured Image */
.entry-content .wp-post-image {
    width: 100%;
    height: auto;
    margin: 0 0 20px 0;
    display: block;
    border-radius: 8px;
}

/* Article Content */
.entry-content {
    line-height: 1.6;
    color: #333;
    font-size: 16px;
}

.entry-content p {
    margin-bottom: 16px;
}

/* Download Button */
.val9ja-download-section {
    margin: 20px 0;
    text-align: center;
}

.val9ja-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.val9ja-download-btn:hover {
    background: #333;
    color: #fff;
    transform: translateY(-2px);
}

/* Related Topics */
.related-topics {
    margin: 30px 0;
}

.related-topics__heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.related-topics__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.related-topics__list a {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.related-topics__list a:hover {
    background: #333;
    color: #fff;
}

/* Tags Section - Black Background */
.entry-tags {
    margin: 30px 0;
}

.entry-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.entry-tags li {
    margin: 0;
}

.entry-tags a {
    background: #000;
    color: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.entry-tags a:hover {
    background: #333;
    color: #fff;
}

/* Remove MH Magazine related posts navigation */
.post-navigation,
.nav-links {
    display: none !important;
}

/* Social Icons Colors */
.share-button.whatsapp { background: #25D366; }
.share-button.twitter { background: #1DA1F2; }
.share-button.facebook { background: #1877F2; }
.share-button.copy_link { background: #666; }

/* Smooth scroll for comment links */
.comments-cta {
    scroll-behavior: smooth;
}

/* Fix for social share icons in footer */
.article-footer .share-buttons {
    display: flex !important;
    visibility: visible !important;
}

.article-footer .share-button {
    display: flex !important;
    visibility: visible !important;
}

/* Ensure content doesn't stretch full width like featured image */
.entry-content > *:not(.wp-post-image) {
    max-width: 100%;
}
/* ===========================
   Subtitle and Featured Image Caption Styles
   =========================== */

/* Subtitle Styling - Fixed padding and overflow */
.subtitle {
    font-size: clamp(14px, 3.5vw, 15px);
    font-weight: normal;
    color: #555;
    margin: 0;
    padding: 10px 0 15px 0; /* Added bottom padding: 10px top, 15px bottom */
    text-align: left;
    font-family: Arial, sans-serif;
    line-height: 1.3;
    white-space: normal; /* Changed from nowrap to normal to prevent horizontal overflow */
    overflow: visible; /* Changed from hidden to visible */
    text-overflow: unset; /* Removed ellipsis */
    font-style: italic;
    word-wrap: break-word; /* Ensure long words break */
    overflow-wrap: break-word; /* Modern property for word breaking */
    max-width: 100%; /* Ensure it doesn't overflow container */
}

/* Mobile specific subtitle fixes */
@media (max-width: 768px) {
    .subtitle {
        padding: 8px 0 12px 0; /* Slightly less padding on mobile */
        font-size: 14px; /* Consistent font size on mobile */
        line-height: 1.4; /* Better line height for mobile */
    }
}

/* Featured Image Wrapper */
.mh-featured-image-wrapper {
    margin-bottom: 0 !important;
}

/* Featured Image Caption */
.featured-caption-wrapper {
    background: #f2f2f2;
    padding: 10px;
    text-align: left;
    margin-top: 0;
}

.featured-caption {
    margin: 0;
    font-size: 12px;
    color: #757373;
}

/* Hide MH Magazine caption and remove ALL spacing */
.mh-thumb-caption,
.wp-caption-text,
.featured-image-caption {
    display: none !important;
}

/* Remove ALL margins and padding from image containers */
.mh-featured-image,
.post-thumbnail,
.wp-caption,
.mh-featured-image-wrapper > figure,
.mh-featured-image-wrapper > div,
.mh-featured-image-wrapper img {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

/* Remove any gap after the image */
.mh-featured-image-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Force your caption to touch the image */
.featured-caption-wrapper {
    margin-top: 0 !important;
}

/* Tags hover effect */
.entry-tags ul li a:hover {
    background: #000 !important;
    color: #fff !important;
}

/* Force full-width images in post content */
.full-featured-image {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
  border-radius: 0px !important; /* no rounded edges */
}


/* Telegram-Follow single */
.group-card{
  margin:20px 0;
  background:#f0f8ff;
  border:2px solid transparent;
  border-radius:5px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:7px;
  animation:borderGlow 1s infinite;
}

@keyframes borderGlow{
  50%{border-color:#004F7A}
}

.group-card .tg-head{
  display:flex;
  align-items:center;
}

.group-card .tg-head i{
  font-size:24px;
  color:#004F7A;
}

.group-card .tg-head b{
  margin-left:10px;
  font-size:.9rem;
}

.group-card .tg-btn{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:5px 20px;
  background:#004F7A;
  color:#fff!important;
  font-weight:700;
  border-radius:2px;
  text-decoration:none;
  transition:.3s;
}

.group-card .tg-btn:hover{
  transform:scale(1.05);
}


/* Tgpbaze Author Box Styles */
.tgpbaze-author-box {
    border: 2px solid #000000 !important;
    padding: 8px;
    position: relative;
    background: #fff;
    margin: 20px 0;
}

.tgpbaze-about-label {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 4px 8px;
    font-size: 12px;
    color: #fff;
    background-color: #000000 !important;
    border-radius: 0 0 0 4px;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.tgpbaze-author-mobile {
    display: block;
}

.tgpbaze-author-avatar {
    margin: 0 auto 15px auto;
    border: 2px solid #700202;
    border-radius: 50%;
    padding: 2px;
    background: #fff;
    text-align: center;
    width: 94px; /* Fixed width to match avatar size */
    height: 94px; /* Fixed height to match avatar size */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure perfect circle */
}

.tgpbaze-author-avatar img {
    border-radius: 50%;
    display: block;
    width: 90px !important; /* Force exact size */
    height: 90px !important; /* Force exact size */
    object-fit: cover; /* Maintain aspect ratio */
}

.tgpbaze-author-content {
    text-align: center;
}

.tgpbaze-author-header {
    margin-bottom: 10px;
}

.tgpbaze-author-name {
    display: block;
    font-weight: bold;
    font-size: 18px;
    color: #000;
    margin-bottom: 8px;
}

.tgpbaze-author-bio {
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.tgpbaze-author-social {
    margin-top: 10px;
    text-align: center;
}

.tgpbaze-social-link {
    color: #000000 !important;
    margin: 0 12px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
}

.tgpbaze-social-link:hover {
    opacity: 0.7;
}

/* Ensure Font Awesome icons display */
.tgpbaze-social-link .fa {
    margin-right: 4px;
    font-size: 16px;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .tgpbaze-author-box {
        padding: 20px;
    }
    
    .tgpbaze-author-mobile {
        display: flex;
        align-items: flex-start;
        text-align: left;
    }
    
    .tgpbaze-author-avatar {
        margin: 0 20px 0 0;
        float: none;
        flex-shrink: 0;
    }
    
    .tgpbaze-author-content {
        text-align: left;
        flex: 1;
    }
    
    .tgpbaze-author-bio {
        text-align: left;
    }
    
    .tgpbaze-author-social {
        text-align: left;
    }
    
    .tgpbaze-social-link {
        margin: 0 12px 0 0;
    }
}

/* Mobile Layout */
@media (max-width: 768px) {
    .tgpbaze-author-box {
        padding: 15px 8px 12px 8px;
    }
    
    .tgpbaze-author-avatar {
        margin: 0 auto 12px auto;
    }
    
    .tgpbaze-author-name {
        font-size: 16px;
    }
    
    .tgpbaze-author-bio {
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .tgpbaze-social-link {
        margin: 0 10px;
        font-size: 14px;
    }
    
    .tgpbaze-about-label {
        font-size: 11px;
        padding: 3px 6px;
    }
}

/* ===== Top 20 Section ===== */
.top20-section {
  background: #fff;
  padding: 10px 0;
}

.top20-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Full-width horizontal lines */
.top20-line {
  border: none;
  height: 2px;
  background: #ccc;
  width: 100%;
  margin: 0 0 25px 0;
}

.bottom-line {
  margin-top: 35px;
  margin-bottom: 0;
}

/* Title */
.top20-title {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: #000;
  text-align: center;
  margin-bottom: 35px;
}

/* Grid layout */
.top20-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  padding: 10px;
}

/* Cards */
.top20-card {
  background: #fff;
  border: 1px solid #eee;
  text-align: center;
  border-radius: 8px;
  overflow: hidden;
}

/* Image zoom on hover */
.top20-thumb {
  overflow: hidden;
}

.top20-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.top20-thumb:hover img {
  transform: scale(1.08);
}

/* Song title */
.top20-song-title {
  font-size: 15.5px;
  font-weight: 600;
  color: #000;
  margin: 10px;
  line-height: 1.4;
}

/* Swiper navigation */
.swiper-button-prev,
.swiper-button-next {
  color: red !important;
  top: 45%;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.8;
}

/* Pagination dots - moved slightly down */
.swiper-pagination {
  margin-top: 25px !important;
}

.swiper-pagination-bullet {
  background: #000 !important;
}

/* Show More button */
.top20-more {
  text-align: center;
  margin-top: 40px;
}

.top20-btn {
  background: #000;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.top20-btn:hover {
  background: #111;
  color: #f5f5f5;
}

/* Always 3 per row on all devices */
@media (max-width: 768px) {
  .top20-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .top20-song-title {
    font-size: 13.5px;
  }

  .top20-thumb img {
    height: 150px;
  }

  .top20-title {
    font-size: 20px;
  }

  .top20-line {
    height: 1.5px;
  }

  .swiper-pagination {
    margin-top: 20px !important;
  }
}
/* Hide trending section on mobile */
@media (max-width: 768px) {
    .trending-section-desktop {
        display: none !important;
    }
}

/* Tgpbaze Mobile Related Posts */
#tgp-related-posts {
    display: none;
    margin: 20px 0;
}

#tgp-related-posts h2 {
    margin: 10px 0 0;
    width: 100%;
    padding: 8px 5px 8px 15px;
    background-color: #000000 !important;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 0 5px 0 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#tgp-related-posts ul {
    padding: 0;
    list-style: none;
    border: 3px solid #000000 !important;
    margin: 0;
    background: #fff;
}

#tgp-related-posts ul li {
    background-color: #fff;
    margin: 0;
    padding: 12px 10px;
    overflow: auto;
    border-bottom: 2px solid #000000 !important;
}

#tgp-related-posts ul li:last-child {
    border-bottom: none !important;
}

.tgp-related-thumb {
    float: left;
    margin-right: 10px; /* Reduced from 15px to 10px */
}

.tgp-related-thumb img {
    width: 80px;
    height: 80px;
    border: 2px solid #000000 !important;
    object-fit: cover;
    display: block;
}

.tgp-related-content {
    overflow: hidden;
}

.tgp-related-content h3 {
    margin: 0;
    padding: 0;
    line-height: 1.3;
}

.tgp-related-content a {
    color: #000000 !important; /* Force black color, remove gold */
    font-size: 14px;
    line-height: 1.3;
    font-weight: 600;
    text-decoration: none;
}

.tgp-related-content a:hover {
    color: #700202 !important; /* Red color on hover */
}

/* Show only on mobile */
@media screen and (max-width: 768px) {
    #tgp-related-posts {
        display: block;
    }
}

/* Smaller mobile adjustments */
@media screen and (max-width: 480px) {
    .tgp-related-thumb img {
        width: 70px;
        height: 70px;
        margin-right: 8px; /* Reduced from 12px to 8px */
    }
    
    .tgp-related-content a {
        font-size: 13px;
    }
    
    #tgp-related-posts h2 {
        font-size: 16px;
        padding: 6px 5px 6px 12px;
    }
    
    #tgp-related-posts ul li {
        padding: 10px 8px;
    }
    
    .tgp-related-thumb {
        margin-right: 8px; /* Reduced for smaller screens */
    }
}

/* Trending Posts Section with 5 post numbered - FIXED */
.trending-posts-section {
  margin: 40px 0;
  padding: 30px 0;
  background-color: #f8f8f8;
  border: 1px solid #d1d1d1;
  border-radius: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.trending-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}

.trending-title {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

.trending-more-btn {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background-color 0.3s;
}

.trending-more-btn:hover {
  background-color: #333;
  color: #fff;
}

.trending-more-btn svg {
  width: 16px;
  height: 16px;
}

.trending-content {
  display: flex;
  gap: 30px;
}

.trending-main {
  display: flex;
  gap: 30px;
  width: 100%;
}

.trending-featured {
  flex: 1;
  position: relative;
  max-width: 450px; /* Increased image section size */
}

.trending-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff0000;
  color: #fff;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  z-index: 3;
  border-radius: 0;
}

.trending-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.trending-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

.trending-thumb:hover img {
  filter: brightness(0.8);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: background 0.3s ease;
  z-index: 1;
}

.trending-thumb:hover .image-overlay {
  background: rgba(0, 0, 0, 0.3);
}

.trending-info {
  margin-top: 15px;
  max-width: 450px; /* Match increased image width */
}

.trending-title-main {
  font-size: 20px;
  margin: 0 0 12px 0;
  line-height: 1.3;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.trending-title-main a {
  color: #000;
  text-decoration: none;
}

.trending-title-main a strong {
  font-weight: bold;
}

.trending-title-main a:hover {
  color: #cc06a8;
}

.trending-meta {
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  line-height: 1.4;
}

.trending-dot {
  color: #000000;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.trending-cat {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}

.trending-cat:hover {
  color: #cc06a8;
}

.trending-date {
  color: #666;
}

.trending-author {
  color: #666;
}

.trending-author a {
  color: #666;
  text-decoration: none;
  font-weight: bold;
}

.trending-author a:hover {
  color: #cc06a8;
}

.trending-list {
  flex: 1;
  min-width: 0; /* Prevent overflow */
}

.trending-list ol {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  gap: 12px;
  width: 100%;
}

.trending-item:last-child {
  border-bottom: none;
}

.trending-list-number {
  background-color: #ff0000;
  color: #fff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
  border-radius: 0;
  margin-top: 1px;
}

.trending-item a {
  color: #000;
  text-decoration: none;
  line-height: 1.3;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-size: 15px;
  min-width: 0; /* Important for text truncation */
}

.trending-item a strong {
  font-weight: bold;
}

.trending-item a:hover {
  color: #cc06a8;
}

.trending-mobile-btn {
  display: none;
  text-align: center;
  margin-top: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trending-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .trending-header .trending-more-btn {
    display: none;
  }
  
  .trending-content {
    flex-direction: column;
    gap: 20px;
  }
  
  .trending-main {
    flex-direction: column;
    gap: 20px;
  }
  
  .trending-featured {
    max-width: 100%; /* Full width on mobile */
  }
  
  .trending-thumb {
    max-width: 100%; /* Full width on mobile */
    aspect-ratio: 1 / 1;
  }
  
  .trending-info {
    max-width: 100%; /* Full width on mobile */
  }
  
  .trending-list {
    flex: none;
    width: 100%;
  }
  
  .trending-meta {
    flex-wrap: wrap;
  }
  
  .trending-mobile-btn {
    display: block;
  }
  
  .trending-item {
    padding: 10px 0;
    align-items: center;
  }
  
  .trending-list-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
    margin-top: 0;
  }
  
  .trending-item a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trending-title {
    font-size: 20px;
  }
  
  .trending-title-main {
    font-size: 18px;
  }
  
  .trending-meta {
    font-size: 13px;
  }
  
  .trending-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  
  .trending-list-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .trending-item a {
    font-size: 13px;
  }
  
  .trending-dot {
    font-size: 16px;
  }
}

/* Archive Trending Section Fixes */
.archive-trending-wrapper .trending-posts-section {
  margin: 30px 0 !important;
  background-color: #f8f8f8 !important;
  padding: 25px !important;
  border: 1px solid #d1d1d1 !important;
  border-radius: 0 !important;
}

.archive-trending-wrapper .container {
  max-width: 1200px !important;
  margin: 0 auto !important;
  padding: 0 15px !important;
}

.archive-trending-wrapper .trending-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 25px !important;
  border-bottom: 2px solid #000 !important;
  padding-bottom: 10px !important;
}

.archive-trending-wrapper .trending-title {
  font-size: 22px !important;
  font-weight: bold !important;
  text-transform: uppercase !important;
  color: #000 !important;
  margin: 0 !important;
}

.archive-trending-wrapper .trending-content {
  display: flex !important;
  gap: 25px !important;
}

.archive-trending-wrapper .trending-main {
  display: flex !important;
  gap: 25px !important;
  width: 100% !important;
}

.archive-trending-wrapper .trending-thumb {
  aspect-ratio: 1 / 1 !important; /* Square for archive too */
}

.archive-trending-wrapper .trending-thumb img {
  height: 100% !important; /* Changed from fixed height */
}

/* Mobile fixes for archive trending */
@media (max-width: 768px) {
  .archive-trending-wrapper .trending-header {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 15px !important;
  }
  
  .archive-trending-wrapper .trending-header .trending-more-btn {
    display: none !important;
  }
  
  .archive-trending-wrapper .trending-content {
    flex-direction: column !important;
  }
  
  .archive-trending-wrapper .trending-main {
    flex-direction: column !important;
    gap: 20px !important;
  }
  
  .archive-trending-wrapper .trending-list {
    flex: none !important;
    width: 100% !important;
  }
  
  .archive-trending-wrapper .trending-thumb {
    aspect-ratio: 1 / 1 !important;
  }
  
  .archive-trending-wrapper .trending-mobile-btn {
    display: block !important;
    text-align: center !important;
    margin-top: 20px !important;
  }
}

@media (max-width: 480px) {
  .archive-trending-wrapper .trending-title {
    font-size: 20px !important;
  }
  
  .archive-trending-wrapper .trending-thumb img {
    height: 100% !important;
  }
}

/* Dynamic FAQ Section Styles */
.dynamic-faq-section {
    background: #fff;
    border: 1px solid #ddd;
    margin: 25px 0;
    font-family: Arial, sans-serif;
    max-width: 100%;
}

.faq-single-title {
    background: #1c1c99;
    padding: 15px 10px;
}

.faq-single-title h2 {
    color: #fff;
    font-size: 16px;
    margin: 0;
    text-align: center;
    font-weight: bold;
    text-transform: uppercase;
    word-wrap: break-word;
}

.faq-content {
    padding: 20px;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.faq-item:last-of-type {
    margin-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

.faq-question-text {
    font-weight: bold;
    color: #333;
    font-size: 15px;
    flex: 1;
    margin-right: 15px;
}

.faq-arrow {
    color: #000;
    font-weight: bold;
    font-size: 16px;
}

.faq-answer {
    display: none;
    padding: 10px;
    background: #f8f9fa;
    border-left: 3px solid #1c1c99;
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}

.faq-feedback {
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.faq-feedback a {
    color: #ed093b;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-question {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .faq-question-text {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .faq-arrow {
        align-self: flex-end;
    }
}

/* Tgpbaze Desktop Related Posts Styles */
.tgpbaze-related-posts {
    display: none; /* Hidden by default, shown only on desktop */
    margin: 30px 0;
    padding: 0;
    max-width: 100%;
}

.tgpbaze-related-post {
    background: #f8f9fa;
    border: 3px solid #d1d1d1;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    overflow: hidden;
}

.tgpbaze-related-post:last-child {
    margin-bottom: 0;
}

.tgpbaze-related-post:hover {
    border-color: #a0a0a0;
    background: #ffffff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.tgpbaze-related-post-content {
    padding: 15px;
    position: relative;
    min-height: 100px;
}

.tgpbaze-related-post-link {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 10px;
    width: 100%;
}

.tgpbaze-related-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    background: #e0e0e0;
    margin: 0;
}

.tgpbaze-related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin: 0;
    padding: 0;
}

.tgpbaze-no-thumbnail {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    color: #666;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.tgpbaze-related-post-title {
    flex: 1;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin: 0;
    padding: 0;
    align-self: flex-start;
    /* Allow title to wrap and take full available space */
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    min-height: auto;
}

.tgpbaze-see-more-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    text-align: right;
}

.tgpbaze-see-more-link {
    background: #2c5aa0;
    color: white !important;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.tgpbaze-see-more-link:hover {
    background: #1e3d6f;
    transform: scale(1.05);
    color: white !important;
    text-decoration: none;
}

/* Show only on desktop */
@media (min-width: 1024px) {
    .tgpbaze-related-posts {
        display: block;
    }
}

/* Ensure no shaking or unwanted animations */
.tgpbaze-related-post,
.tgpbaze-related-post-link,
.tgpbaze-see-more-link {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

/* Focus states for accessibility */
.tgpbaze-related-post-link:focus,
.tgpbaze-see-more-link:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Remove any default WordPress image styles */
.tgpbaze-related-posts .attachment-thumbnail,
.tgpbaze-related-posts .wp-post-image {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Ensure titles display fully and wrap properly */
.tgpbaze-related-post-title {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* Limit to 3 lines max */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 4.2em; /* 3 lines * 1.4 line-height */
}

/* Trending Songs Page Section Numbered */
.trending-songs-page-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

.trending-songs-page-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Page Header - UPDATED */
.trending-page-header {
  margin-bottom: 40px;
  text-align: left; /* Changed from center to left */
}

.trending-page-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 15px 0; /* Keep margin for description */
  padding-bottom: 0; /* Remove padding since border is moved */
  display: block; /* Changed from inline-block to block */
  border-bottom: none; /* Remove border from title */
}

.trending-page-description {
  font-size: 16px;
  color: #666;
  margin: 0 0 20px 0; /* Added bottom margin for the line */
  line-height: 1.5;
  max-width: 100%; /* Changed from 600px to full width */
}

/* New horizontal line below description */
.trending-page-divider {
  border: none;
  border-bottom: 2px solid #000; /* Slimmer line */
  margin: 0; /* Remove default margin */
  width: 100%; /* Full width to match grid */
}

/* Trending Songs Grid */
.trending-songs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Trending Song Card */
.trending-song-card {
  border: 1px solid #f0f0f0;
  background: #fff;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.trending-song-card:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Trending Number - Positioned like in trending section */
.trending-song-number {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ff0000;
  color: #fff;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
  z-index: 3;
  border-radius: 0;
}

/* Thumbnail */
.trending-song-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.trending-song-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.3s ease;
  object-fit: cover;
}

.trending-song-card:hover .trending-song-thumb img {
  filter: brightness(80%);
}

/* Song Info */
.trending-song-info {
  padding: 15px 12px 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 110px;
}

/* Title */
.trending-song-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.4;
  flex-grow: 1;
  padding-top: 5px;
}

.trending-song-title a {
  color: #000;
  text-decoration: none;
}

.trending-song-title a:hover {
  color: #cc06a8;
}

/* Meta Info */
.trending-song-meta {
  font-size: 13px;
  color: #444;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  line-height: 1.4;
}

.trending-song-dot {
  color: #000000;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.trending-song-cat {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  flex-shrink: 0;
}

.trending-song-cat:hover {
  color: #cc06a8;
}

.trending-song-date {
  color: #666;
  flex: 1 1 auto;
}

/* Author Info */
.trending-song-author {
  font-size: 13px;
  color: #555;
  line-height: 1.3;
}

.trending-song-author a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.trending-song-author a:hover {
  color: #cc06a8;
}

/* No Songs Message */
.no-trending-songs {
  text-align: center;
  font-size: 18px;
  color: #666;
  grid-column: 1 / -1;
  padding: 40px 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .trending-songs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .trending-songs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .trending-page-title {
    font-size: 26px;
  }
  
  .trending-page-description {
    font-size: 14px;
  }
  
  .trending-song-info {
    padding: 12px 10px 10px;
    min-height: unset;
  }
  
  .trending-song-title {
    font-size: 14px;
  }
  
  /* Hide date and author on mobile */
  .trending-song-date,
  .trending-song-author {
    display: none;
  }
  
  .trending-song-meta {
    margin-bottom: 0;
  }
  
  .trending-song-number {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .trending-songs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .trending-page-title {
    font-size: 22px;
  }
  
  .trending-song-title {
    font-size: 13px;
  }
  
  .trending-song-meta {
    font-size: 12px;
  }
  
  .trending-song-number {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
}