/* =========================================================
   FONTS
   ========================================================= */
@font-face {
  font-weight: 400;
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Regular.otf');
}

@font-face {
  font-weight: 700;
  font-family: 'General Sans';
  src: url('../fonts/RGeneralSans-Bold.otf');
}

@font-face {
  font-weight: 500;
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Medium.otf');
}

@font-face {
  font-weight: 600;
  font-family: 'General Sans';
  src: url('../fonts/GeneralSans-Semibold.otf');
}


/* =========================================================
   GLOBAL RESET & BASE STYLES
   ========================================================= */
html {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  color-scheme: dark; /* Force dark mode for browsers */
}

html::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

body {
  margin: 0;
  padding: 0;
  font-family: 'General Sans', sans-serif;
  box-sizing: border-box;
  background-color: #1A1818;
  color-scheme: dark;
}

h1, h2, h3, h4, h5, h6, ul, li {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}


/* =========================================================
   HEADER
   ========================================================= */
.header {
  width: 100%;
  background: #201E1E;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color 0.5s;
}

.header.scrolled {
  background-color: #000;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.header-menu {
  max-width: 1920px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #424242;
  transition: border-bottom 0.5s;
}

.header-menu.scrolled {
  border-bottom: none; 
}


/* =========================================================
   BURGER MENU
   ========================================================= */
.burger-button {
  display: none;
  width: 20px;
  height: 15px;
  position: relative;
  cursor: pointer;
  margin-left: 15px;
}

.bar {
  position: absolute;
  top: calc(50% - 1px);
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #D9D9D9;
}

.bar:first-child {
  top: 0;
}

.bar:last-child {
  bottom: 0;
  top: auto;
}

.burger-button.reverse .bar:nth-child(1) {
  transition: all .4s; 
}

.burger-button.reverse .bar:nth-child(2) {
  opacity: 1;
}

.burger-button.reverse .bar:nth-child(3) {
  transition: all .4s; 
}

.burger-button.active .bar:nth-child(1) {
  transform: rotate(-45deg);
  top: calc(50% - 1px);
  transition: all .2s
}

.burger-button.active .bar:nth-child(2) {
  opacity: 0;
}

.burger-button.active .bar:nth-child(3) {
  transform: rotate(45deg);
  top: calc(50% - 1px);
  transition: all .4s
}

/* =========================================================
   HEADER LOGO & SOCIAL
   ========================================================= */

.header-logo-social {
  display: flex;
}

.header-logo {
  margin-left: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
}

 .header-logo::after {
  content: '';
  display: block;
  position: relative;
  height: 67px;
  width: 1px;
  background-color: #424242;
  margin-left: 38px;
} 

.header-social {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  margin-left: 33px;
  line-height: 130%;
}

.header-social::after {
  content: '';
  display: block;
  position: relative;
  height: 67px;
  width: 1px;
  background-color: #424242;
  margin-left: 33px;
} 

.dropdown-social-toggle {
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.dropdown-social-toggle:hover,
.dropdown-social-toggle:focus,
.nav-menu-link:hover,
.nav-menu-link:focus {
  color: #EB2D2D;
  transition: 0.3s;
}

.dropdown-social-toggle:hover svg path,
.dropdown-social-toggle:focus svg path,
.nav-menu-link:hover .dropdown-arrow path,
.nav-menu-link:focus .dropdown-arrow path {
  stroke: #EB2D2D;
  transition: 0.3s;
}

.dropdown-arrow {
  margin-left: 5px;
  transition: transform 0.5s ease;
}

.dropdown-arrow.active {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -30px;
  background-color: #201E1E;
  color: #FFF;
  margin-top: 5px;
  border: 1px solid #424242;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2; 
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.dropdown-menu li {
  padding: 12px 16px;
  transition: background-color 0.3s ease;
  line-height: 1.4;
  min-height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.dropdown-menu li:first-child {
  padding-top: 12px;
}

.dropdown-menu li:hover {
  background-color: rgba(235, 45, 45, 0.1);
}

.dropdown-menu.active {
  display: block;
  color: #FFF;
  font-size: 13px; /* Adjusted font size */
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 
  z-index: 20;
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   HEADER DROPDOWN STYLES
   ========================================================= */

/* Desktop dropdown behavior - keep original working styling */
.header-social .dropdown-menu.active {
  width: 140px;
}


/* Opinion dropdown specific width and positioning */
.nav-menu > .nav-menu-item:nth-child(2) .dropdown-menu.active {
  width: 160px;
  left: -30px;
}

/* Pulse Feed dropdown specific width and positioning */
.nav-menu > .nav-menu-item:nth-child(3) .dropdown-menu.active {
  width: 320px;
  left: -30px;
}

/* ===== MOBILE ACCORDION BEHAVIOR (≤ 992px) ===== */
@media (max-width: 992px) {
  /* Turn dropdowns into inline accordion on mobile */
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: 8px 0 0 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    display: none;           /* hidden until parent is open */
    opacity: 1;
    pointer-events: auto;
  }

  /* Remove background color from dropdown items on mobile */
  .dropdown-menu li {
    background: transparent !important;
  }

  .dropdown-menu li:hover {
    background: transparent !important;
  }

  /* Active color for nav items on mobile hover */
  .nav-menu-link:hover {
    color: #eb2d2d !important;
  }

  /* open state */
  .nav-menu-item.open > .dropdown-menu {
    display: block;
  }

  /* mobile panel scroll + arrow flip */
  .nav-bar.active { 
    left: 0;
    border-top: 1px solid #424242;
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch; 
    height: calc(100vh - 43px);
    max-height: calc(100vh - 43px);
    padding-bottom: 60px; /* ensure social media section is accessible */
  }
  
  .dropdown-arrow { 
    transition: transform .25s; 
  }
  
  .nav-menu-item.open .dropdown-arrow { 
    transform: rotate(180deg); 
  }

  /* tidy mobile row with lightning icon support */
  .nav-menu-link { 
    display: flex; 
    align-items: center; 
    justify-content: space-between; 
    width: 96%; 
    gap: 12px;
  }

  /* Lightning icon styling for mobile navigation dropdown items */
  .dropdown-item .nav-icon {
    width: 25px;
    height: 25px;
    color: #eb2d2d;
    flex-shrink: 0;
    margin-right: 15px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  /* Show filled lightning on hover for Opinion and Pulse Feed dropdown items */
  .dropdown-item:hover .nav-icon path {
    fill: #eb2d2d;
    stroke: none;
  }

  /* Ensure text content takes remaining space */
  .nav-menu-link > span,
  .nav-menu-link > text {
    flex: 1;
  }
}

/* =========================================================
   SOCIAL DROPDOWN LINKS
   ========================================================= */

.dropdown-social-links {
  margin-bottom: 10px;
}

.dropdown-social-links a {
  font-family: 'General Sans', sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  color: #FFF;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  width: 100%;
  padding: 0;
  margin: 0;
}

.dropdown-social-links a i {
  width: 16px;
  text-align: center;
  font-size: 16px;
}

.dropdown-social-links:hover a {
  color: #EB2D2D;
  text-decoration: none;
}


.search-burger-form {
  display: none;

}

.search-group-burger {
  display: flex;
  align-items: center;
  background: inherit;
  border-radius: 65px;
  border: 1px solid #424242;
  overflow: hidden;
  max-width: 350px;
  width: 100%;
}


/* =========================================================
   NAVIGATION MENU
   ========================================================= */
.nav-menu-list {
  display: flex;
}

.nav-menu-item {
  position: relative;
}

.nav-menu-item .dropdown-menu {
  top: 30px;
}
/* Removed conflicting top positioning */
.nav-menu-item:not(:first-child) {
  margin-left: 35px;
}

.nav-menu-link {
  font-family: 'General Sans', sans-serif;
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.dropdown-item {
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #FFF;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-item:hover {
  color: #EB2D2D;
  text-decoration: none;
  transform: translateX(3px);
}

/* =========================================================
   HEADER FORMS & SEARCH
   ========================================================= */
.burger-social-wrap {
  display: none;
}

.header-forms {
  display: flex;
}

.header-forms::before {
  content: '';
  display: block;
  position: relative;
  height: 67px;
  width: 1px;
  background-color: #424242;
  margin-right: 45px;
}

/* search header */
.header-search {
  position: relative;
  width: 110px;
  height: 66px;
  transition: width 0.4s ease-out, opacity 0.3s ease-out;
  background: #201E1E;
  border-radius: 33px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.header-search.scrolled {
  background: #000;
}

.header-search.active {
  width: 360px;
}

/* Hover functionality now handled by JavaScript with 1-second delay */

.search-icon {
  width: 66px;
  height: 66px;
  background: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: pointer;
}

.search-input {
  position: absolute;
  top: 50%;
  left: 66px;
  width: 0;
  height: 40px;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  color: #201E1E;
  font-size: 16px;
  font-family: 'General Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  opacity: 0;
  transition: width 0.4s ease-out, opacity 0.3s ease-out;
  background-color: #f8f8f8;
  color: black;
  border-radius: 25px;
  padding-left: 15px;
  z-index: 2;
}

.header-search.active .search-input {
  width: 73%;
  padding: 0 15px;
  opacity: 1;
  z-index: 2; 
}

/* button submit */
.button-submit {
  width: 203px;
  height: 67px;
  background: var(--red, #9E2929);

  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.button-submit:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  border: 1px solid #424242;
}

/* break points */
@media (min-width: 1920px) {
  .header-logo-social svg {
    width: 109px;
    height: 45px;
  }
  
  .header-logo::after {
    height: 80px;
    margin-left: 61px;
  }

  .header-social {
    font-size: 16.696px;
    margin-left: 40px;
  }

  .header-social::after {
    height: 80px;
    margin-left: 39px;
  }

  .dropdown-social-toggle {
    font-size: 16.696px;
  }
    
    
  .nav-menu-link svg {
    width: 10px;
    height: 5px;
  }

  .header-social svg {
    width: 10px;
    height: 5px;
  }

  .dropdown-menu.active {
    font-size: 17px;
  }

  .dropdown-social-links {
    font-size: 17px;
  }

  .nav-menu-link {
    font-size: 17px;
  }

  .nav-menu-link svg {
    width: 10px;
    height: 5px;
  }

  .dropdown-item {
    font-size: 17px;
  }

  .header-search {
    height: 80px;
  }

  .header-forms::before {
    height: 80px;
  }

  .search-icon svg{
    width: 24px;
    height: 23px;
  }

  .search-input {
    font-size: 17px;
  }

  .button-submit {
    font-size: 16.696px;
    width: 242px;
    height: 79px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .header-logo {
    margin-left: 46px;
  }

  .header-logo-social svg {
    width: 81px;
    height: 34px;
  }

  .header-logo::after {
    height: 60px;
    margin-left: 47px;
  }

  .header-social {
    font-size: 14px;
    margin-left: 29px;
  }

  .header-social::after {
    height: 60px;
    margin-left: 27px;
  }

  .dropdown-social-toggle {
    font-size: 14px;
  }

  .header-social svg {
    width: 7px;
    height: 4px;
  }

  .dropdown-menu.active {
    font-size: 14px;
  }

  .dropdown-social-links {
    font-size: 14px;
  }

  .nav-menu-link {
    font-size: 14px;
  }

  .nav-menu-link svg {
    width: 7px;
    height: 4px;
  }

  .dropdown-item {
    font-size: 14px;
  }

  .header-forms::before {
    height: 60px;
    margin-right: 35px;
  }

  .header-search {
    width: 101px;
    height: 60px;
  }

  .header-search.active {
    width: 250px;
  }

  /* Hover functionality handled by JavaScript */

  .search-icon {
    width: 60px;
    height: 60px;
  }

  .search-icon svg{
    width: 18px;
    height: 17px;
  }

  .search-input {
    font-size: 14px;
  }

  .button-submit {
    font-size: 14px;
    width: 182px;
    height: 60px;
  }
}

@media (max-width: 1439px) {
  .header-logo {
    margin-left: 41px;
  }

  .header-logo-social svg {
    width: 72px;
    height: 30px;

  }

  .header-logo::after {
    height: 53px;
    margin-left: 42px;
  }

  .header-social {
    font-size: 12.444px;
    margin-left: 25px;
  }

  .header-social::after {
    height: 53px;
    margin-left: 25px;
  }

  .dropdown-social-toggle {
    font-size: 12.444px;
  }

  .nav-menu-link svg {
  	width: 7px;

  }
  .header-social svg {
    width: 7px;

  }

  .dropdown-menu.active {
    font-size: 12.444px;
  }

  .dropdown-social-links {
    font-size: 12.444px;
  }

  .nav-menu-link {
    font-size: 12.444px;
  }

  .dropdown-item {
    font-size: 12.444px;
  }

  .header-search {
    width: 88px;
    height: 53px;
  }

  .header-forms::before {
    height: 53px;
    margin-right: 15px;
  }

  .header-search.active {
    width: 250px;
  }

  /* Hover functionality handled by JavaScript */

  .search-icon svg{
    width: 16px;
    height: 15px;
  }

  .search-input {
    font-size: 12.444px;
  }

  .button-submit {
    font-size: 12.444px;
    width: 162px;
    height: 53px;
  }
}

@media (max-width: 1023px) {
  .header-logo {
    margin-left: 33px;
  }

  .header-logo::after {
    height: 43px;
    margin-left: 33px;
  }

  .header-social {
    font-size: 12px;
    margin-left: 15px;
  }

  .header-social::after {
    height: 43px;
    margin-left: 15px;
  }

  .dropdown-social-toggle {
    font-size: 12px;
  }

  .dropdown-menu.active {
    font-size: 12px;
  }

  .dropdown-social-links {
    font-size: 12px;
  }

  .nav-menu-link {
    font-size: 12px;
  }

  .dropdown-item {
    font-size: 12px;
  }

  .header-search {
    height: 43px;
  }

  .header-forms::before {
    height: 43px;
    margin-right: 15px;
  }

  .header-search.active {
    width: 180px;
  }

  /* Hover functionality handled by JavaScript */

  .search-icon svg{
    width: 13px;
    height: 12px;
  }

  .search-input {
    font-size: 12px;
  }

  .button-submit {
    font-size: 12px;
    width: 130px;
    height: 42px;
  }
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */
@media (max-width: 992px) {
  .burger-button {
    display: block;
  }

  body.lock {
    overflow: hidden;
  }

  .header-menu {
    justify-content: space-between;
  }

  .dropdown-arrow {
    width: 14px;
    height: 10px;
  }

  .nav-bar {
    position: absolute;
    top: 43px;
    left: -100%; 
    height: calc(100vh - 43px);
    width: 100%;
    background-color: #201E1E;
    display: flex;
    transition: right 0.3s ease; 
    z-index: 5;
    transition: all .2s;
    overflow-y: auto;
    overflow-x: hidden;
    flex-direction: column;
    -webkit-overflow-scrolling: touch;
  }



  .mobile-div {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .search-burger-form {
    margin-top: 30px;
    margin-left: 10px;
    width: 96%;
    display: flex;
  }
  /* Make the form truly full width on mobile */
@media (max-width: 992px) {
  .search-burger-form {
    width: 100% !important;
    margin: 30px 0 0 0 !important;   /* remove left gap */
    padding: 0 10px;                  /* optional inner gutters */
    box-sizing: border-box;
    display: flex;                    /* keep children aligned */
  }

  .search-group-burger {
    max-width: none !important;       /* remove the 350px cap */
    width: 100% !important;
  }

  /* ensure the input fills */
  .search-group-burger input[type="search"],
  .search-all-news {
    width: 100% !important;
    flex: 1 1 auto;
  }
}


  .nav-menu-list {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0 0 10px;
  }

  .nav-menu-link {
    font-size: 35px;
  }

  .nav-menu-item .dropdown-menu {
    top: 0px;
}
  .nav-menu-item:not(:first-child) {
    margin-left: 0;
}

  .nav-bar {
    justify-content: space-between;
  }

  .dropdown-item {
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
  }
 
  .dropdown-menu {
    position: relative;
    background-color: inherit;
  }

  .dropdown-menu li:first-child {
    padding-top: 14px;
  }

  .dropdown-menu li {
    padding: 0 0 15px 5px;
  }

  .burger-social-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 420px;
    margin: 20px auto 40px auto;
    padding: 24px 28px;             /* increased vertical padding for taller pill */
    border: 1px solid #424242;
    border-radius: 60px;
    box-sizing: border-box;
  }
  
  .burger-social-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;                      /* spacing between icons */
    padding: 0;
    margin: 0;
    list-style: none;
  }

.burger-social-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s ease;      /* smooth hover */
}
  
/* Hover effect: icons flip to red */
.burger-social-item a:hover svg path,
.burger-social-item a:hover svg circle {
  fill: var(--red, #9E2929);
  stroke: var(--red, #9E2929);
}

  .burger-social-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 18px;
  }

  .burger-social-item {
    width: 31px;
    height: 31px;
    align-items: center;
  }








  
  
  .header-logo::after {
    display: none;
  }

  .header-social {
    display: none;
  }

  .header-forms::before {
    display: none;
  }

  .header-search {
    display: none;
  }
}
/* =========================================================
   MOBILE SOCIAL ICONS
   ========================================================= */
@media (max-width: 767px) {
  .button-submit {
    font-size: 13px;
    width: 78px;
    height: 43px;
  }

  .search-group-all {
    width: 100%;
  }

  .nav-menu-link {
    font-size: clamp(20px, 6vw, 35px);
  }

  /* Adjust lightning icon size for smaller screens */
  .dropdown-item .nav-icon {
    width: 16px;
    height: 16px;
  }

  .burger-social-list {
    justify-content: space-between;
  }
}
/* =========================================================
   SIDEBAR
   ========================================================= */
.full-sidebar-wrap{
  background: #201E1E;
}

.sidebar-container {
  display: flex;
  max-width: 1920px;  
  margin: auto;
}


/* Use default browser scrollbar for better UX */
::-webkit-scrollbar {
  width: 8px;
  height: 4px;  /* smaller horizontal scrollbar */
}

::-webkit-scrollbar-track {
  background: #1A1818;
}

::-webkit-scrollbar-thumb {
  background: #424242;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.main-container {
  display: flex;
  margin-top: 66px;
}

.sidebar {
  max-width: 314px;
  width: 100%;
  height: calc(100vh - 66px); 
  background: #201E1E;
  overflow-y: auto; 
}


.sidebar-news {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #424242;
  cursor: pointer;
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  color: #424242;
  line-height: 130%;
}

.sidebar-news h3 {
  color: rgba(255, 255, 255, 0.5);
}

.sidebar-news.active-sidebar {
  background: var(--red, #9E2929);
}

.sidebar-news.active-sidebar h3 {
  color: #FFF;
}

.sidebar-news:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.4s;
}

.sidebar-news:hover h3 {
  color: #FFF;
}

.sidebar-news:focus {
  color: #FFF;
  transition: 0.4s;
} 

.sidebar-news.active {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  color: #FFF;
}

.sidebar-wrap {
  display: block;
  padding-left: 30px;
  align-items: center;
}

.article-category {
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.5;
  line-height: 110%;
  text-align: left;
  display: block;
}

.article-category:hover {
  opacity: 1;
}

.sidebar-article-2 {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  display: block;
}

.sidebar-article {
  margin-top: 10px;
  padding-right: 40px;
}

/* =========================================================
   MAIN CONTENT
   ========================================================= */
.main {
  position: relative;
  background-image: url(); 
  background-size: cover;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-color: #424242;
  box-sizing: border-box;
  width: 100%;
  z-index: 0;
}

.main::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.07%, rgba(0, 0, 0, 0.34) 69.01%);
  z-index: -3;
}

#mainArcticle {
  /* Style for background img */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

#articleContent {
  /* article style */
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  margin-top: 20px;
}

.main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  min-height: calc(100vh - 66px);
  position: relative;
}

/* main buttons */
.main-button-box {
  margin-left: 35px;
  margin-top: 35px;
  position: relative;
}

/* Dark texture overlay for tag visibility */
.main-button-box::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(135deg, 
    rgba(0, 0, 0, 0.4) 0%, 
    rgba(0, 0, 0, 0.2) 50%, 
    rgba(0, 0, 0, 0.1) 100%);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  z-index: -1;
  pointer-events: none;
}

.tag-main {
  background: inherit;
  border-radius: 48px;
  border: 1px solid #FFF;
  padding: 10px 15px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #FFF;
  line-height: 110%; 
  cursor: pointer;
}

.tag-submited {
  background: #FFF;
  color: #000;
  line-height: 110%; 
}

.tag-main:not(:first-child) {
  margin-left: 10px;
}

.tag-main:hover {
  background: #fff;
  color: #000;
  transition: 0.4s;
}

.tag-submited:hover {
  background: #d2caca;
  transition: 0.4s;
}

.main-arcticle-box {
  margin-left: 35px;
  margin-top: auto; 
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute; 
  bottom: 0; 
  left: 0; 
}

.main-digital {
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  opacity: 0.5;
  line-height: 110%;
  text-align: left;
  display: inline-block; /* Changed from block to inline-block so it only wraps text */
  width: fit-content; /* Only as wide as the text content */
  cursor: pointer;
}

.main-digital:hover {
  opacity: 1;
  background: transparent !important;
}

.main-title {
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  color: #FFF;
  margin-top: 10px;
  padding-bottom: 30px;
  cursor: pointer;

  line-height: 110%;
  max-width: 870px;
}

.main-title:hover {
  color: rgba(255, 255, 255, 0.6);
}

.main-author-box {
  display: flex;
  align-items: center;
  padding-bottom: 35px;
}

.main-author-box img {
  border-radius: 50%;
  max-width: 63px;
  width: 100%;
  max-height: 63px;
  height: 100%;
}

.main-author-inbox {
  margin-left: 15px;
}

.main-name-author {
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; 
}

.main-name-author:hover {
  text-decoration: underline;
  transition: 0.4s;
}

.main-author-data {
  color: #FFF;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  padding: 0;
  margin-top: 5px;
  line-height: 110%; 
}

.main-buttons {
  display: none;
}


.slider-dots {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

.slider-dot {
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.slider-dot.active {
  background-color: #fff;
}

.view-all-digital-mob {
  display: none;
}

.swiper-pagination-mobile {
  display: none;
}



/* break points */
@media (min-width: 1920px) {
  .sidebar {
    max-width: 376px;
  }

  .sidebar-news{
    padding-top: 36px;
    padding-bottom: 36px;
    font-size: 21px;
  }

  .sidebar-wrap {
    padding-left: 36px;
  }

  .article-category {
    font-size: 16px;
  }

  #articleContent {
    font-size: 21px;
  }

  .btn-main {
    font-size: 17px;
  }

  .main-digital {
    font-size: 21px;
  }

  .main-title {
    font-size: 60px;
    max-width: 1038px;
  }

  .main-name-author {
    font-size: 21px;
  }

  .main-author-data {
    font-size: 16px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .sidebar {
    max-width: 281px;
  }

  .sidebar-news{
    padding-top: 27px;
    padding-bottom: 27px;
    font-size: 16px;
  }

  .sidebar-wrap {
    padding-left: 27px;
  }

  .article-category {
    font-size: 14px;
  }

  #articleContent {
    font-size: 16px;
  }

  .btn-main {
    font-size: 14px;
  }

  .main-digital {
    font-size: 16px;
  }

  .main-title {
    font-size: 45px;
    max-width: 778px;
  }

  .main-name-author {
    font-size: 16px;
  }

  .main-author-box img {
    width: 56px;
    height: 56px;
  }

  .main-author-data {
    font-size: 13px;
  }
}

@media (max-width: 1439px) {
  .sidebar {
    max-width: 250.5px;
  }

  .sidebar-news{
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 16px;
  }

  .sidebar-wrap {
    padding-left: 16px;
  }

  .article-category {
    font-size: 14px;
  }

  #articleContent {
    font-size: 16px;
  }

  .btn-main {
    font-size: 14px;
  }

  .main-digital {
    font-size: 16px;
  }

  .main-title {
    font-size: 40px;
    max-width: 778px;
  }

  .main-name-author {
    font-size: 16px;
  }

  .main-author-data {
    font-size: 13px;
  }
}

@media (max-width: 1023px) {
  .sidebar {
    max-width: 212px;
  }

  .sidebar-news{
    padding-top: 19px;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .article-category {
    font-size: 12px;
  }

  #articleContent {
    font-size: 13px;
  }

  .btn-main {
    font-size: 11.2px;
  }

  .main-digital {
    font-size: 13px;
  }

  .main-title {
    font-size: 32px;
    max-width: 622px;
  }

  .main-name-author {
    font-size: 14px;
  }

  .main-author-box img {
    width: 49px;
    height: 50px;
  }

  .main-author-data {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .sidebar {
    display: none;
  }
 .view-all-digital-mob {
    border-top: 1px solid #424242;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #FFF;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    padding-top: 24px;
    padding-bottom: 24px;
    font-size: 17px;
    background: #201E1E;
 }
   .view-all-digital-mob:hover {
     background: #9E2929;
    }
  
  /* Mobile pagination dots - show only on mobile */
  .swiper-pagination-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 20px 0 10px 0;
    margin: 0 auto;
  }
  
  .swiper-pagination-mobile .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  .swiper-pagination-mobile .swiper-pagination-bullet-active {
    background: #fff;
    width: 10px;
    height: 10px;
  }

   .slider-dots {
    display: flex;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .sidebar {
    display: none;
  }

  .main {
    cursor: grab;
    touch-action: pan-y; /* Allow vertical scrolling but handle horizontal swipes */
  }
  
  .main:active {
    cursor: grabbing;
  }
  
  /* Make the entire hero area touchable */
  .full-sidebar-wrap {
    cursor: grab;
    touch-action: pan-y;
  }
  
  .full-sidebar-wrap:active {
    cursor: grabbing;
  }
  
  .main-content {
    min-height: calc(100vh - 150px);
  }

  .main-button-box {
    display: none;
  }
  
  /* Hide overlay on mobile since tags are hidden */
  .main-button-box::before {
    display: none;
  }
    
  .main-author-box {
    display: none;
  }

  .main-arcticle-box {
    margin-left: 10px;
  }

  .main-container {
    max-width: 100%;
  }

  .main-title {
    font-size: clamp(18px, 8vw, 32px);
    max-width: 350px;
    padding-bottom: 50px;
  }

}

/* =========================================================
   DIGITAL COVER SPECIAL
   ========================================================= */
.digital-cover-special {
  background: #1A1818;
  width: 100%;
  padding-bottom: 113px;
}

.digital-special-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  border-top: 1px solid #424242;
  padding-top: 113px;
  padding-bottom: 95px;
}

.swiper-slide-digital {
  max-width: 594px;
  width: 100%;
  margin-right: 20px; 
}

.digital-cover-swiper {
  overflow: hidden;
}

.digital-title-special {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-bottom: 10px;
  text-transform: uppercase;

  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; 
}

.digital-special-context {
  color: #FFF;
  text-align: center;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  opacity: 0.5;
  margin: 0 auto;
  padding: 0;
}

.swiper-wrapper-digital {
  background: inherit;
  cursor: url(img_bg/drag.svg), auto;
}

.swiper-slide-digital {
  max-width: 500px; /* Scaled down from 594px */
  width: 100%;
  cursor: url(img_bg/drag.svg), auto;
}

.special-digital-card {
  background: #1A1818;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center; /* Center all content */
  text-align: center; /* Center text */
  padding: 0 20px 20px 20px; /* Even padding for centering */
}

.special-digital-card .main-digital,
.special-digital-card .special-title-card {
  margin-left: 0; /* Remove left margin for centering */
  margin-right: 0;
}

.special-digital-card img {
  width: 90%; /* Slightly smaller for better scaling */
  height: auto; /* Auto height to prevent cropping */
  min-height: 350px; /* Scaled down minimum height */
  max-height: 500px; /* Scaled down maximum height */
  object-fit: contain; /* Show full image without cropping */
  margin-bottom: 15px;
}

/* Fallback red blocks for testing */
.fallback-digital-cover {
  width: 100%;
  height: 450px;
  background: linear-gradient(135deg, #ff4444, #cc0000);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.fallback-digital-cover::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.1) 10px,
    rgba(255, 255, 255, 0.1) 20px
  );
}

.fallback-content {
  text-align: center;
  color: white;
  z-index: 1;
  position: relative;
}

.fallback-content h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.fallback-content p {
  font-size: 16px;
  opacity: 0.9;
  margin: 0;
}

.special-title-card {
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-align: left; /* Changed from center to left for consistency */
  display: inline-block; /* Changed from block to inline-block */
  width: fit-content; /* Only as wide as the text content */
  cursor: pointer;
}

.special-title-card:hover {
  transition: .5s;
  color: var(--red, #9E2929);
}

/* =========================================================
   DIGITAL COVER RESPONSIVE
   ========================================================= */
@media (max-width: 1920px) {
  .digital-title-special {
    font-size: 60px;
  }

  .special-title-card {
    font-size: 30px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .digital-title-special {
    font-size: 45px;
  }

  .special-title-card {
    font-size: 28px;
  }
}

@media (max-width: 1439px) {
  .digital-title-special {
    font-size: 40px;
  }

  .swiper-slide-digital {
    width: 80%;
  }

  .special-title-card {
    font-size: 20px;
  }
}

@media (max-width: 1023px) {
  .digital-title-special {
    font-size: 32px;
    text-align: center;
  }

  .swiper-slide-digital {
    width: 60%;
  }
    
  .digital-special-context {
    font-size: 26px;
  }

  .special-digital-card img {
    margin-bottom: 5px;
    min-height: 300px; /* Smaller min-height for mobile */
    max-height: 500px; /* Smaller max-height for mobile */
  }

  .fallback-digital-cover {
    height: 350px;
  }

  .fallback-content h3 {
    font-size: 18px;
  }

  .fallback-content p {
    font-size: 14px;
  }

  .special-title-card {
    font-size: 18px;
  }
}

/* Ensure consistency for smaller mobile devices */
@media (max-width: 767px) {
  .digital-title-special {
    font-size: 24px; /* Reduced from 28px for mobile */
    text-align: center;
    padding: 0 20px;
  }

  .swiper-slide-digital {
    width: 80%; /* Wider on smaller screens for better visibility */
  }

  .special-digital-card {
    padding: 0 15px 20px 15px; /* Even padding for centering */
  }

  .special-digital-card img {
    width: 100%; /* Full width on mobile */
    margin-bottom: 10px;
    min-height: 250px; /* Smaller for mobile */
    max-height: 400px;
  }

  .special-digital-card .main-digital,
  .special-digital-card .special-title-card {
    margin-left: 0; /* Keep centered on mobile */
    margin-right: 0;
  }

  .special-title-card {
    font-size: 16px;
  }

  .fallback-digital-cover {
    height: 300px;
  }

  .fallback-content h3 {
    font-size: 16px;
  }
}


/* =========================================================
   MARQUEE SECTION
   ========================================================= */
.marquee {
  overflow: hidden;
  position: relative; 
  white-space: nowrap;
  padding-top: 25px;
  padding-bottom: 25px;
  background: #201E1E;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #424242;
  
}

.marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marqueeAnimation 30s linear infinite; 
}

.marquee-content img {
  width: 31px;
  height: 40px;
  padding-right: 40px;
  vertical-align: middle;
}

.marquee-name {
  color: #FFF;
  text-align: center;

  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; 
  text-transform: uppercase;
  opacity: 0.5;

  padding-right: 40px;
}

@keyframes marqueeAnimation {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
} 

/* break points */
@media (min-width: 1920px) {
  .marquee {
    padding-top: 29px;
    padding-bottom: 29px;
  }

  .marquee-content img {
    padding-right: 48px;
    width: 37px;
    height: 48px;
  }

  .marquee-name {
    font-size: 24px;

    padding-right: 48px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .marquee {
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .marquee-content img {
    padding-right: 36px;
    width: 28px;
    height: 36px;
  }

  .marquee-name {
    font-size: 18px;

    padding-right: 36px;
  }
}

@media (max-width: 1439px) {
  .marquee {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .marquee-content img {
    padding-right: 32px;
    width: 25px;
    height: 32px;
  }

  .marquee-name {
    font-size: 16px;

    padding-right: 32px;
  }
}

@media (max-width: 1023px) {
  .marquee {
    padding-top: 15.5px;
    padding-bottom: 15.5px;
  }

  .marquee-content img {
    padding-right: 25.5px;
    width: 20px;
    height: 26px;
  }

  .marquee-name {
    font-size: 13px;
    padding-right: 25.5px;
  }
}

/* =========================================================
   BUBBLING SECTION
   ========================================================= */
.bubbling {
  background: #201E1E;
  border-bottom: 1px solid #424242;
}

.bubbling-container {
  display: flex;
  margin: auto;
  max-width: 1920px;
}

.bubbling-article-box {
  padding-top: 75px;
  margin-left: 115px;
  padding-right: 115px;

  display: block;
  align-items: center;
}

.bubbling-main-pic {
  position: relative;
  box-sizing: border-box;
  max-width: 400px;
  height: 477px;
  z-index: 0;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.bubbling-main-pic.loading {
  opacity: 0.3;
  transform: scale(0.98);
}

.bubbling-main-pic.loaded {
  opacity: 1;
  transform: scale(1);
}

/* Smooth transitions for text content */
.bubbling-title,
.bubbling-author,
.bubbling-author-data {
  transition: opacity 0.3s ease-in-out;
}

.bubbling-main-pic::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.07%, rgba(0, 0, 0, 0.34) 69.01%);
  z-index: -3;
}

.bubbling-title {
  max-width: 383px;
  color: #FFF;
  text-align: center;

  font-size: 29px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%; 

  margin-top: 20px;
  padding-bottom: 30px;
}


.bubbling-author-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bubbling-author-box img {
  border-radius: 50%;
  max-width: 63px;
  width: 100%;
  max-height: 63px;
  height: 100%;
}

.bubbling-author {
  color: #FFF;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.bubbling-author:hover {
  color: rgba(255, 255, 255, 0.6);
}

.bubbling-author-data {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;

  padding-top: 5px;
  padding-bottom: 15px;
  margin: 0;
}

/* Bubbling articles */
.bubbling-sidebar {
  border-left: 1px solid #424242;
  width: 100%;
}

.bubbling-article {
  display: flex;
  justify-content: space-between;
  padding: 31px 95px 30px 35px;
  border-bottom: 1px solid #424242;
}

.bubbling-article.bubbling-active {
  background: var(--red, #9E2929);
  transition: background 0.3s ease-in-out;
}

.bubbling-article:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}

.bubbling-article.bubbling-active:hover {
  background-color:   #CE2B2B;


}
.bubbling-article:focus {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.4s;
}

.bubbling-article-text {
  color: #FFF;

  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  opacity: 0.5;
  max-width: 346px;

}

.bubbling-author-container {
  display: flex;
  align-items: center;
  width: 215px;
}

.bubbling-author-container img {
  margin-right: 15px;
}

.bubbling-author-img {
  border-radius: 50%;
  max-width: 63px;
  width: 100%;
  max-height: 63px;
  height: 100%;
}

.bubbling-name-author {
  color: #FFF;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  opacity: 0.5;
}

.bubbling-publication-date {
  color: #FFF;

  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  opacity: 0.5;

  padding-top: 5px;
  margin: 0;
}

/* change color bubling article */
.bubbling-article-text,
.bubbling-name-author,
.bubbling-publication-date {
  transition: opacity 0.3s ease-in-out; 
}

.bubbling-article:hover .bubbling-article-text,
.bubbling-article:hover .bubbling-name-author,
.bubbling-article:hover .bubbling-publication-date,
.bubbling-article.bubbling-active .bubbling-article-text,
.bubbling-article.bubbling-active .bubbling-name-author,
.bubbling-article.bubbling-active .bubbling-publication-date {
  opacity: 1;
}

/* =========================================================
   BUBBLING ALL CONNECT
   ========================================================= */

.bubbling-all-connect {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 29px 0 29px 0;

  color: #FFF;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.bubbling-all-connect:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.5s;
}

/* break points */
@media (min-width: 1920px) {
  .bubbling-article-box {
    padding-top: 90px;
    margin-left: 137px;
    padding-right: 137px;
  }

  .bubbling-main-pic {
    max-width: 477px;

    height: 569px;
  }

  .bubbling-title {
    max-width: 457px;
    font-size: 35px;
    padding-bottom: 35px;
  }
    
  .bubbling-author-container {
    width: 235px;
}


  .bubbling-author {
    font-size: 21px;
  }

  .bubbling-author-data {
    font-size: 17px;
    padding-bottom: 18px;
  }

  .bubbling-article {
    padding: 37px 125px 35px 29px;
  }

  .bubbling-article-text {
    font-size: 35px;
    max-width: 413px;
  }

  .bubbling-author-container img {
    margin-right: 18px;
  }

  .bubbling-author-img {
    width: 75px;
    height: 75px;
  }

  .bubbling-name-author {
    font-size: 21px;
  }

  .bubbling-publication-date {
    font-size: 16px;
  }

  .bubbling-all-connect {
    padding: 35px 0 35px 0;

    font-size: 24px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .bubbling-article-box {
    padding-top: 67px;
    margin-left: 103px;
    padding-right: 103px;
  }

  .bubbling-main-pic {
    max-width: 358px;

    height: 427px;
  }

  .bubbling-title {
    max-width: 343px;
    font-size: 26px;
    padding-bottom: 26px;
  }

  .bubbling-author {
    font-size: 16px;
  }

  .bubbling-author-data {
    font-size: 14px;
    padding-bottom: 12px;
  }

  .bubbling-article {
    padding: 28px 104px 27px 20px;
  }

  .bubbling-article-text {
    font-size: 26px;
    max-width: 309px;
  }

  .bubbling-author-container img {
    margin-right: 13px;
  }

  .bubbling-author-img {
    width: 56px;
    height: 56px;
  }

  .bubbling-name-author {
    font-size: 16px;
  }

  .bubbling-publication-date {
    font-size: 14px;
  }

  .bubbling-all-connect {
    padding: 26px 0 26px 0;

    font-size: 18px;
  }
}
@media (max-width: 1439px) {
  .bubbling-article-box {
    padding-top: 60px;
    margin-left: 92px;
    padding-right: 90px;
  }

  .bubbling-main-pic {
    max-width: 318px;

    height: 380px;
  }

  .bubbling-title {
    max-width: 305px;
    font-size: 23px;
    padding-bottom: 22px;
  }

  .bubbling-author {
    font-size: 14px;
  }

  .bubbling-author-data {
    font-size: 12px;
    padding-bottom: 12px;
  }

  .bubbling-article {
    padding: 28px 68px 27px 20px;
  }

  .bubbling-article-text {
    font-size: 23px;
    max-width: 309px;
  }

  .bubbling-author-container img {
    margin-right: 13px;
  }

  .bubbling-name-author {
    font-size: 16px;
  }

  .bubbling-publication-date {
    font-size: 14px;
  }

  .bubbling-all-connect {
    padding: 23px 0 23px 0;

    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .bubbling-article-box {
    margin-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 1023px) {
  .bubbling-article-box {
    display: none;
  }

  .bubbling-main-pic {
    max-width: 254px;
    height: 304px;
    object-fit: cover;
  }
    
   .bubbling-sidebar {
     border-left: none;
    }

  .bubbling-title {
    max-width: 244px;
    font-size: 16px; /* Reduced from 18.489px for mobile */
    padding-bottom: 19px;
  }

  .bubbling-author {
    font-size: 11.378px;
  }

  .bubbling-author-data {
    font-size: 9.956px;
    padding-bottom: 9.24px;
  }

  .bubbling-article {
    padding: 22px 53px 27px 16px;
  }

  .bubbling-article-text {
    font-size: 28px;
    max-width: 246px;
  }

  .bubbling-author-container img {
    margin-right: 10px;
  }

  .bubbling-author-img {
    width: 49px;
    height: 50px;
  }

  .bubbling-name-author {
    font-size: 14px;
  }

  .bubbling-publication-date {
    font-size: 12px;
  }

  .bubbling-all-connect {
    padding: 18px 0 19px 0;

    font-size: 13px;
  }
}

@media (max-width: 649px) {
  .bubbling-article {
    flex-direction: column;
    gap: 10px;
  }

  .bubbling-article-text{
    font-size: clamp(18px, 7vw, 28px);
  }
}

/* =========================================================
   TOP-10 SECTION
   ========================================================= */
.top-10 {
  background: #1A1818;

}

.top-10-wrap {
  max-width: 1920px;
  padding: 170px 0;
  margin: auto;
}

/* Desktop: keep title on one line */
.top-10-title {
  display: block;
}

.top-10-line1::after {
  content: ' ';
}

.top-10-line2 {
  display: inline;
}

.top-10-container {
  display: flex;
  gap: 50px;
  padding: 0 50px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-right: 20px;
}

.top-10-item {
  position: relative;
}

.top-10-item img {
  border-radius: 50%;
  max-width: 100%;
  border: 6px solid #C52A2A;
  width: 121px;
  height: 121px;
  object-fit: cover;
}

.top-10-number {
  color: #FFF;
  font-size: 35px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  position: absolute;
  top: 70%;
  right: -30px;

}

.top-10-number-10 {
  right: -40px;
}

.top-10-text {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  color: #000;
  font-size: 17px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  z-index: 100;
  max-width: 160px;
  width: max-content;
  padding: 7px 23px;
  border-radius: 50px;
}

.top-10-item:hover .top-10-text {
  display: flex;
  transition: .5s;
}

.top-10-text-10 {
  left: 10px;
}
/* =========================================================
   TOP-10 RESPONSIVE
   ========================================================= */
@media (max-width: 1900px) {
  .top-10-item img {
    width: 100px;
    height: 100px;
    right: -20px;
  }
    
  .top-10-number {
    right: -20px;
  }

  .top-10-number-10 {
    right: -30px;
  }
}

@media (max-width: 1439px) {
   .top-10-number {
    font-size: 24px;
  }
   .top-10-text {
    font-size: 16px;
    padding: 7px 16px;
  }
    
   .top-10-item img {
    width: 70px;
    height: 70px;
    max-width: 100%;
  }
}

@media (max-width: 1280px) {
   .top-10-item img {
    height: 60px;
  }
}

@media (max-width: 1024px) {
  .top-10-container {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }
  
  .top-10-container::-webkit-scrollbar {
    display: none; 
  }
    
   .top-10-item:hover .top-10-text {
    display: none;
    transition: 0.5s;
  }

  .top-10-item img {
    max-width: 70px;
    height: 70px;
  }

  /* Social dropdown responsive for tablet */
  .dropdown-menu.active {
    width: 125px;
  }
  
  .dropdown-social-links a {
    font-size: 12px;
    gap: 10px;
  }
  
  .dropdown-social-links a i {
    width: 14px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .top-10-container {
    margin-right: 10px;
  }
    
  .top-10-title {
    max-width: 269px;
    display: flex;
    flex-direction: column;
    line-height: 1.1;
  }
  
  .top-10-line1,
  .top-10-line2 {
    display: block;
  }
  
  .top-10-item img {
    max-width: 60px;
    height: 60px;
  }

  .top-10-number {
    font-size: 20px;
  }
  
@media (max-width: 638px) {
  .top-10-item:hover .top-10-text {
    display: initial; 
    transition: none; 
  }
    
  .top-10-item {
    position: relative;
    align-items: center;
    display: flex;
    flex-direction: column;
}

  .top-10-item img {
    width: 200px;
    max-width: 200px;
    height: 200px;
    border: 13px solid #C52A2A
  }

  .top-10-number {
    font-size: 35px;
  }

  .top-10-text {
    font-size: 22px;
    margin-top: 38px;
    max-width: 100%;
    display: flex;
    position: static;
  }

  .top-10-container {
    padding-left: 48px;
    gap: 26px;
  }

  .top-10-number {
    top: 60%;
    left: 94%;
  }
}
}

/* =========================================================
   MUSIC SECTION
   ========================================================= */
/* MUSIC */
.music {
  background: #1A1818;
  padding: 180px 0 180px 0;
  background-image: url();
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: background 0.5s ease-in-out;
}

.music.b-drill {
  background-image: url(img_bg/drill.jpg);
  transition: 0.5s;
}

.music.b-lyrical {
  background-image: url(img_bg/lyrical.jpg);
  transition: 0.5s;
}

.music.b-street {
  background-image: url(img_bg/street.jpg);
  transition: 0.5s;
}

.music.b-next-generation {
  background-image: url(img_bg/next.jpg);
  transition: 0.5s;
}

.music-title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-bottom: 80px;
  text-transform: uppercase;

  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; 
}

.music-buttons-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.music-btn {
  border-radius: 70px;
  background: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #1A1818;

  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  padding-right: 40px;
  padding-left: 10px;
}

.music-btn:hover, .music-btn:hover svg path {
  stroke: #fff;
  transition: 0.5s;
  background: #9E2929;
}

.music-btn:hover p {
  color: #fff;
  transition: 0.5s;
}

.music-btn:not(:first-child) {
  margin-left: 20px
}

.music-btn img {
  border-radius: 50%;
}

.music-btn-text {
  padding-left: 19px;
  padding-right: 26px;
}
/* =========================================================
   DRAG SECTION
   ========================================================= */
/* break points */
@media (min-width: 1920px) {
  .music {
    padding: 216px 0 216px 0;
  }

  .music-title {
    padding-bottom: 95px;
    font-size: 60px;
  }

  .music-btn {
    padding-right: 47px;
    padding-left: 12px;
    font-size: 35px;
    cursor: pointer;
  }

  .music-btn img {
    width: 95px;
    height: 95px;
  }

  .music-btn svg {
    width: 13px;
    height: 13px; 
  }

  .music-btn:not(:first-child) {
    margin-left: 24px
  }

  .music-btn-text {
    padding-left: 22px;
    padding-right: 28px;
  }
}

@media (min-width: 1600px) and (max-width: 1919px) {
   .music-btn {
    padding-top: 5px;
    padding-bottom: 5px;
   }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .music {
    padding: 162px 0 162px 0;
  }

  .music-title {
    padding-bottom: 71px;
    font-size: 45px;
  }

  .music-btn {
    padding-right: 35px;
    padding-left: 9px;
    font-size: 26px;
  }

  .music-btn img {
    width: 72px;
    height: 72px;
  }

  .music-btn svg {
    width: 10px;
    height: 10px;
  }

  .music-btn:not(:first-child) {
    margin-left: 22px
  }

  .music-btn-text {
    padding-left: 17px;
    padding-right: 22px;
  }
}
@media (max-width: 1439px) {
  .music {
    padding: 144px 0 144px 0;
  }

  .music-title {
    padding-bottom: 71px;
    font-size: 40px;
  }

  .music-btn {
    padding-right: 31px;
    padding-left: 8px;
    font-size: 23px;
  }

  .music-btn img {
    width: 64px;
    height: 64px;
  }

  .music-btn svg {
    width: 9px;
    height: 9px;
  }

  .music-btn:not(:first-child) {
    margin-left: 20px
  }

  .music-btn-text {
    padding-left: 15px;
    padding-right: 20px;
  }
}

@media (max-width: 1023px) {
  .music {
    padding: 90px 0 115px 0;
  }

  .music-title {
    padding-bottom: 52px;
    font-size: 26px; /* Reduced from 32px for mobile */
  }

  .music-buttons-box {
    flex-direction: column;
    gap: 20px;
  }

  .music-btn {
    padding-right: 25px;
    padding-left: 6px;
    font-size: 18px;
    max-width: 230px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  .music-btn img {
    width: 51px;
    height: 51px;
  }

  .music-btn svg {
    width: 7px;
    height: 7px;
  }

  .music-btn:not(:first-child) {
    margin-left: 0;
  }

  .music-btn-text {
    padding-left: 12px;
    padding-right: 17px;
  }
}
/* =========================================================
   SECOND MARQUEE
   ========================================================= */
.marquee-second {
  opacity: 1;
}

/* DRAG section */
.drag {
  background: #201E1E;
  position: relative;
  overflow: hidden;
}

.drag-container {
  display: flex;
  overflow-x: hidden;
  cursor: url(img_bg/drag.svg), auto;
}

.drag-box {
  display: flex;
  height: 432px;
  flex-shrink: 0;

  border-right: 1px solid #424242;
  box-sizing: border-box;
  cursor: url(img_bg/drag.svg), auto;
  overflow: hidden;
}

.drag-box-img {
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  overflow: hidden;
  object-fit: cover;
  max-width: 315px;
  height: 100%;
}

.drag-box:hover .drag-box-img{
   -webkit-transform: 0.5s;
   -ms-transform: scale(1.1);
    transform: scale(1.1);
    overflow: hidden;
}

.drag-box:active {
  cursor: url(img_bg/drag.svg), auto;
}

.drag-box-img-container {
  position: relative;
}

.drag-status {
  position: absolute;
  top: 25px;
  left: 17px;
  background-color: #fff;
  padding: 10px 15px;
  border-radius: 48px;
  border: none;

  color: #1A1818;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

.drag-inside-box {
  padding: 60px 50px 0 35px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drag-title {
  color: #FFF;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 

  max-width: 229px;
  cursor: pointer;
}

.drag-title:hover {
  color: rgba(255, 255, 255, 0.6);
}

.drag-text {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%; 

  text-overflow: ellipsis;
  overflow: hidden;
  height: 110px;
  max-width: 238px;
}

.drag-author-box {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}

.drag-author-box img {
  margin-right: 15px;
  border-radius: 50%;
  max-width: 63px;
  width: 100%;
  max-height: 63px;
  height: 100%;
}

.drag-author {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; 

  padding-bottom: 5px;
  cursor: pointer;
}

.drag-author:hover {
  color: rgba(255, 255, 255, 0.6);
}

.drag-author-date {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; 
  
  margin: 0;
}

.drag-container::-webkit-scrollbar-thumb {
  background-color: inherit;
}

.drag-mobile-wrap {
  display: none;
  border-top: 1px solid #424242;
  width: 100%;
  padding: 16px 0;
  justify-content: center;
  margin: auto;
}

/* Reusable Pagination Dots Component */
.pagination-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
}

.pagination-dot {
  width: 5px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background-color: #fff;
  width: 8px;
  height: 8px;
}

/* YSL Section Dots (specific styling) */
.slider-dot-drag {
  width: 5px;
  height: 5px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot-drag.active {
  background-color: #fff; 
}

/* Hero Section Dots (consistent with YSL styling) */
.hero-mobile-wrap {
  display: none;
  border-top: 1px solid #424242;
  width: 100%;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
}

.slider-dot-hero {
  width: 5px;
  height: 5px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot-hero.active {
  background-color: #fff; 
}

/* Kazi Approved Section Dots (consistent with YSL styling) */
.approved-mobile-wrap {
  display: none;
  border-top: 1px solid #424242;
  width: 100%;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
}

.slider-dot-approved {
  width: 5px;
  height: 5px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot-approved.active {
  background-color: #fff; 
}

/* Digital Covers Special Section Dots (consistent with YSL styling) */
.digital-special-mobile-wrap {
  display: none;
  border-top: 1px solid #424242;
  width: 100%;
  padding: 16px 0;
  justify-content: center;
  align-items: center;
}

.slider-dot-digital-special {
  width: 5px;
  height: 5px;
  margin: 0 6px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dot-digital-special.active {
  background-color: #fff; 
}
/* =========================================================
   DRAG VIEW ALL
   ========================================================= */

.drag-view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;

  padding: 18px 0 20px 0;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #424242;

  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.drag-view-all:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.5s;
}

/* break points */
@media (min-width: 1920px) {
  .drag-box {
    height: 516px;
  }

  .drag-box-img {
    height: 516px;
    max-width: 375px;
    width: 100%;
  }

  .drag-status {
    font-size: 17px;
    padding: 12px 18px;
  }

  .drag-inside-box {
    padding: 72px 60px 0 42px;
  }

  .drag-title {
    max-width: 273px;
    font-size: 35px;
  }

  .drag-text{
    max-width: 284px;
    font-size: 16px;
    height: 127px;
  }

  .drag-author-box {
    margin-bottom: 72px;
  }

  .drag-author-box img {
    margin-right: 15px;
    width: 75px;
    height: 75px;
  }

  .drag-author {
    font-size: 21px;
    padding-bottom: 6px;
  }

  .drag-author-date{
    font-size: 16px;
  }

  .drag-view-all {
    padding: 22px 0 24px 0;
    font-size: 20px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .drag-box {
    height: 387px;
  }

  .drag-box-img {
    height: 387px;
    max-width: 280px;
  }

  .drag-status {
    font-size: 14px;
    padding: 9px 14px;
  }

  .drag-inside-box {
    padding: 55px 58px 0 20px;
  }

  .drag-title {
    max-width: 205px;
    font-size: 26px;
  }

  .drag-text{
    max-width: 213px;
    font-size: 14px;
    height: 94px;
  }

  .drag-author-box {
    margin-bottom: 54px;
  }

  .drag-author-box img {
    margin-right: 13px;
    width: 56px;
    height: 56px;
  }

  .drag-author {
    font-size: 16px;
    padding-bottom: 4px;
  }

  .drag-author-date{
    font-size: 13px;
  }

  .drag-view-all {
    padding: 18px 0 20px 0;
    font-size: 15px;
  }
}
@media (max-width: 1439px) {
  .drag-box {
    height: 344px;
  }

  .drag-box-img {
    height: 344px;
    max-width: 249px;
  }

  .drag-status {
    font-size: 14px;
    padding: 8px 13px;
  }

  .drag-inside-box {
    padding: 48px 48px 0 20px;
  }

  .drag-title {
    max-width: 182px;
    font-size: 23px;
  }

  .drag-text{
    max-width: 189px;
    font-size: 14px;
    height: 75px;
  }

  .drag-author-box {
    margin-bottom: 47px;
  }

  .drag-author-box img {
    margin-right: 13px;
    width: 56px;
    height: 56px;
  }

  .drag-author {
    font-size: 16px;
    padding-bottom: 4px;
  }

  .drag-author-date{
    font-size: 14px;
  }

  .drag-view-all {
    padding: 16px 0 18px 0;
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .drag-box {
    height: 275px;
  }

  .drag-box-img {
    height: 275px;
    max-width: 199px;
  }

  .drag-status {
    font-size: 11.2px;
    padding: 6.4px 10px;
  }

  .drag-inside-box {
    padding: 38px 38px 0 16px;
  }

  .drag-title {
    max-width: 146px;
    font-size: 18px;
  }

  .drag-text{
    max-width: 151px;
    font-size: 13px;
    height: 70px;
  }

  .drag-author-box {
    margin-bottom: 35.5px;
  }

  .drag-author-box img {
    margin-right: 10px;
    width: 49px;
    height: 50px;
  }

  .drag-author {
    font-size: 14px;
    padding-bottom: 4px;
  }

  .drag-author-date{
    font-size: 12px;
  }

  .drag-view-all {
    padding: 14px 0 15px 0;
    font-size: 12px;
  }
}

@media (max-width: 767px) {
  .drag-box {
    flex-direction: column;
    height: 100%;
  }

  .drag-box-img {
    transition: none;
    transform: none;
    -webkit-transform: none;
    overflow: visible;
  }

  .drag-box:hover .drag-box-img {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    overflow: visible;
  }
    
  .drag-inside-box {
    padding: 17px 22px 24px 10px;
    overflow: hidden;
  }
    
  .drag-title {
    min-height: 43px; 
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }
    
  .drag-text {
    height: 67px;
  }
    
  .drag-author-box {
    margin-bottom: 0;
    margin-top: 40px;
  }

  .drag-author-box img {
    width: 40px;
    height: 40px;
  }

  .drag-mobile-wrap {
    display: flex;
  }
  
  .hero-mobile-wrap {
    display: flex;
  }
  
  .approved-mobile-wrap {
    display: flex;
  }
  
  .digital-special-mobile-wrap {
    display: flex;
  }
}

/* =========================================================
   REUSABLE VIEW ALL BUTTON
   ========================================================= */
.view-all-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background: #201E1E;
  color: #FFF;
  text-decoration: none;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  text-transform: uppercase;
  border-top: 1px solid #424242;
  transition: background 0.5s ease;
}

.view-all-button:hover {
  background: #9E2929;
  color: #FFF;
  text-decoration: none;
}

/* Responsive sizing for view-all-button */
@media (min-width: 1920px) {
  .view-all-button {
    padding: 40px 0 40px 0;
    font-size: 29px;
  }
}

@media (min-width: 1440px) and (max-width: 1599px) {
  .view-all-button {
    padding: 35px 0 35px 0;
    font-size: 24px;
  }
}

@media (min-width: 1024px) and (max-width: 1439px) {
  .view-all-button {
    padding: 26px 0 26px 0;
    font-size: 18px;
  }
}

@media (max-width: 1023px) {
  .view-all-button {
    padding: 23px 0 23px 0;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .view-all-button {
    padding: 18px 0 19px 0;
    font-size: 13px;
  }
}

/* =========================================================
   HERO ASIDE VIEW ALL BUTTON
   ========================================================= */
.hero-aside-view-all {
  margin-top: 0;
  border-top: 1px solid #424242;
  border-radius: 0;
  font-size: 17px;
  padding: 20px 0;
  font-weight: 500;
}

.hero-aside-view-all:hover {
  background: #9E2929;
}

/* =========================================================
   SUBMIT SECTION
   ========================================================= */
.submit {
  background: #201E1E;
}

.submit-wrapper {
  display: flex;
  border-top: 1px solid #424242;
}

/* marquee submit */
.submit-marquee-container {
  background-color: #201E1E;
  display: flex;
  align-items: center;
  overflow: hidden;
  max-width: 145px;
  max-height: 1068px;

  border-right: 1px solid #424242;
}

.submit-marquee-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;

  gap: 120px;
  animation: marquee 50s linear infinite;
}

.submit-marquee-text {
  color: #FFF;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-transform: uppercase;
  opacity: 0.2;
  transform: rotate(90deg);
}

@keyframes marquee {
  0% {
    transform: translateY(-30%);
  }
  100% {
    transform: translateY(100%);
  }
}
/* end marquee submit */

.submit-main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.submit-main-wrap {
  display: flex;
  flex-wrap: wrap;
}

.submit-title-img {
  display: flex;
  justify-content: space-between;
  gap: 5px;
}


.submit-title {
  color: #FFF;
  text-align: right;

  font-size: 116px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%; 
  text-transform: uppercase;
}

.sumbit-text {
  max-width: 304px;

  color: #FFF;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;

  padding-top: 10px;
  padding-left: 36px;
  margin: 0;
} 

.submit-wrap-img {
  position: relative;
  margin-top: 22px;
  max-width: 100%;
}

.submit-wrap-img img {
  max-width: 1057px;
  width: 100%;
  max-height: 480px;
  height: 100%;
}


.submit-button {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);

  border-radius: 70px;
  background: #FFF;
  border: none;

  padding: 10px 40px 10px 10px;
}

.submit-button:hover {
  background: #9E2929;
  transition: 0.5s;
}

.submit-button:hover p {
  color: #fff;
  transition: 0.5s;
}

.submit-button:hover svg path {
  stroke: #fff;
  transition: 0.5s;
}

.submit-button img {
  border-radius: 50%;
  object-fit: cover;
}

.submit-button-text {
  color: #1A1818;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%; 
  
  padding: 0 20px;
}

/* break points */
@media (min-width: 1920px) {
  .submit-marquee-container {
    max-width: 171px;
    max-height: 1271px;
  }

  .submit-marquee-box {
    gap: 128px;
  }

  .submit-marquee-text {
    font-size: 86px;
  }

  .submit-title-img img {
    width: 128px;
    height: 129px;
  }

  .submit-title {
    font-size: 138px;
  }

  .sumbit-text {
    max-width: 363px;
    font-size: 48px;
  }

  .submit-wrap-img {
    margin-top: 27px;
  }

  .submit-wrap-img img{
    width: 1241px;
    max-width: 100%;
    height: 572px;
    max-height: 100%;
  }

  .submit-img-main{
    width: 1265px;
  }

  .submit-button {
    bottom: 42px;
    padding: 0 47px 0 12px;
  }

  .submit-button img {
    width: 95px;
    height: 95px;
  }

  .submit-button svg {
    width: 13px;
    height: 13px;
  }

  .submit-button-text {
    font-size: 35px;
    padding: 0 23px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .submit-marquee-container {
    max-width: 128px;
    max-height: 953px;
  }
    
  .submit-main-wrap {
    width: 100%;
    justify-content: space-between;
  }

  .submit-marquee-box {
    gap: 111px;
  }

  .submit-marquee-text {
    font-size: 64px;
  }

  .submit-title-img img {
    width: 96px;
    height: 97px;
  }

  .submit-title {
    font-size: 104px;
  }

  .sumbit-text {
    max-width: 272px;
    font-size: 37px;
  }

  .submit-wrap-img {
    margin-top: 19px;
  }

  .submit-img-main{
    width: 957px;
  }

  .submit-button {
    bottom: 32px;
    padding: 0 35px 0 9px;
  }

  .submit-button img {
    width: 72px;
    height: 72px;
  }

  .submit-button svg {
    width: 10px;
    height: 10px;
  }

  .submit-button-text {
    font-size: 26px;
    padding: 0 18px;
  }
}
@media (max-width: 1439px) {
  .submit-marquee-container {
    max-width: 114px;
    max-height: 847px;
  }

  .submit-marquee-box {
    gap: 89px;
  }

  .submit-marquee-text {
    font-size: 57px;
  }

  .submit-title-img img {
    width: 96px;
	height: 97px;
  }

  .submit-title {
    font-size: 104px;
  }

  .sumbit-text {
    max-width: 242px;
    font-size: 30px;
  }

  .submit-wrap-img {
    margin-top: 18px;
  }

  .submit-wrap-img img{
    max-width: 965px;
    width: 100%;
    max-height: 429px;
    height: 100%;
  }

  .submit-img-main{
    width: 851px;
  }

  .submit-button {
    bottom: 29px;
    padding: 0 31px 0 8px;
  }

  .submit-button img {
    width: 64px;
    height: 64px;
  }

  .submit-button svg {
    width: 9px;
    height: 9px;
  }

  .submit-button-text {
    font-size: 23px;
    padding: 0 16px;
  }
}

@media (max-width: 1023px) {
  .submit {
    padding: 50px 0 80px 0;
  }

  .submit-marquee-container {
    display: none;
  }

  .submit-main-container {
    margin-top: 60px ;
    margin-bottom: 10px;
  }

  .submit-title-img img {
    width: 68px;
    height: 69px;
  }

  .submit-title {
    font-size: 67px;
  }

  .sumbit-text {
    max-width: 239px;
    font-size: 30px;
  }

  .submit-wrap-img {
    margin-top: 14px;
    margin-bottom: 20px;
  }


  .submit-wrap-img img{
    max-width: 731px;
    width: 100%;
    max-height: 306px;
    height: 100%;
  }

  .submit-img-main{
    max-width: 725px;
    width: 100%;
  }

  .submit-button {
    bottom: 24px;
    padding: 0 24px 0 7px;
  }

  .submit-button img {
    width: 51px;
    height: 51px;
  }

  .submit-button svg {
    width: 7px;
    height: 7px;
  }

  .submit-button-text {
    font-size: 18px;
    padding: 0 13px;
  }
}


@media (max-width: 767px) {
  .submit {
    padding: 50px 0 100px 0;
  }
  
  .submit-title {
    font-size: 58px;
   }
}

@media (max-width: 649px) {
  .submit-main-container {
    margin-top: 20px ;
 }

  .submit-main-wrap {
    flex-direction: column;
 }

  .submit-title-wrap {
    margin: auto;
 }
    
  .submit-title-img img {
    width: 52px;
    height: 52px;
    margin: auto;
  }
    
  .submit-title {
   font-size: 58px;
  }
    
  .sumbit-text {
   max-width: 360px;
   font-size: 18px;
   padding: 15px 0 30px 18px;
 }
}

@media (max-width: 470px) {
  .sumbit-text {
    max-width: 350px;
 }
}

@media (max-width: 370px) {
  .submit-title {
   font-size: 49px;
  }
}

/* =========================================================
   GALLERY CARDS
   ========================================================= */
.approved-cover-special {
 padding-bottom: 0;
}

.gallery-cards {
 background:  #201E1E;
 overflow: hidden;
}

.swiper-approved {
  max-width: 650px; /* Much smaller for better proportion */
  height: 520px; /* Scaled down proportionally */
  display: flex;
  justify-content: center;
  margin: auto;
}

.swiper-slide-approved {
  position: relative;
  display: flex;
  font-size: 22px;
  font-weight: bold;
  color: #fff;

  background-color: #000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  cursor: url(img_bg/drag.svg), auto;
}

.swiper-slide-approved::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.07%, rgba(0, 0, 0, 0.34) 69.01%);
  z-index: -3;
}

.card-slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.card-button {
  border: none;
  border-radius: 48px;
  background: #FFF;

  color: #1A1818;
  font-family: 'Inter', sans-serif;
  font-size: 11px; /* Smaller font */
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  padding: 8px 12px; /* Smaller padding */
  max-width: 80px; /* Smaller width */
  margin: 25px auto 0 auto; /* Center horizontally with less top margin */
  display: flex;
  justify-content: center;
  align-items: center;
}

.special-approved-digital img {
  width: 85%;
}

.card-title {
  color: #FFF;
  font-size: 32px; /* Much smaller font */
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  max-width: 450px; /* Smaller max-width */

  padding-bottom: 15px;
  margin: 0 auto; /* Center horizontally */
  text-align: center; /* Center text */
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card-title:hover {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.5s;
}

.card-text {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;

  max-width: 473px;
  margin-left: 33px;
}

.card-author-box {
  display: flex;
  align-items: center;
  margin: 30px 0 35px 33px;
}

.card-author-box img {
  margin-right: 15px;
  align-items: center;
  border-radius: 50%;
  max-width: 63px;
  width: 100%;
  max-height: 63px;
  height: 100%;
}

.card-author-name {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin: 0;
  padding-bottom: 5px;
}

.card-author-name:hover {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.5s;
}

.card-date-post {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;

  padding: 0;
  margin: 0;
}

/* dots swiper */
.swiper-pagination {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0;
  margin: 20px auto 0 auto;
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  opacity: 1 !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.swiper-pagination-bullet-active {
  background-color: #fff !important;
  width: 10px;
  height: 10px;
}


.gallery-view-button {
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #424242;
  border-bottom: 1px solid #424242;

  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 100px;

  color: #FFF;

  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.gallery-view-button:hover {
  background: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.5s;
}

/* break points */
@media (min-width: 1920px) {
  .swiper-approved {
    width: 1169px;
    height: 891px;
  }

  .card-button {
    font-size: 17px;
    max-width: 113px;
  }

  .card-title {
    font-size: 60px;
    max-width: 745px;
    margin-left: 35px;
  }

  .card-text {
    font-size: 16px;
    max-width: 564px;
    margin-left: 35px;
  }

  .card-author-box {
   margin: 60px 0 38px 35px;
  }

  .card-author-box img {
    margin-right: 18px;
    width: 75px;
    height: 75px;
  }

  .card-author-name {
    font-size: 21px;
    padding-bottom: 6px;
  }

  .card-date-post {
    font-size: 16px;
  }

  .gallery-view-button {
    padding-top: 33px;
    padding-bottom: 35px;
    font-size: 24px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .swiper-approved {
    width: 876px;
    height: 668px;
  }

  .card-button {
    font-size: 13px;
    max-width: 85px;
  }

  .card-title {
    font-size: 45px;
    max-width: 559px;
    margin-left: 20px;
  }

  .card-text {
    font-size: 14px;
    max-width: 423px;
    margin-left: 20px;
  }

  .card-author-box {
   margin: 26px 0 20px 20px;
  }

  .card-author-box img {
    margin-right: 13px;
    width: 56px;
    height: 56px;
  }

  .card-author-name {
    font-size: 16px;
    padding-bottom: 4px;
  }

  .card-date-post {
    font-size: 13px;
  }

  .gallery-view-button {
    padding-top: 24px;
    padding-bottom: 27px;
    font-size: 18px;
  }
}
@media (max-width: 1439px) {
  .swiper-approved {
    width: 779px;
    height: 594px;
  }

  .card-button {
    font-size: 11px;
    max-width: 76px;
  }

  .card-title {
    font-size: 40px;
    max-width: 497px;
    margin-left: 19px;
  }

  .card-text {
    font-size: 14px;
    max-width: 376px;
    margin-left: 19px;
  }

  .card-author-box {
   margin: 24px 0 20px 19px;
  }

  .card-author-box img {
    margin-right: 12px;
    width: 50px;
    height: 50px;
  }

  .card-author-name {
    font-size: 14px;
    padding-bottom: 4px;
  }

  .card-date-post {
    font-size: 11px;
  }

  .gallery-view-button {
    padding-top: 21px;
    padding-bottom: 24px;
    font-size: 16px;
  }
}

@media (max-width: 1023px) {
  .swiper-approved {
    width: 623px;
    height: 476px;
  }

  .card-button {
    font-size: 9px;
  }

  .card-title {
    font-size: 32px;
    max-width: 398px;
    margin-left: 15px;
  }

  .card-text {
    font-size: 13px;
    max-width: 321px;
    margin-left: 15px;
  }

  .card-author-box {
   margin: 30px 0 12px 15px;
  }

  .card-author-box img {
    margin-right: 10px;
    width: 49px;
    height: 50px;
  }

  .card-author-name {
    font-size: 14px;
    padding-bottom: 4px;
  }

  .card-date-post {
    font-size: 11px;
  }

  .gallery-view-button {
    padding-top: 17px;
    padding-bottom: 19px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .swiper-approved {
    max-width: 320px; /* Smaller for mobile */
    width: 100%;
    height: 350px; /* Reduced from 400px for mobile */
  }

  .card-button {
    font-size: 9px;
    padding: 6px 10px;
    max-width: 65px;
  }

  .card-title {
    font-size: 20px; /* Reduced from 22px for mobile */
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
    -webkit-line-clamp: 2; /* Keep 2 line limit */
  }

  .card-text {
    display: none;
  }

  .card-author-box {
   display: none;
  }
}

/* =========================================================
   WE ARE SECTION
   ========================================================= */
.we-are {
  background-color: #201E1E;
  background-image: url(img_bg/bg-we-are.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.we-are-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.we-are-title {
  display: flex;
  gap: 40px;
  padding-top: 71px;
  padding-bottom: 33px;
  line-height: 100%;
  align-items: center;
}

.we-are-img {
  max-width: 100%;
  height: 100%;
}

.we-are-svg {
  max-width: 1313px;;
  width: 100%;
  max-height: 150px;
  height: 100%;
}

.we-are-link {
  margin-top: 68px;
  padding-bottom: 42px;

  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
}

.we-are-link svg {
  padding-left: 10px;
}

.we-are-link:hover, .we-are-link:hover svg path {
  color: rgba(var(--red, 158, 41, 41), 0.7);
  transition: 0.5s;
  stroke:rgba(var(--red, 158, 41, 41), 0.7);
}

@media (min-width: 1920px) {
  .we-are-title {
    gap: 50px;
  }

  .we-are-svg {
    max-width: 100%;
    width: 1567px;
    max-height: 179px;
    height: 100%;
  }

  .we-are-img {
    max-width: 1561px;
    width: 100%;
    max-height: 100%;
    height: 529px;
  }

  .we-are-link {
    font-size: 24px;
  }

  .we-are-link svg {
    padding-left: 12px;
    width: 12px;
    height: 12px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .we-are-img {
    max-width: 89.44%;
    height: 397px;
  }

  .we-are-link {
    font-size: 18px;
  }

  .we-are-link svg {
    padding-left: 9px;
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 1439px) {
  .we-are-title {
    gap: 30px;
  }
  
  .we-are-svg {
    max-width: 1175px;
    width: 100%;
    max-height: 135px;
    height: 100%;
  }

  .we-are-img {
    max-width: 1171px;
    width: 100%;
    max-height: 397px;
    height: 100%;
  }

  .we-are-link {
    font-size: 16px;
  }

  .we-are-link svg {
    padding-left: 8px;
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1090px) {
  .we-are-title {
    gap: 10px;
  }

  .we-are-img {
    max-width: 833px;
    width: 100%;
    height: 282px;
  }

  .we-are-link {
    font-size: 13px;
  }

  .we-are-link svg {
    padding-left: 7px;
    width: 6px;
    height: 6px;
  }
}

@media (max-width: 767px) {
  .we-are-title {
    gap: 8px;
    padding-top: 88px;
  }

  .we-are-svg {
    max-width: 375px;
    width: 100%;
    max-height: 41px;
    height: 100%;
  }

  .we-are-img {
    max-width: 354px;
    width: 100%;
    height: 119px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #1A1818;
  padding-top: 124px;
  padding-bottom: 52px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-bottom: 135px;
}

.foooter-wrapper {
  display: flex;
  justify-content: space-between;
  margin: auto;
  padding: 0 35px;
  align-items: center;
  max-width: 1920px;
}

.footer-menu-list {
  display: flex;
}

.footer-menu-item:not(:first-child) {
  margin-left: 33px; 
}

.footer-menu-link {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; 
}

.footer-menu-link:hover {
  color: var(--red, #9E2929);
  transition: 0.5s;
}

.footer-social-list {
  display: flex;
  border-radius: 59.4px;
  border: 1px solid #424242;
  padding: 12px 20px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual icon hover effects */
.footer-social-item {
  transition: all 0.3s ease;
}

.footer-social-item:hover {
  transform: scale(1.1);
}

/* Footer social media hover effects - matching header style */
.footer-social-item:hover svg circle {
  fill: #eb2d2d;
}

.footer-social-item:hover svg rect {
  fill: #eb2d2d;
}

.footer-social-item:hover svg path {
  fill: #fff;
}

.footer-social-item:not(:first-child) {
  margin-left: 30px;
}

.footer-copyright {
  color: #FFF;

  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}

/* =========================================================
   SUB FOOTER
   ========================================================= */
.sub-footer {
  background: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  position: relative;
}

.sub-footer-content {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* Removed .sub-footer-left as it's no longer needed */

.sub-footer-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sub-footer-terms {
  text-align: right;
  margin-left: auto; /* Push to the right */
}

.sub-footer-terms:hover {
  color: rgba(255, 255, 255, 0.6);
}

.designer-name {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}

.designer-name:hover {
  color: rgba(255, 255, 255, 0.7);
}

.team-credits {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  text-align: left;
  margin: 8px 40px 0 40px;
  padding: 0;
}

.team-credits.show {
  display: block;
  max-height: 100px;
  opacity: 1;
}

.team-credits.fade-out {
  opacity: 0;
  transition: opacity 1s ease-out;
}

.team-credits-text {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  font-weight: 400;
  margin: 0;
  margin-top: 2px;
  padding: 0;
  letter-spacing: 0.5px;
  line-height: 1.6;
  white-space: nowrap;
  text-transform: uppercase;
}

.sub-footer-back-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  white-space: nowrap;
  text-transform: uppercase;
  cursor: pointer;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.sub-footer-back-link:hover {
  color: rgba(255, 255, 255, 0.7);
}

.sub-footer-back-link:hover {
  animation: jump 0.6s ease-in-out;
}

@keyframes jump {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-3px); }
}

/* Mobile responsive */
@media (max-width: 767px) {
  .sub-footer-content {
    padding: 0 20px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .sub-footer-text {
    font-size: 10px;
  }
  
  .sub-footer-back-link {
    font-size: 9px;
    position: static; /* Remove absolute positioning */
    transform: none !important; /* Remove transform */
    margin-left: auto; /* Push to right side */
  }
  
  /* Remove jump animation on mobile - only color change */
  .sub-footer-back-link:hover {
    animation: none !important;
    transform: none !important;
    color: rgba(255, 255, 255, 0.9); /* Brighter color on hover */
  }
  
  /* Hide TERMS and team credits on mobile */
  .sub-footer-terms,
  .team-credits {
    display: none !important;
  }
  
  /* Hide designer name click functionality on mobile */
  .designer-name {
    cursor: default;
    pointer-events: none;
  }
  
  /* Hide social media pill on mobile burger menu */
  .burger-social-wrap {
    display: none !important;
  }
}

@media (min-width: 1920px) {
  .footer {
    padding-top: 147px;
  }

  .footer-logo {
    width: 836px;
    height: 348px;  
    padding-bottom: 148px;
  }

  .foooter-wrapper {
    padding: 0 41px;
  }

  .footer-menu-item:not(:first-child) {
    margin-left: 39px; 
  }

  .footer-menu-link {
    font-size: 21px;
  }

  .footer-social-list {
    padding: 14px 24px;
  }

  .footer-social-item svg {
    width: 42px;
    height: 42px;
  }

  .footer-social-item:not(:first-child) {
    margin-left: 36px;
  }

  .footer-copyright  {
    font-size: 21px;
  }
}
@media (min-width: 1440px) and (max-width: 1599px) {
  .footer {
    padding-top: 111px;
  }

  .footer-logo {
    width: 627px;
    height: 261px; 
    padding-bottom: 90px;
  }

  .foooter-wrapper {
    padding: 0 31px;
  }

  .footer-menu-item:not(:first-child) {
    margin-left: 30px; 
  }

  .footer-menu-link {
    font-size: 16px;
  }

  .footer-social-list {
    padding: 11px 18px;
  }

  .footer-social-item svg {
    width: 31px;
    height: 31px;
  }

  .footer-social-item:not(:first-child) {
    margin-left: 27px;
  }

  .footer-copyright  {
    font-size: 16px;
  }
}
@media (max-width: 1439px) {
  .footer {
    padding-top: 99px;
  }

  .footer-logo {
    width: 557px;
    height: 196px; 
    padding-bottom: 80px;
  }

  .foooter-wrapper {
    padding: 0 28px;
  }

  .footer-menu-item:not(:first-child) {
    margin-left: 26px; 
  }

  .footer-menu-link {
    font-size: 14px;
  }

  .footer-social-list {
    padding: 10px 16px;
  }

  .footer-social-item svg {
    width: 28px;
    height: 28px;
  }

  .footer-social-item:not(:first-child) {
    margin-left: 24px;
  }

  .footer-copyright  {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .footer {
    padding-top: 79px;
  }

  .footer-logo {
    width: 446px;
    height: 186px; 
    padding-bottom: 76px;
  }

  .foooter-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-menu-item:not(:first-child) {
    margin-left: 21px; 
  }

  .footer-menu-link {
    font-size: 13px;
  }

  .footer-social-list {
    padding: 8px 13px;
  }

  .footer-social-item svg {
    width: 22px;
    height: 22px;
  }

  .footer-social-item:not(:first-child) {
    margin-left: 19px;
  }

  .footer-copyright  {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .footer {
    padding-top: 60px;
  }

  .footer-logo {
    max-width: 100%;
    height: 156px; 
    padding-bottom: 31px;
  }

  .foooter-wrapper {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-menu-item:not(:first-child) {
    margin-left: 21px; 
  }

  .footer-menu-link {
    font-size: 12px;
  }

  .footer-social-list {
    padding: 8px 13px;
  }

  .footer-social-item svg {
    width: 22px;
    height: 22px;
  }

  .footer-social-item:not(:first-child) {
    margin-left: 19px;
  }

  .footer-copyright  {
    font-size: 12px;
  }
}

/* =========================================================
   CUSTOM ARTICLE MAIN
   ========================================================= */
.full-main-article-bg {
  background: #201E1E;
}

.full-main-article {
  position: relative;
  background-image: url(); 
  background-size: cover;
  background-repeat: no-repeat; 
  background-position: center center; 
  background-color: #424242;
  box-sizing: border-box;
  width: 100%;
  max-width: 1920px;
  z-index: 0;
  display: flex;
  margin: auto;
}

.full-main-article::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 29.07%, rgba(0, 0, 0, 0.34) 69.01%);
  z-index: -3;
}

.full-main-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: auto;
  min-height: calc(100vh - 66px);
  position: relative;
  margin-left: 35px;
}

.full-tags-box {
  margin-top: 35px;
}

.article-main-tags {
  background: inherit;
  border-radius: 48px;
  border: 1px solid #FFF;
  padding: 10px 15px;
  font-family: 'General Sans', sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  color: #FFF;
  line-height: 110%; 
}

.article-main-tags:hover {
  background: #fff;
  color: black;
  transition: .5s;
}

.article-main-tags:not(:first-child) {
  margin-left: 10px;
}

.full-btn-submited {
  background: #FFF;
  color: #000;
}

.full-btn-submited:hover {
  opacity: 0.7;
}

.container-custom-main-bg {
  background: #201E1E;
}

.container-custom-main {
  display: flex;
  margin: auto;
  max-width: 1920px;
}

.wrapper-aside-01 {
  max-width: 313px;
  width: 100%;
  background: #1A1818;
}

.aside-custom-main {
  padding-top: 60px;
  margin-left: 35px;
}

.aside-custom-tags {
  display: flex;
  flex-direction: column;
  margin: auto;
  justify-content: center;
}

.aside-custom-text {
  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; 
  padding-bottom: 15px;
}

.custom-tags {
  border-radius: 48px;
  border: 1px solid #FFF;
  background: inherit;
  padding: 10px 15px;

  color: #FFF;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  margin-bottom: 10px;
  text-align: center;
  width: fit-content;
}

.custom-tags:hover {
  background: #fff;
  color: #1A1818;
  transition: 0.5s;
}

.aside-custom-social {
  display: flex;
  border-radius: 59.4px;
  border: 1px solid #424242;
  align-items: center;
  width: fit-content;
  gap: 10px;
  padding: 4px 5px 1px 5px;
}

.aside-custom-social:hover {
  transition: 0.5s;
}


.aside-custom-item:hover:nth-child(1) svg path {
  stroke: #fff;;
  fill: #fff;;
}

.aside-custom-item:hover:nth-child(1) svg rect {
  fill: #4267B2;
}

.aside-custom-item:hover:nth-child(2) svg path {
  stroke: #1DA1F2;
  fill: #1DA1F2;
}

.custom-wrapper-article {
  background: #201E1E;
  width: 100%;
  max-width: 1920px;
  padding-top: 60px;
  padding-left: 35px;
  border-bottom: 1px solid #424242;
  border-left: 1px solid #424242;
}

.custom-article {
  max-width: 750px;

  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.has-large-font-size {
  font-weight: 600;
  line-height: 120%; 
}

.custom-article img {
  object-fit: cover;
}

.custom-article a {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  text-decoration: underline red;
}

.custom-article a:hover {
  color: #9E2929;
  transition: 0.6s;
  text-decoration: underline #9E2929;
}

.custom-wrapper-author {
  padding-top: 50px;
  padding-bottom: 70px;
} 

/* Custom article main 
Break points */

@media (min-width: 1920px) {
  .full-main-content {
    margin-left: 43px;
  }

  .full-tags-box {
    margin-top: 43px;
  }

  .article-main-tags {
    padding: 12px 18px;
    border-radius: 52px;
    font-size: 17px;
  }

  .article-main-tags:not(:first-child) {
    margin-left: 12px;
  }

  .wrapper-aside-01 {
    max-width: 375px;
    width: 100%;
  }

  .aside-custom-main {
    padding-top: 70px;
    margin-left: 40px;
  }

  .aside-custom-text{
    font-size: 17px;
    padding-bottom: 22px;
  }

  .custom-tags {
    border-radius: 52px;
    padding: 12px 18px;
    font-size: 17px;
    margin-bottom: 12px;
  }

  .aside-custom-social {
    border-radius: 70.837px;
    padding: 6px 6px 2px 6px;
  }

  .aside-custom-item svg {
    width: 41.739px;
    height: 41.739px;
  }

}

@media (min-width: 1440px) and (max-width: 1599px) {
  .full-main-content {
    margin-left: 30px;
  }

  .wrapper-aside-01 {
    max-width: 280px;
    width: 100%;
  }

  .full-tags-box {
    margin-top: 30px;
  }

  .article-main-tags:not(:first-child) {
    margin-left: 9px;
  }
}

@media (max-width: 1439px) {
  .full-main-content {
    margin-left: 20px;
  }

  .full-tags-box {
    margin-top: 20px;
  }

  .article-main-tags {
    padding: 8px 13px;
    border-radius: 43px;
    font-size: 14px;
  }

  .article-main-tags:not(:first-child) {
    margin-left: 9px;
  }

  .wrapper-aside-01 {
    max-width: 249.5px;
    width: 100%;
  }

  .aside-custom-main {
    padding-top: 54px;
  }

  .aside-custom-text{
    font-size: 12.444px;
    padding-bottom: 17px;
  }

  .custom-tags {
    padding: 8px 13px;
    border-radius: 43px;
    font-size: 12.444px;
    margin-bottom: 9px;
  }

  .aside-custom-social {
    border-radius: 52.8px;
    padding: 4px 4px 1px 4px;
    gap: 10px;
  }

  .aside-custom-item svg {
    width: 35px;
    height: 35px;
  }

  .custom-wrapper-article {
    padding-top: 53px;
    padding-left: 31px;
  }
  .custom-article {
    max-width: 667px;
    font-size: 18px;
  }

  .custom-article a {
    font-size: 18px;
  }

  .custom-wrapper-author {
    padding-top: 45px;
    padding-bottom: 36px;
  } 
}

@media (max-width: 1023px) {
  .wrapper-aside-01 {
    max-width: 211px;
    width: 100%;
  }

  .aside-custom-item svg {
    width: 31px;
    height: 31px;
  }
}

@media (max-width: 767px) {
  .full-main-content{
    width: 100%;
    margin: 0 0 0 10px;
  }

  .aside-custom-tags {
    margin-left: 10px;
  }
  .article-main-tags {
    display: none;
  }

  .wrapper-aside-01 {
    max-width: 100%;
    padding: 30px 0;
  }

  .aside-custom-main {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }

  .container-custom-main {
    flex-direction: column-reverse;
  }

  .custom-wrapper-article {
    padding: 0;
    border-left: none;
  }

  .custom-article {
    width: 93%;
    margin-left: 10px;
    font-size: clamp(13px, 5vw, 18px);
  }

  .custom-article a {
    font-size: clamp(13px, 5vw, 18px);
  }
}

/* =========================================================
   UTILITY CLASSES
   ========================================================= */
.ivisible {display:none;}

/* =========================================================
   OVERRIDES — MOBILE NAV INDENT + SOCIAL PILL SPACING
   (Non-destructive, additive only)
   ========================================================= */

@media (max-width: 992px) {
  /* Slightly more left gutter for the whole list */
  .nav-menu-list { 
    margin: 30px 0 0 16px; /* was 10px */
  }

  /* Make parent rows keep their width but allow space for the arrow */
  .nav-menu-link { 
    padding-left: 4px; 
  }

  /* Provide a clear nested indent for dropdown panels and list items */
  .nav-menu-item.open > .dropdown-menu { 
    padding-left: 14px; 
  }
  
  .dropdown-menu li { 
    padding-left: 18px; /* more indent so text aligns nicely */
  }

  /* Even spacing around social pill */
  .burger-social-wrap {
    margin: 20px auto 40px auto;  /* increased bottom margin to prevent cropping */
    padding: 16px 24px;            /* increased vertical padding for taller pill */
  }

  /* Lightning icon hover animation - outline to filled */
  .dropdown-item .nav-icon {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  

  /* Social media icons - subtle red darken on hover */
  .burger-social-item a:hover {
    background: rgba(235, 45, 45, 0.15);
    outline: none;
    border: none;
    transition: all 0.3s ease;
  }
  
  /* Apply Facebook-style hover to all other social icons */
  .burger-social-item a:hover svg path {
    fill: #fff;
    transition: all 0.3s ease;
  }
  
  /* Facebook icon specific - target the rect element for background */
  .burger-social-item a:hover svg rect {
    fill: #9E2929;
    transition: all 0.3s ease;
  }

  /* Make accordion arrows bigger */
  .dropdown-arrow {
    width: 20px !important;
    height: 14px !important;
  }
}


/* =========================================================
   SOCIAL PILL — PERFECT CENTERING
   ========================================================= */

   .burger-social-wrap {
    display: flex;
    justify-content: center;   /* centers the list horizontally */
    align-items: center;       /* centers vertically */
    margin: 20px auto 40px auto;
    padding: 20px 16px;        /* increased vertical padding for taller pill */
    border: 1px solid #424242;
    border-radius: 60px;
    max-width: 380px;          /* keeps pill from stretching too wide */
    box-sizing: border-box;
  }
  
  .burger-social-list {
    display: flex;
    justify-content: center;   /* makes sure all icons sit in the middle */
    align-items: center;
    gap: 20px;                 /* equal spacing between icons */
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .burger-social-item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .burger-social-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    transition: all 0.3s ease;
    outline: none;
  }

  .b-dropdown-social-link {
    font-size: 12px;
  }

/* Mobile navigation text size */
@media (max-width: 992px) {
  .nav-menu-item a {
    font-size: 28px;
  }
  
  .nav-menu-item .dropdown-menu li a {
    font-size: 18px;
  }
}

/* Mobile responsive breakpoints for social pill */
/* iPhone Pro and larger phones (768px - 431px) */
@media (max-width: 767px) and (min-width: 431px) {
  .burger-social-wrap {
    margin: 30px auto 50px auto !important;
    padding: 24px 28px !important;
  }
}

/* iPhone 12/13/14 and similar (430px - 391px) */
@media (max-width: 430px) and (min-width: 391px) {
  .burger-social-wrap {
    margin: 25px auto 45px auto !important;
    padding: 22px 24px !important;
  }
}

/* iPhone SE, 12 Mini and smaller (390px and below) */
@media (max-width: 390px) {
  .burger-social-wrap {
    margin: 20px auto 40px auto !important;
    padding: 20px 20px !important;
  }
}

/* Hide social media icons on tablets and larger screens */
@media (min-width: 993px) {
  .burger-social-wrap {
    display: none;
  }
}

/* =========================================================
   BACK TO TOP BUTTON
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 40px; /* Default bottom position, JS will adjust when near footer */
  right: 40px;
  width: 50px;
  height: 50px;
  background: #9E2929;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth transition for all properties including bottom */
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(158, 41, 41, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #CE2B2B;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(158, 41, 41, 0.4);
}

.back-to-top svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  transition: transform 0.3s ease; /* Only animate on hover */
}

/* Animation only on hover */
.back-to-top:hover svg {
  animation: bounce 0.6s ease-in-out;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Mobile adjustments */
@media (max-width: 767px) {
  .back-to-top {
    right: 20px !important;
    bottom: 40px !important;
    width: 45px;
    height: 45px;
    /* Lock position on mobile - no dynamic adjustments */
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  
  /* Remove all transform effects on mobile */
  .back-to-top:hover {
    transform: none !important;
    box-shadow: none;
  }
  
  /* Disable click animation transform on mobile */
  .back-to-top.clicking {
    transform: none !important;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* Fix Social dropdown arrow alignment for tablet view */
@media (min-width: 993px) {
  .dropdown-social-toggle {
    font-size: 14px;
  }
  
  .nav-menu-link {
    font-size: 14px;
  }
  
  .dropdown-social-toggle .dropdown-arrow {
    width: 8px;
    height: 5px;
    margin-left: 4px;
    vertical-align: middle;
  }
  
  /* Make search input smaller */
  .search-input,
  .search-group input[type="search"],
  .search-all-news {
    width: 200px;
    height: 35px;
    font-size: 12px;
    margin-right: 20px;
  }
  
  /* Make header more responsive */
  .header-forms {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .header-search {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .button-submit {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Make dropdowns functional at 993px */
  .nav-menu-item {
    position: relative;
  }
  
  .nav-menu-item .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: #201E1E;
    border: 1px solid #424242;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    min-width: 120px;
    width: 120px;
    display: none;
  }
  
  .nav-menu-item .dropdown-menu.active {
    display: block;
  }
  
  .nav-menu-item .dropdown-menu li {
    padding: 12px 16px;
    border-bottom: 1px solid #424242;
  }
  
  .nav-menu-item .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .nav-menu-item .dropdown-menu li:hover {
    background-color: transparent;
  }
  
  .nav-menu-item .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .nav-menu-item .dropdown-menu li a:hover {
    color: #eb2d2d;
  }
  
  .nav-menu-item .dropdown-menu li a .nav-icon {
    width: 20px;
    height: 20px;
    color: #eb2d2d;
  }
  
  /* Lightning icon hover effect for navigation dropdowns */
  .nav-menu-item .dropdown-menu li a:hover .nav-icon path {
    fill: #eb2d2d;
    stroke: none;
  }
  
  /* Header social dropdown at 993px */
  .header-social {
    position: relative; /* make sure the parent is the positioning context */
  }
  
  .header-social .dropdown-menu {
    position: absolute !important;
    top: calc(100% - 8px) !important;              /* overlap slightly with header */
    left: 50% !important;
    transform: translateX(-50%) !important;

    background-color: #201E1E !important;
    border: 1px solid #424242 !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
    z-index: 1000 !important;

    min-width: 120px !important;
    width: 120px !important;
    display: none !important;
  }
  
  .header-social .dropdown-menu.active {
    display: block !important;
  }
  
  .header-social .dropdown-menu li {
    padding: 12px 16px;
    border-bottom: 1px solid #424242;
  }
  
  .header-social .dropdown-menu li:last-child {
    border-bottom: none;
  }
  
  .header-social .dropdown-menu li a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .header-social .dropdown-menu li a:hover {
    color: #eb2d2d;
  }
  
  /* Override any inherited hover background from navigation dropdowns */
  .header-social .dropdown-menu li:hover {
    background-color: transparent !important;
  }
  
  .header-social .dropdown-menu li a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }
  
  /* Hover effect for social media icons */
  .header-social .dropdown-menu li a:hover svg circle {
    fill: #eb2d2d;
  }
  
  .header-social .dropdown-menu li a:hover svg rect {
    fill: #eb2d2d;
  }
  
  .header-social .dropdown-menu li a:hover svg path {
    fill: #fff;
  }
}
  