/* MyNewsStyle.css */
    
/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #f9f9f9, #e3e9f0);
  color: #333;
  line-height: 1.6;
  font-family: 'Montserrat';
}


/* Header */
header {
  background: #fff;
  padding: 7px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

header img.logo {
  height: 36px;
  width: auto;
  cursor: pointer;
}

header input[type="text"] {
  padding: 10px 16px;
  border: none;
  border-radius: 25px;
  outline: none;
  font-size: 14px;
  background: #f0f0f0;
  transition: background 0.3s;
}

header input[type="text"]:focus {
  background: #e2e2e2;
}

.top-menu-btn{
    font-size:35px;
}

.main_concise_logo{
    height:35px;
    
}

.user-face{
    width:35px;
    height:35px;
    object-fit:cover;
    
}


/* Categories Bar */
.categories {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  background: #fff;
  color: #222;
  padding: 5px 12px;
  scrollbar-width: none; /* Firefox */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.categories::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.categories h2 {
  font-size: 15px;
  margin-right: 22px;
  cursor: pointer;
  flex: 0 0 auto;
  font-weight: 500;
  transition: color 0.2s;
}

.categories h2:hover {
  color: #555;
}

/* Container */
.container {
  display: flex;
  padding: 20px;
  gap: 20px;
}

/* News Section */
.news {
  flex: 3;
}

.news-article {
  background: #fff;
  border-radius: 25px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.news-article img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.news-article h3 {
  padding: 15px;
  font-size: 18px;
  font-weight: bold;
}

.news-article p {
  padding: 0 15px 15px 15px;
  font-size: 14px;
  color: #555;
}

/* Trending Sidebar */
.trending1 {
  flex: 1;
  position: sticky;
  top: 80px; /* below header */
  align-self: flex-start;
  z-index: 999;
}

.trending1 h2 {
  margin-bottom: 15px;
  font-size: 18px;
}

.trending1 ul {
  list-style: none;
}

.trending1 li {
  margin-bottom: 10px;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  
  .trending1 {
    position: relative;
    top: 0;
    margin-top: 20px;
  }

  /*header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }*/

  header input[type="text"] {
    width: 100%;
  }
}



/* Trending Section for markets*/
.trending1 {
  flex: 0 0 30%;
  max-width: 30%;
  position: sticky;
  top: 80px;
  align-self: flex-start;
  border: none !important;
  border-radius: 25px;
}

/* Kill all card borders */
.card {
  border: none !important;
}

/* Kill form-control borders (search box) */
.form-control {
  border: none !important;
  box-shadow: none !important;
  background: #f0f0f0;
  padding: 10px 16px;
  border-radius: 25px;
}


/*-------------*/
/* Google News style small snippet */
.news-item-link {
  transition: background 0.2s;
}

.news-item-link:hover {
  background-color: #f0f0f0;
}

.news-item-link .news-headline {
  font-size: 14px;
  color: #333;
  margin: 2px 0;
  transition: text-decoration 0.2s;
}

.news-item-link:hover .news-headline {
  text-decoration: underline;
}
/*------------*/



/* Featured news block hover effect */
.featured-news-link {
  transition: background 0.2s;
  padding: 5px;
  border-radius: 6px;
}

.featured-news-link:hover {
  background-color: #f0f0f0;
}

.featured-news-link .news-headline {
  font-size: 16px;
  color: #333;
  margin: 2px 0;
  transition: text-decoration 0.2s;
}

.featured-news-link:hover .news-headline {
  text-decoration: underline;
}
/*------------*/


.featured-news-block:hover {
  background-color: #f0f0f0;
}

.news-headline {
  font-size: 16px;
  color: #333;
  margin: 2px 0;
  transition: text-decoration 0.2s;
}

.news-headline-link:hover .news-headline {
  text-decoration: underline;
}

.featured-text {
  display: flex;
  flex-direction: column;
}

.featured-img img {
  display: block;
}

/*------------------*/


.trending-link {
  transition: background 0.2s;
}

.trending-link:hover {
  background-color: #f0f0f0;
}

.trending-link .news-headline {
  font-size: 14px;
  color: #333;
  margin: 2px 0;
}

.trending-link:hover .news-headline {
  text-decoration: underline;
}
/*--------------------*/

.finance-slider {
  background: none;          /* remove box background */
  box-shadow: none;          /* remove shadow */
  width: auto;               /* take full width inside card */
  min-height: 50px;          /* ensure enough height to see content */
  text-align: right;
  font-size: 0.95rem;
  font-weight: 500;
  overflow: hidden;
  display: flex;
  justify-content: flex-end; /* align content to right */
  align-items: center;
  padding-right: 10px;       /* little right padding */
  position: relative;
}



.finance-slide {
  position: absolute;  /* overlay slides */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* align content to the right */
}
.finance-slide.active {
  opacity: 1;
}
/*-----------------------------------*/

/* Categories */
.categories {
  gap: 25px; /* space between links */
  padding: 6px 0 0 0;      /* top padding */
  margin: 0;       /* ensure no extra spacing */
  align-items: flex-end; /* make links sit at bottom if using flex */
}

.categories .category-link {
  font-size: 0.9rem;
  text-decoration: none;
  color: #333;
  padding: 0 0 6px 0; /* only bottom padding for border space */
  border-bottom: 3px solid transparent;
  transition: all 0.2s ease-in-out;
  display: inline-block; /* ensures border sits correctly */
}

.categories .category-link:hover,
.categories .category-link.active {
  border-bottom: 3px solid #007bff; /* blue highlight */
  font-weight: 500;
}

/*--------------------*/

/* ------------------------Menu Popup--------------------------- */
/* Popup Overlay */
#menu-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height:100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
}

/* Popup Box - Centered with slight offset */
.menu-content {
  background: #fff;
  width: 300px;
  position: absolute;
  top: 45%; /* Changed from margin:10% auto to position 45% from top */
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  animation: fadeIn 0.2s ease-in-out;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}
.close-btn:hover {
  color: #000;
}

/* Links */
.popup-link {
  display: block;
  padding: 10px 0;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
}
.popup-link:last-child {
  border-bottom: none;
}
.popup-link:hover {
  color: #007bff;
}

/* Social Icons */
.social-links {
  margin-top: 15px;
}
.social-links a {
  margin: 0 8px;
  font-size: 1.4rem;
  color: #444;
  transition: color 0.2s;
}
.social-links a:hover {
  color: #007bff;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translate(-50%, -50%) scale(0.9);}
  to {opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

/* Responsive adjustments */
@media (max-width: 450px) {
  .menu-content {
    width: 280px;
    top: 46%; /* Slightly different offset for mobile */
  }
}
/*---------------------*/

/*-------------------------------- User Popup Base------------------------------ */
/* User Popup Base */
.custom-popup {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  height: 100vh;
  background-color: rgba(0,0,0,0.4);
}

/* Popup Box - Centered with slight offset */
.custom-popup .popup-content {
  background: #fff;
  width: 280px;
  position: absolute;
  top: 45%; /* Slightly lower than center */
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  animation: fadeIn 0.2s ease-in-out;
}

/* Close button */
.custom-popup .close-btn2 {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  color: #666;
}
.custom-popup .close-btn2:hover {
  color: #000;
}

/* Row styling */
.custom-popup .popup-row {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.custom-popup .popup-row:last-child {
  border-bottom: none;
}
.custom-popup .popup-row:hover {
  background: #f8f9fa;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translate(-50%, -50%) scale(0.9);}
  to {opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

/* Responsive adjustments */
@media (max-width: 450px) {
  .custom-popup .popup-content {
    width: 260px;
    top: 46%; /* Slightly different offset for mobile */
  }
}
/*--------------*/

.news-link:hover {
  background-color: #f5f5f5; /* light grey */
}

.news-link:hover .news-headline {
  text-decoration: underline;
  color: #333; /* slightly darker text on hover */
}


/*---------------------------------------*/

.news-carousel-container {
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.news-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.news-column {
  flex: 0 0 33.333%;
  scroll-snap-align: start;
}

.news-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 25px;
  z-index: 2;
}

.carousel-arrow.left { left: 5px; }
.carousel-arrow.right { right: 5px; }

/* Optional auto-scroll using CSS animation */
@keyframes autoScroll {
  0% { transform: translateX(0); }
  33% { transform: translateX(-33.333%); }
  66% { transform: translateX(-66.666%); }
  100% { transform: translateX(0); }
}

.news-carousel-wrapper {
  position: relative;
  width: 100%; /* full width to allow arrows outside col-9 */
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  background-color: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 0 10px;
  cursor: pointer;
  border-radius: 25px;
  z-index: 10;
}

.carousel-arrow.left { left: 10px; }   /* visible outside col-9 */
.carousel-arrow.right { right: 10px; } /* visible outside col-9 */


/*----------------------------------link popup style------------------------------*/
/* Link Popup Style */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.popup-content-link {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  width: 60%; /* Default for large screens */
  max-width: 90%;
  max-height: 80vh; /* Maximum 80% of screen height */
  text-align: left;
  position: relative;
  overflow-y: auto; /* Scrollable if content exceeds height */
  word-wrap: break-word; /* Prevent long words from overflowing */
  overflow-wrap: break-word;
}

/* Responsive width scaling */
@media (max-width: 1200px) {
  .popup-content-link {
    width: 65%;
  }
}

@media (max-width: 1100px) {
  .popup-content-link {
    width: 70%;
  }
}

@media (max-width: 1000px) {
  .popup-content-link {
    width: 75%;
  }
}

@media (max-width: 900px) {
  .popup-content-link {
    width: 80%;
  }
}

@media (max-width: 800px) {
  .popup-content-link {
    width: 85%;
  }
}

@media (max-width: 700px) {
  .popup-content-link {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .popup-content-link {
    width: 92%;
  }
}

@media (max-width: 500px) {
  .popup-content-link {
    width: 94%;
  }
}

@media (max-width: 450px) {
  .popup-content-link {
    width: 95% !important;
    padding: 20px;
  }
}

/* Content handling */
#popupSummary {
  color: #555;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%; /* Ensure it doesn't overflow container */
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 18px;
  z-index: 10;
}

.btn-link-b {
  display: inline-block;
  width: 100%;
  padding: 8px 14px;
  margin: 10px 0 0 0;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
}

.btn-link-b:hover {
  background: #0056b3;
}

/* Mobile adjustments */
@media (max-width: 450px) {
  .popup-content-link {
    padding: 15px;
  }
  
  #popupTitle {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
  }
  
  #popupSummary {
    font-size: 13px;
    margin-bottom: 12px;
  }
}
/*--------------------------------link popup over-----------------------*/



/*category menu header*/
/* ===== Categories Modal Styles ===== */
/* Categories Modal Styles */
.cat-modal {
  display: none; /* hidden by default */
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height:100vh;
  background: rgba(0, 0, 0, 0.6);
}

/* Popup Box - Centered with slight offset */
.cat-modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  position: absolute;
  top: 50%; /* Slightly lower than center */
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  overflow-y: auto;
}

.cat-modal-header {
  position: relative;
  margin-bottom: 15px;
}

.cat-modal-title {
  margin-top: 0;
  font-size: 1.25rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  text-align: center;
}

.cat-close-btn {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5rem;
  font-weight: bold;
  color: #555;
  cursor: pointer;
  background: none;
  border: none;
}

.cat-close-btn:hover {
  color: #000;
}

.cat-list {
  display: flex;
  flex-direction: column;
}

.cat-list a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
  color: #333;
  border-radius: 4px;
}

.cat-list a:hover {
  background: #f5f5f5;
}

.cat-list a.active {
  font-weight: bold;
  background: #e6f0ff;
}

/* Fade animation */
@keyframes fadeIn {
  from {opacity: 0; transform: translate(-50%, -50%) scale(0.9);}
  to {opacity: 1; transform: translate(-50%, -50%) scale(1);}
}

.cat-modal-content {
  animation: fadeIn 0.2s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 450px) {
  .cat-modal-content {
    width: 95% !important;
    top: 48%; /* Slightly different offset for mobile */
    padding: 15px;
  }
  
  .cat-modal-title {
    font-size: 1.1rem;
    padding-bottom: 8px;
  }
}



/*=============================================================================*/
/*=========================Responsive code=====================================*/
/*=============================================================================*/

/* ==================== Responsive ==================== */



/* Mobile (≤600px) */
@media (max-width: 600px) {

 .top-menu-btn{
    font-size:25px;
}

.main_concise_logo{
    height:35px;
    
}

.user-face{
    width:25px;
    height:25px;
    object-fit:cover;
    
}


/*--------------*/
/*-----Categories---------*/
.categories {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  margin: 0;
  padding: 0 5px; /* ✅ match page padding */
  box-sizing: border-box;
  padding-top:5px;
}

.categories::-webkit-scrollbar { display: none; }


.categories .category-link {
  flex: 0 0 auto; /* ✅ prevent links from shrinking */
}

}


/*--------------*/
/*-------today's breifing corner--------*/
@media (max-width: 1100px) {
  .content-area {
    margin: 0 auto !important;
    /*padding: 1.5rem 5px !important;*/
    width: calc(100% - 10px) !important; /* ✅ prevent overflow */
    max-width: none !important;
    box-sizing: border-box !important;
    
    gap: 5px !important;
    align-items: flex-start;
  }

  .trending1 { display: none !important; }

  .trending-toggle {
    display: block !important;
    flex: 0 0 10% !important;
    max-width: 10% !important;
    min-width: 44px !important;
    box-sizing: border-box !important;
  }

  .trending-toggle button {
    width: 100% !important;
    height: 100% !important;
    padding: 6px !important;
    box-sizing: border-box !important;
  }
}


/* Small close button */
.btn-close-sm {
  width: 0.8rem;
  height: 0.8rem;
  font-size: 0.75rem;
}

/* Custom modal header with proper spacing */
.modal-header-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 1rem 0 0 0; /* Extra bottom padding for gap */
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #dee2e6 !important;
  min-height: 3rem; /* Ensure consistent height */
  margin-bottom: 5rem;
}

.modal-header-custom .modal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-weight: 600;
  text-align: center;
  width: auto;
}

.modal-header-custom .btn-close-sm {
  margin-left: auto;
  width: 0.8rem;
  height: 0.8rem;
  font-size: 0.75rem;
  z-index: 1; /* Ensure it stays above other elements */
}

/* Finance box spacing */
#finance-box-mobile {
  margin-top: 5rem !important;
  margin-bottom: 0;
  padding: 0 0.5rem; /* Default padding */
}

#trendingModal .modal-content {
  background: 
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)),
    url('https://concise.plus/res/image/markets.png') center/cover no-repeat;
}

/* Responsive modal width */
@media (max-width: 699px) {
  #trendingModal .modal-dialog {
    max-width: 80% !important;
    margin: auto;
  }
}
@media (min-width: 700px) and (max-width: 1000px) {
  #trendingModal .modal-dialog {
    max-width: 50% !important;
    margin: auto;
  }
}


@media (max-width: 450px) {
  #finance-box-mobile {
    padding: 0 1rem !important; /* More padding on very small screens */
  }
  
  /* Ensure the inner content doesn't touch edges */
  #finance-box-mobile .finance-slide {
    padding: 0 0.5rem;
  }
}

@media (max-width: 450px) {
  .modal-header-custom {
    padding-left: 2rem !important;  /* Space for close button on left */
    padding-right: 2rem !important; /* Space for close button on right */
  }
  
  .modal-header-custom .modal-title {
    white-space: nowrap; /* Prevent text wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 70%; /* Ensure it doesn't touch buttons */
  }
  
  .modal-header-custom .btn-close-sm {
    position: absolute;
    right: 0.5rem; /* Position from right edge */
  }
}


/*-----------------------------latest news----------------------*/

  .trending-mobile {
    display: none !important;
    border: none !important;
    border-radius: 25px;
    width: 100%;
    max-width: 100%;
    position: static;
  }
  
  
/* Your existing trending styles */
.trending-mobile h2 {
  margin-bottom: 15px;
  font-size: 18px;
}

.trending-mobile ul {
  list-style: none;
}

.trending-mobile li {
  margin-bottom: 10px;
  font-size: 14px;
}


/* For screens below 1000px - Show mobile grid, hide desktop trending */
@media (max-width: 799px) {
  .content-area {
    display: block;
  }
  
  .left-news {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 0;
  }
  
  .trending-desktop {
    display: none !important;
  }
  
  .latest-news-card {
    display: block !important;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .news-grid-mobile {
    display: none !important;
  }
}


/* Hide latest news card below 450px */
@media (max-width: 450px) {
  .latest-news-card {
    display: none !important;
  }
  .news-grid-mobile {
    display: block !important;
  }
    .trending-mobile {
    display: block !important;    
    }
}

/* Your existing trending styles */
.trending-desktop h2 {
  margin-bottom: 15px;
  font-size: 18px;
}

.trending-desktop ul {
  list-style: none;
}

.trending-desktop li {
  margin-bottom: 10px;
  font-size: 14px;
}

/*-------------------------------------------------------------*/

/* News Carousel Base Styles */
.news-carousel-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.news-carousel {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
  padding: 0 1rem;
}

.news-column {
  flex: 0 0 33.333%; /* 3 columns on desktop */
  min-width: 0;
}

/* Carousel Arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(80, 80, 80, 0.9); /* Dark grey background */
  border: 1px solid #555; /* Darker border */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: white; /* White arrow color */
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: rgba(60, 60, 60, 0.95); /* Slightly darker on hover */
  box-shadow: 0 2px 8px rgba(0,0,0,0.3); /* Darker shadow */
  color: white;
}

.carousel-arrow.left {
  left: 10px;
}

.carousel-arrow.right {
  right: 10px;
}

/* Tablet: 2 columns (801px - 450px) */
@media (max-width: 800px) {
  .news-column {
    flex: 0 0 50%; /* 2 columns */
  }
  
  .news-carousel {
    padding: 0 0.5rem;
  }
}

/* Mobile: 1 column (450px and below) */
@media (max-width: 450px) {
  .news-column {
    flex: 0 0 100%; /* 1 column */
  }
  
  .carousel-arrow {
    display: none !important; /* Hide arrows on mobile */
  }
  
  .news-carousel {
    padding: 0;
    gap: 0.5rem;
  }
  
  .news-carousel-wrapper {
    padding: 0 0.5rem;
  }
}

/* Ensure images are responsive */
.news-img img {
  max-width: 100%;
  height: auto;
}

/* Improve touch scrolling on mobile */
@media (max-width: 800px) {
  .news-carousel-wrapper {
    -webkit-overflow-scrolling: touch;
  }
  
  .news-carousel {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  
  .news-carousel::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
  }
  
  .news-column {
    scroll-snap-align: start;
  }
}



/*----------------------------*/


