:root {
  --bg: #fff6ef;
  --card: #fffdfc;
  --primary: #881437;
  --secondary: #e11d47;
  --accent: linear-gradient(135deg,#f46761, #b91940);
  --text: #1a1a1a;
  --muted: #777;
  --radius: 14px;
}

/* RESET */
* {margin:0;padding:0;box-sizing:border-box;}

body {
  font-family: 'Mukta', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* CONTAINER */
.container {
  padding: 10px;
  max-width: 1400px;
  margin: auto;
  /*background-color: #f9f4ea;*/
}

/* HEADER */
.header {
  background: white;
  border-bottom: 1px solid #eee;
  padding: 12px 16px;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  color: var(--primary);
}

.logo {
    text-decoration: none;
}

.search-area input {
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
  width: 220px;
}

/* NAVBAR */
.navbar {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 10px;
}

.navbar a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

/* HERO */
.hero {
  background: var(--accent);
  color: white;
  padding: 30px 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 20px;
}

.hero-search input {
  margin-top: 10px;
  padding: 12px;
  width: 100%;
  border-radius: 25px;
  border: none;
}

/* SECTION */
.section {
  margin-bottom: 25px;
  padding: 15px;
  border-radius: var(--radius);
  background: white;
}

.section h2 {
  margin-bottom: 12px;
}

/* DIFFERENT SECTION LOOKS */
.trending { border-left: 4px solid #e11d47; }
.featured { border-left: 4px solid #ee863a; }
.categories-section { border-left: 4px solid #881437; }
.latest { border-left: 4px solid #f46761; }

/* SCROLL */
.scroll-x {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 3px;
}

.scroll-x.large .story-card {
  min-width: 240px;
}

/* STORY CARD - TEXT FIRST */
.story-card {
  min-width: 260px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;

  border: 1px solid #eee;
  transition: 0.25s;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* TOP ROW */
.story-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-tag {
  font-size: 11px;
  padding: 4px 8px;
  background: #ffe4e6;
  color: #be123c;
  border-radius: 20px;
}

.rating {
  font-size: 12px;
  color: #444;
}

/* TITLE */
.story-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-title a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.story-title a:hover {
  color: #e11d47;
}

/* DESCRIPTION */
.story-desc {
  font-size: 13px;
  color: #666;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* META */
.story-meta {
  font-size: 12px;
  color: #888;
  display: flex;
  gap: 10px;
}

/* THUMB */
.thumb img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
}

/* CONTENT */
.story-content {
  flex: 1;
}

/* CATEGORIES */
.categories {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.category-card {
  background: var(--accent);
   display: block;
  text-decoration: none;
  color: white;
  padding: 16px;
  text-align: center;
  border-radius: var(--radius);
  font-weight: bold;
}

.category-card:hover {
  transform: translateY(-3px);
  opacity: 0.95;
}


.filter-tags {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin: 15px 0;
}

.filter-tags a {
  padding: 6px 12px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
  color: #333;
  white-space: nowrap;
}

.filter-tags a.active {
  background: #e11d47;
  color: #fff;
}


/* ===========================
   READ MORE CARD
=========================== */

.read-more-card{
    min-width:260px;              /* Same as .story-card */
    background:#fff;
    border:1px dashed #d1d5db;
    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:16px;
    text-decoration:none;
    transition:.25s;

    /* Match normal story cards */
    flex-shrink:0;
}

.read-more-card:hover{
    transform:translateY(-4px);
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    border-color:#e11d47;
}

.read-more-content{
    text-align:center;
    padding:20px;
}

.read-more-icon{
    display:block;
    font-size:32px;
    margin-bottom:10px;
}

.read-more-content h3{
    margin:0;
    font-size:20px;
    font-weight:700;
    color:#111827;
}

.read-more-content p{
    margin-top:8px;
    color:#6b7280;
    font-size:14px;
}

/* =====================================================
   DISCOVER MORE SECTION
===================================================== */

.discover-section{
    margin-top:30px;
}

.discover-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
    gap:18px;
    margin-top:18px;
}

.discover-card{

    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;

    padding:22px 18px;

    text-align:center;
    text-decoration:none;
    color:#222;

    transition:.25s ease;

    box-shadow:0 3px 10px rgba(0,0,0,.04);

}

.discover-card:hover{

    transform:translateY(-4px);

    border-color:#e11d47;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.discover-card span{

    display:block;

    font-size:40px;

    margin-bottom:12px;

    line-height:1;

}

.discover-card h3{

    font-size:18px;

    font-weight:700;

    margin-bottom:8px;

    color:#1f2937;

}

.discover-card p{

    font-size:13px;

    color:#6b7280;

    line-height:1.5;

}

/* Mobile */

@media (max-width:768px){

.discover-grid{

grid-template-columns:repeat(2,1fr);

gap:12px;

}

.discover-card{

padding:18px 12px;

border-radius:14px;

}

.discover-card span{

font-size:32px;

margin-bottom:8px;

}

.discover-card h3{

font-size:15px;

margin-bottom:5px;

}

.discover-card p{

font-size:12px;

}

}

@media (max-width: 768px) {
  .card-tags {
    max-height: 100px; /* Exact height for 3 rows + gaps */
    overflow-y: auto;
    scrollbar-width: thin; /* Optional: cleaner look on modern browsers */
    padding-right: 4px;   /* Optional: space for the scrollbar */
  }

  /* Optional: Custom scrollbar styling for Webkit (Chrome/Safari) */
  .card-tags::-webkit-scrollbar {
    width: 4px;
  }
  .card-tags::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
  }
}


/* FOOTER */
footer {
  background: #1a1a1a;
  color: white;
  padding: 30px 20px;
  margin-top: 30px;
}

footer p {
  margin-bottom: 8px;
}

/* HEADER */
.main-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo-area {
  display: flex;
  flex-direction: column;
}

.logo {
  /*font-size: 32px;*/
  /*font-weight: 600;*/
 font-family: "Arial Black", Inter, sans-serif !important;
  font-weight: 900;
  font-size: 38px;
  color: #881437;
}

/*.logo {*/
  
/*  text-transform: uppercase;*/
/*  letter-spacing: -1px;*/
/*  color: rgb(225, 29, 71);*/
/*  text-decoration: none;*/
/*  border-bottom: 3px solid rgb(225, 29, 71);*/
/*  display: inline-block;*/
/*  padding-bottom: 2px;*/
/*} */


.tagline {
  font-size: 12px;
  color: #777;
}

/* SEARCH */
.desktop-search {
  flex: 1;
  margin: 0 20px;
}

.desktop-search input {
  width: 80%;
  padding: 10px;
  border-radius: 25px;
  border: 1px solid #ddd;
}

/* MOBILE ACTIONS */
.right-actions {
  display: flex;
  gap: 10px;
}

.right-actions button {
  background: none;
  border: none;
  font-size: 20px;
}

/* MOBILE SEARCH */
.mobile-search {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.mobile-search.active {
  max-height: 80px;
  padding: 10px;
}

.mobile-search input {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid #ddd;
}

/* NAVBAR */
.main-nav {
  background: linear-gradient(90deg,#881437,#e11d47);
}

.nav-links {
  display: flex;
   justify-content: center; 
  gap: 60px;
  padding: 10px;
      flex-wrap: wrap;
}

.nav-links > a,
.dropdown-btn{
    color:#fff;
    text-decoration:none;
    font-weight:500;
    /*padding:10px 0;*/
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -80%;
  width: 75%;
  height: 100%;
  background: white;
  z-index: 1000;
  transition: 0.3s;
  padding: 20px;
}

.mobile-menu.active {
  left: 0;
}

.menu-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

/* OVERLAY */
#overlay {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0,0,0,0.4);
  z-index: 999;
}

#overlay.active {
  display: block;
}

/* RESPONSIVE */
@media(min-width:768px){
  .right-actions { display: none; }
}

@media(max-width:768px){
  .desktop-search { display: none; }
  .nav-links { display: none; }
}

/* MOBILE MENU IMPROVED */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -85%;
  width: 80%;
  height: 100%;
  background: #fff;
  z-index: 1000;
  transition: 0.3s;
  padding: 15px;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}


/* =====================================================
   HOME / PAGE WRAPPER SHELL
===================================================== */

.content-shell{
    margin-top: 26px;
    background: #fefefe;
    border: 1px solid #fefefe;
    border-radius: 24px;
    padding: 26px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.05);
}

/* =====================================================
   TWO COLUMN LAYOUT
===================================================== */

.page-layout{
    display: flex;
    align-items: flex-start;
    gap: 34px;
}

.page-content{
    flex: 1;
    min-width: 0;
}

.page-sidebar{
    width: 350px;
    flex-shrink: 0;
    position: sticky;
    top: 24px;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 1100px){
    .page-layout{
        display: block;
    }

    .page-sidebar{
        width: 100%;
        margin-top: 30px;
        position: static;
    }

    .content-shell{
      margin-top: 10px;
        padding: 10px;
        border-radius: 18px;
    }
    .logo {
      font-size: 25;
      text-align: center;
      justify-content: center;
    }
}

/* HEADER */
.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.menu-logo {
  font-size: 18px;
  font-weight: bold;
  color: #881437;
}

/* GRID MENU */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px;
}

.menu-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  padding: 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;

  border: 1px solid #eee;
  transition: 0.2s;
}

.menu-grid a i {
  font-size: 18px;
  margin-bottom: 6px;
}

.menu-grid a span {
  font-size: 13px;
}

.menu-grid a:hover {
  background: #fff6ef;
  border-color: #f46761;
}

/* EXTRA SECTION */
.menu-extra {
  margin-top: 20px;
}

.menu-extra h4 {
  font-size: 13px;
  margin-bottom: 10px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}

.menu-extra a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #444;
  font-size: 14px;
}

.menu-extra a i {
  margin-right: 6px;
}

/*-----------------------------------------------Category Page---------------------------------------*/

/* HERO BOX */
.category-hero-box {
  background: linear-gradient(135deg, #fff, #f9f3e9);
  padding: 22px 18px;
  border-radius: 16px;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* TITLE */
.category-hero-box h1 {
  font-size: 30px;
  color: #2c1a08;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ICON */
.category-hero-box .icon {
  color: #e11d47;
  font-size: 18px;
}

/* SUBTEXT */
.category-hero-box .sub {
  font-size: 13px;
  font-weight: 400;
  color: #666;
}

/* DESCRIPTION */
.category-hero-box .desc {
  margin-top: 6px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.6;
  max-width: 600px;
}

/* STATS */
.hero-meta {
  margin-top: 8px;
  font-size: 12px;
  color: #888;
}


/* ================= CATEGORY CARD ================= */

/* CARD BASE */
.category-story-card {
  background: #fff;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid #eee;
  transition: 0.2s;
  /*max-width: 450px;*/
}

.category-story-card:hover {
  transform: translateY(-2px);
}

/* ===== TOP ROW ===== */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

/* CATEGORY TAG */
.cat-tag {
  font-size: 11px;
  background: #ffe4e6;
  padding: 4px 8px;
  border-radius: 20px;
}

.cat-tag a{
  text-decoration: none;
  color: black;
}

.cat-tag:has(a):hover {
  background-color: #ae183e;
}

.cat-tag:has(a):hover a {
  color: white;
  /*text-decoration: underline;*/
}

/* TRENDING BADGE (RIGHT SIDE) */
.badge {
  font-size: 11px;
  color: #e11d47;
  font-weight: 500;
}

/* ===== TITLE ===== */
.card-title {
  /*font-size: 18px;*/
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5;
  margin: 4px 0;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== DESCRIPTION ===== */
.card-desc {
  font-size: 13.5px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 6px;

  display: -webkit-box;
  -webkit-line-clamp: 3; /* ~150-200 char */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== META ===== */
.card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
  font-size: 12px;
  color: #777;
}

/* ===== SOURCE PILL (ICON INSIDE) ===== */
.source-wrap {
  display: flex;
  align-items: center;
}

.source-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  background: #f1f5f9;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11px;
}

/* SOURCE ICON */
.source-pill img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  object-fit: cover;
}

/* ===== TIME ===== */
.time {
  font-size: 11px;
  color: #888;
}

/* ===== CTA (RIGHT SIDE) ===== */
.card-bottom {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

/* READ BUTTON */
.read-btn {
  font-size: 13px;
  color: #e11d47;
  text-decoration: none;
  font-weight: 500;
}

.read-btn:hover {
  text-decoration: underline;
}


/* CLICKABLE LINK RESET */
.card-link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  width: 100%;
}

/* HOVER EFFECT */
.card-link:hover {
  color: #e11d47;
}

/*-------------------------------------------------------------------------------------------*/

.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-form input {
  flex: 1;
}

.search-form button {
  background: #ff6b35;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

/* ================= LIST SPACING ================= */

/* ONLY GAP HERE (IMPORTANT RULE) */
.story-list-vertical {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ================= SORT BAR ================= */

.sort-bar {
  display: flex;
  gap: 8px;
  margin: 15px 0;
}

.sort-bar  a{
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 13px;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  color: black;
}

/* ACTIVE */
.sort-bar a.active {
  background: #e11d47;
  color: #fff;
  border-color: #e11d47;
}

/* HOVER */
.sort-bar a:hover {
  border-color: #e11d47;
  color: #e11d47;
}

/* ================= PAGINATION ================= */

.pagination {
  text-align: center;
  margin-top: 25px;
}

.next-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 25px;
  background: linear-gradient(135deg,#f46761,#ee863a);
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.next-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ================= LOADER ================= */

.loader {
  text-align: center;
  padding: 20px;
  display: none;
  font-size: 13px;
  color: #666;
}

/* ANIMATED DOTS */
.loader::after {
  content: "...";
  animation: dots 1.2s infinite;
}

@keyframes dots {
  0% { content: "."; }
  33% { content: ".."; }
  66% { content: "..."; }
}

/* TAGS */
.card-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.tag-pill {
  font-size: 11px;
  padding: 3px 8px;
  background: #f3f4f6;
  border-radius: 20px;
  text-decoration: none;
  color: #555;
  transition: 0.2s;
}

.tag-pill:hover {
  background: #ffe4e6;
  color: #e11d47;
}


/*====================================================
  GLOBAL PAGINATION
====================================================*/

.pagination-controls{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin:40px 0 10px;
}

.page-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:42px;
    height:42px;
    padding:0 16px;

    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:12px;

    color:#374151;
    font-size:14px;
    font-weight:600;
    text-decoration:none;

    transition:.2s ease;
}

.page-btn:hover{
    background:#f8fafc;
    border-color:#2563eb;
    color:#2563eb;
    transform:translateY(-2px);
}

.page-btn.active{
    background:#2563eb;
    border-color:#2563eb;
    color:#fff;
    pointer-events:none;
}

.page-btn.disabled{
    opacity:.45;
    cursor:not-allowed;
    pointer-events:none;
}

.page-ellipsis{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:28px;
    color:#9ca3af;
    font-weight:700;
    user-select:none;
}

@media (max-width:768px){

.pagination-controls{
    gap:6px;
    margin-top:28px;
}

.page-btn{
    min-width:38px;
    height:38px;
    padding:0 12px;
    font-size:13px;
    border-radius:10px;
}

}

.menu-header button {
  background-color: black;
  border-radius: 40%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.2s;
  padding: 0px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
}

.bi-x-lg {
  color: rgb(255, 255, 255);
  font-size: 16px;
  /*line-height: 1;*/
}


/*---------------------------Footer Section Started----------------------------------------------------------------------------------------------------------*/
/*---------------------------Footer Section Started----------------------------------------------------------------------------------------------------------*/

.site-footer{
    margin-top:50px;
    background:#111827;
    color:#d1d5db;
}

.site-footer .container{
    padding:30px 20px 25px;
}

/* =========================
   TOP GRID
========================= */

.footer-top-grid{

display:grid;
grid-template-columns:2fr 2fr 1.8fr;
gap:40px;
align-items:start;

}

.footer-links-wrapper{

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

}

/* =========================
   ABOUT
========================= */

.footer-about h2{
    font-size:32px;
    color:#fff;
    margin-bottom:10px;
    line-height:1.1;
}

.footer-tagline{
    color:#f59e0b;
    font-weight:600;
    margin-bottom:18px;
    font-size:15px;
}

.footer-desc{
    line-height:1.9;
    color:#9ca3af;
    font-size:15px;
}

.footer-warning{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:22px;
    padding:10px 18px;
    background:#1f2937;
    border-radius:999px;
    font-size:14px;
    font-weight:600;
    color:#fff;
}

/* =========================
   COLUMNS
========================= */

.footer-column{
    display:flex;
    flex-direction:column;
    gap:13px;
}

.footer-column h4,
.footer-disclaimer-box h4{
    margin-bottom:8px;
    font-size:18px;
    color:#fff;
    line-height:1.2;
}

.footer-column a{
    color:#9ca3af;
    text-decoration:none;
    transition:.25s;
    font-size:14px;
}

.footer-column a:hover{
    color:#fff;
    padding-left:6px;
}

/* =========================
   DISCLAIMER
========================= */

.footer-disclaimer-box{
    line-height:1.9;
    color:#9ca3af;
    font-size:14px;
}

.footer-disclaimer-box p{
    margin:0 0 12px;
}

.footer-disclaimer-box p:last-child{
    margin-bottom:0;
}

.footer-disclaimer-box a{
    color:#fbbf24;
    text-decoration:none;
    font-weight:600;
}

.footer-disclaimer-box a:hover{
    text-decoration:underline;
}

/* =========================
   SUPPORT ROW
========================= */

.footer-support-row{
    margin-top:34px;
    padding:20px 0 0;
    border-top:1px solid rgba(255,255,255,.08);

    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:14px;
}

.footer-support-row a{
    display:inline-flex;
    align-items:center;
    padding:10px 16px;
    border-radius:999px;
    background:#1f2937;
    color:#cbd5e1;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.25s;
}

.footer-support-row a:hover{
    background:#f59e0b;
    color:#111827;
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom{
    margin-top:26px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.08);

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:16px;

    color:#9ca3af;
    font-size:14px;
}

.footer-bottom strong{
    color:#fff;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){

.footer-top-grid{

grid-template-columns:1fr;

gap:35px;

}

/* Explore + Browse */

.footer-links-wrapper{

grid-template-columns:1fr 1fr;

gap:25px;

}

.footer-column{

text-align:center;

}

.footer-column h4{

margin-bottom:16px;

}

.footer-column a{

padding:2px 0;

}

.footer-disclaimer-box{

text-align:left;

}

}

@media (max-width:700px){

.container{
    padding: 5px;
}

.site-footer .container{

padding:25px 18px 22px;

}

/* keep Explore + Browse side by side */

.footer-links-wrapper{

grid-template-columns:1fr 1fr;

gap:20px;

}

.footer-support-row{

justify-content:center;

gap:10px;

}

.footer-support-row a{

flex:1 1 calc(50% - 10px);

justify-content:center;

}

.footer-bottom{

flex-direction:column;

text-align:center;

}

}

@media (max-width:430px){

.footer-links-wrapper{

gap:12px;

}


.footer-column h4{

font-size:17px;

}

.footer-column a{

font-size:14px;

}

.footer-support-row a{

flex:1 1 100%;

}

}