/* ================= ROOT (THEME) ================= */

:root {
  --dark-green: #111d13;
  --primary-green: #538d22;
  --white: #ffffff;

  --bg: #f5f6f4;
  --border: rgba(0,0,0,0.08);
  --text-dark: #111d13;
  --text-muted: rgba(17,29,19,0.65);
  --green-soft: rgba(83,141,34,0.18);
  --shadow: 0 6px 20px rgba(0,0,0,0.08);
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: inter, sans-serif;
    background:#e6f7ec45 !important;
    color: var(--text-dark);
    line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
/* ================= TOP HEADER ================= */
/* HEADER WRAPPER */
.site-header{
  position: sticky;
  top: 0;
  z-index: 9999;
  transition: transform 0.35s ease;
}

/* HIDDEN STATE */
.site-header.hide{
  transform: translateY(-100%);
}

.top-header {
      background: #e6f7ec !important;
  display: grid;
  position: sticky;
  top: 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 6px 30px;
  border-bottom: 1px solid #cfe8d8;
}

.top-logo { height: 42px; }

/* MARQUEE */
.top-marquee {
  flex: 1;
  overflow: hidden;
}

/* clickable wrapper */
.marquee-link {
  display: block;
  color: #2f5d1e;
  text-decoration: none;
}

/* TRACK */
.alert-track {
  position: relative;
  height: 22px;
  overflow: hidden;
}

/* TEXT */
.alert-item {
  position: absolute;
  left: 100%;
  color: #2f5d1e;
  white-space: nowrap;
  font-weight: bold;
  will-change: transform;
}

/* pause on hover */
.top-marquee:hover .alert-item {
  animation-play-state: paused !important;
}

/* OLD KEYFRAME */
@keyframes slideRTL {
  from { transform: translateX(0); }
  to { transform: translateX(var(--travel)); }
}


/* SOCIAL */
.top-social a {
  color: #2f5d1e;
  margin-left: 12px;
  font-size: 16px;
  transition: 0.2s;
}

.top-social a:hover {
  color: #538d22;
  transform: translateY(-2px);
}

/* ================= HEADER ================= */
.main-header {
  background: linear-gradient(90deg, #1f3b08, #2f5d1e);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* NAV CENTER */
.main-nav { margin-inline: auto; }

/* MENU ROW */
.main-nav ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

/* MENU LINK */
.menu-link,
.hover-link a {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

/* CHEVRON */
.arrow {
  font-size: 11px;
  transition: transform 0.25s ease;
}

.menu-item:hover .arrow {
  transform: rotate(180deg);
}

/* DROPDOWN CARD */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);   /* no hover gap */
  left: 0;
  background: #ffffff;
  min-width: 260px;
  border-radius: 14px;
  padding: 8px 0;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.menu-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
gap: 2px;
  transform: translateY(0);
}

/* DROPDOWN ITEMS */
.dropdown li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 20px;
  font-size: 14px;
  color: #1f2937;
  transition: 0.2s;
  line-height: 1.4;
  cursor: pointer;
}

.dropdown li i {
  color: #1f3b08;
  font-size: 15px;
  min-width: 18px;
}

/* HOVER EFFECT */
.dropdown li:hover {
  background: #f3f8ee;
  padding-left: 24px;
}

/* SIMPLE LINK UNDERLINE */
.hover-link {
  position: relative;
}

.hover-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
}

.hover-link:hover::after {
  width: 100%;
}

/* ================= SEARCH ================= */
.header-search {
  display: flex;
  align-items: center;
  background: #f3f6f1;
  border-radius: 8px;
  padding: 6px 10px;
  border: 1px solid #cfe8d8;
}

.header-search input {
  width: 160px;
  border: none;
  outline: none;
  background: transparent;
}

.header-search i {
  cursor: pointer;
  color: #538d22;
  margin-left: 6px;
}

.header-search:focus-within {
  border-color: #538d22;
  box-shadow: 0 0 0 2px rgba(83,141,34,0.15);
}
/* =========================
   HAMBURGER BUTTON
========================= */
.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  cursor:pointer;
}

.hamburger span{
  width:24px;
  height:3px;
  background:#fff;
  border-radius:2px;
}

/* =========================
   MOBILE NAV
========================= */
.mobile-nav{
  position:fixed;
  inset:0;
  background:#ffffff;
  z-index:99999;
  padding:24px;
  transform:translateX(100%);
  transition:.35s ease;
  overflow-y:auto;
}

.mobile-nav.show{
  transform:translateX(0);
}

.mobile-close{
  position:absolute;
  top:14px;
  right:18px;
  font-size:30px;
  background:none;
  border:none;
  cursor:pointer;
}

.mobile-menu{
  margin-top:60px;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.mobile-menu > li > a,
.mobile-item > span{
  font-weight:700;
  font-size:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  padding:10px 0;
  border-bottom:1px solid #e5e7eb;
}

/* dropdown */
.mobile-item ul{
  display:none;
  flex-direction:column;
  gap:10px;
  padding:10px 0 10px 14px;
}

.mobile-item.open ul{
  display:flex;
}

/* =========================
   RESPONSIVE SWITCH
========================= */
@media(max-width:992px){

  .main-nav{
    display:none;
  }

  .header-search{
    display:none;
  }

  .hamburger{
    display:flex;
  }

}
/* ===============================
   DAILY PAGE LAYOUT FIX
================================ */

.daily-news-page.container{
display: flex;
    gap: 24px;
    padding: 36px;
    background: #f8fafc;
    align-items: flex-start;
}

/* LEFT CONTENT */
.daily-main{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* RIGHT SIDEBAR */
.daily-right-sidebar{
  width: 320px;
  flex-shrink: 0;
  position: relative;
  top: 110px;
}
/* ================= INTRO STRIP ================= */

.daily-intro-card{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:linear-gradient(90deg,var(--dark-green),var(--primary-green));
  color:#fff;
  padding:18px;
  border-radius:12px;
}

.intro-left{ display:flex; gap:14px; align-items:center; }
.intro-left i{ font-size:28px; }

.intro-left h2{ font-size:20px; }
.intro-left p{ font-size:13px; opacity:.9; }

.intro-right select{
  padding:6px 10px;
  border-radius:6px;
  border:none;
  font-weight:600;
}
/* ================= RIGHT SIDEBAR ================= */

.hero-right-links {
    background: var(--white);
    border-radius: 8px;
    padding: 10px;
    /* box-shadow: var(--shadow); */
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid #4d842147;
        width: 320px;
    position: sticky;
    top: 120px;
}
 
.hero-right-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-right-links a {
    position: relative;
    padding: 8px 11px;
    border-radius: 8px;
    background: var(--green-soft);
    font-weight: 600;
    color: #2f4f1e;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
}

.hero-right-links a.featured {
  background: linear-gradient(90deg, #1e3a14, #3f7d23);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 8px 50px rgba(83, 141, 34, 0.35);
  position: relative;
  overflow: hidden;
}

/* glow edge */
.hero-right-links a.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0),
    rgba(255,255,255,0)
  );
  opacity: 0.6;
}

/* make text pop */
.hero-right-links a.featured strong {
  color: #fff;
  letter-spacing: 0.3px;
}

/* announcement icon pop */
.hero-right-links a.featured .annoucement {
  filter: brightness(1.4) drop-shadow(0 0 6px rgba(255,255,255,.4));
}

/* hover */
.hero-right-links a.featured:hover {
  transform: translateX(6px) scale(1.01);
  box-shadow: 0 12px 28px rgba(83, 141, 34, 0.45);
}


.hero-right-links .left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}
.open-book-icon {
  opacity: 1 !important;
  transform: none !important;
    padding: 7px;
    border-radius: 4px;
    border: 1px solid #497d1f;
    background: linear-gradient(90deg, var(--dark-green), var(--primary-green));
    color: white;
  display: flex;
  
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.annoucement {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  border: none;
  background: transparent;
  box-shadow: none;
}
 
.hero-right-links a::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: linear-gradient(
    90deg,
    #538d22,
    #6fbf3f
  );
  z-index: -1;
  transition: width 0.35s ease;
}
/* hide icon by default */
.share-icon {
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.25s ease;
}

.hero-right-links a:hover .share-icon {
  opacity: 1;
  transform: translateX(0);
}


/* show icon when link is hovered */
.hero-right-links a:hover i {
  opacity: 1;
  transform: translateX(0);
}

.hero-right-links a:hover::after {
  width: 100%;
}

.hero-right-links a:hover {
  color: #fff;
  transform: translateX(4px);
}
.hero-right-links a strong {
  font-weight: 700;
}

.hero-right-links a:has(strong) {
  border: 1px solid #538d22;
}

/* ===============================
   RIGHT SIDEBAR
================================ */
.daily-sidebar{
  width:300px;
  position:sticky;
  top:110px;
}

/* LINK BOX */
.side-links{
  background:#ffffff;
  border-radius:14px;
  border:1px solid #e5e7eb;
  margin-bottom:18px;
  overflow:hidden;
}

.side-links li{
  padding:13px 16px;
  border-bottom:1px solid #f1f5f9;
  cursor:pointer;
  color:#15803d;
  font-size:14px;
  transition:.2s;
}

.side-links li:last-child{ border-bottom:none; }

.side-links li:hover{
  background:#f0fdf4;
}

.side-links .highlight{
  font-weight:700;
  background:#ecfdf5;
}

/* GENERAL STUDIES BOX */
.gs-box{
  background:#ffffff;
  border-radius:14px;
  border:1px solid #e5e7eb;
  padding:16px;
}

.gs-box h4{
  display:flex;
  align-items:center;
  gap:8px;
  color:#15803d;
  border-bottom:2px solid #22c55e;
  padding-bottom:10px;
  margin-bottom:12px;
}

.gs-box h4 i{
  color:#16a34a;
}

.gs-box ul li{
  padding:8px 0;
  color:#15803d;
  cursor:pointer;
  font-size:14px;
}

.gs-box ul li:hover{
  text-decoration:underline;
}

/* ===============================
   RESPONSIVE
================================ */
@media(max-width:900px){
  .daily-news-page{
    flex-direction:column;
    padding:20px;
  }

  .daily-sidebar{
    width:100%;
    position:static;
  }
}
.daily-subject-sidebar{
  width:320px;
  display:flex;
  flex-direction:column;
  gap:18px;
  position:sticky;
  top:110px;
}

/* SUBJECT BLOCK */
.subject-box{
  background:#fff;
  border-radius:12px;
  /* padding:16px 16px 12px; */
  /* border:1px solid #4d842147; */
}

/* TITLE */
.subject-box h4{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:18px;
  color:var(--primary-green);
  border-bottom:2px solid var(--primary-green);
  padding-bottom:8px;
  margin-bottom:10px;
}

.subject-box h4 i{
  font-size:20px;
}

/* LINKS */
.subject-box ul li{
  padding:9px 0;
  border-bottom:1px solid #e5e7eb;
  font-size:14px;
  color:#2f4f1e;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:8px;
}

.subject-box ul li::before{
  content:"»";
  color:var(--primary-green);
  font-weight:700;
}

.subject-box ul li:last-child{
  border-bottom:none;
}

.subject-box ul li:hover{
  color:var(--primary-green);
}
/* ===== LAYOUT ALIGNMENT ===== */

.daily-news-page{
  align-items:flex-start;
}

/* LEFT MAIN CARD — SAME AS CONTENT SECTIONS */
.daily-main{
  border:1px solid #4d842147;
  
  box-shadow:none;
}

/* RIGHT SIDEBAR — MATCH GS STYLE */

.daily-right-sidebar{
  width:340px;
  display:flex;
  flex-direction:column;
  gap:18px;
  position:sticky;
  top:120px;
}
.daily-subject-sidebar{
  background:#fff;
  border:1px solid #4d842147;
  border-radius:10px;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* each block */

.subject-box{
  border-bottom:1px solid #e6e6e6;
  padding-bottom:10px;
}

.subject-box:last-child{
  border-bottom:none;
}

.subject-box h4{
  color:#2f7d18;
  font-size:17px;
  display:flex;
  align-items:center;
  gap:8px;
  border-bottom:2px solid #2f7d18;
  padding-bottom:6px;
  margin-bottom:8px;
}

.subject-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.subject-box li{
  padding:7px 4px;
  color:#2f7d18;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

.subject-box li::before{
  content:"›";
  color:#2f7d18;
  font-weight:800;
}

.subject-box li:hover{
  background:#f0f8ea;
}
/* =========================
   SUBJECT SIDEBAR ACCORDION
========================= */

.daily-subject-sidebar{
  background:#fff;
  border:1px solid #4d842147;
  border-radius:10px;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* subject box */

.subject-box{
  border-bottom:1px solid #e6e6e6;
  padding-bottom:10px;
}

.subject-box:last-child{
  border-bottom:none;
}

/* title */

.subject-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  font-size:16px;
  font-weight:700;
  color:#2f7d18;
  padding:6px 4px;
}

.subject-title span{
  display:flex;
  align-items:center;
  gap:8px;
}

/* arrow */

.subject-box .arrow{
  font-size:12px;
  transition:transform .3s ease;
}

/* list */

.subject-box ul{
  list-style:none;
  padding:0;
  margin:6px 0 0;
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

/* open */

.subject-box.open ul{
  max-height:600px;
}

.subject-box.open .arrow{
  transform:rotate(180deg);
}

/* list items */

.subject-box li{
  padding:7px 6px;
  color:#2f7d18;
  font-weight:600;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:6px;
}

.subject-box li::before{
  content:"›";
  font-weight:800;
}

.subject-box li:hover{
  background:#f0f8ea;
  border-radius:6px;
}
/* =====================================================
   FOOTER
===================================================== */

.theme-footer {
  position: relative;
  background: black;
  color: #ffffff;
  padding: 90px 40px 30px;
  overflow: hidden;
 
}

/* BIG BACKGROUND BRAND TEXT */
.footer-bg-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 160px;
  font-weight: 900;
  letter-spacing: 6px;
  color: #ffffff21;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* CONTENT LAYER */
.footer-content {
  position: relative;
  z-index: 2;
}

/* =====================================================
   GRID
===================================================== */

.footer-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  margin-bottom: 75px;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* =====================================================
   COLUMNS
===================================================== */

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
}

/* small accent underline */
.footer-col h4::after {
  content: "";
  width: 32px;
  height: 3px;
  background: #538d22;
  display: block;
  margin-top: 6px;
  border-radius: 4px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.78;
  line-height: 1.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.footer-col ul li:hover {
  opacity: 1;
  transform: translateX(4px);
}

/* LOGO */


/* =====================================================
   SOCIAL
===================================================== */

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #538d22;
  transform: translateY(-3px);
}

/* =====================================================
   APP DOWNLOAD
===================================================== */

.footer-app p {
  font-size: 14px;
  margin-bottom: 10px;
  opacity: 0.85;
}

.footer-app .app-buttons {
  display: flex;
  gap: 10px;
}

.footer-app img {
  height: 40px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.footer-app img:hover {
  transform: scale(1.05);
}

/* =====================================================
   BOTTOM BAR
===================================================== */

.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

/* POLICY LINKS */
.footer-policy {
  display: flex;
  gap: 16px;
}

.footer-policy a {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-policy a:hover {
  color: #ffffff;
}

/* ===============================
   PAGE LAYOUT FIX — QUIZ + SIDEBAR
================================ */

.daily-news-page{
  display:flex !important;
  align-items:flex-start;
  gap:24px;
}

.daily-main{
  flex:1;
  min-width:0;
}

.daily-right-sidebar{
  width:340px;
  flex-shrink:0;
  position:sticky;
  top:120px;
}

/* =========================
   MOBILE NAV OVERLAY
========================= */

.mobile-nav{
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 99999;
  padding: 22px 20px 30px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}

/* show state */
.mobile-nav.show{
  transform: translateX(0);
}

/* close button */
.mobile-close{
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 34px;
  background: none;
  border: none;
  color: #1f3d12;
  cursor: pointer;
}

/* =========================
   MOBILE MENU LIST
========================= */

.mobile-menu{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-menu > li > a,
.mobile-item > span{
  font-weight: 800;
  font-size: 16px;
  color: #1f3d12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 6px;
  border-bottom: 1px solid #e5e7eb;
}

/* arrow rotate */
.mobile-item > span i{
  transition: transform .3s ease;
}

.mobile-item.open > span i{
  transform: rotate(180deg);
}

/* =========================
   MOBILE SUBMENU
========================= */

.mobile-item ul{
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 6px 0 12px 14px;
}

.mobile-item.open ul{
  display: flex;
}

.mobile-item ul li a{
  font-size: 14px;
  font-weight: 600;
  color: #2f7d18;
  padding: 8px 6px;
  border-radius: 6px;
  transition: .2s;
}

.mobile-item ul li a:hover{
  background: #f0f8ea;
}

/* =========================
   HAMBURGER BUTTON
========================= */

.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span{
  width: 24px;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
}
/* =========================
   HAMBURGER BUTTON
========================= */

.hamburger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100001;
}

.hamburger span{
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: .3s ease;
}


/* =========================
   MOBILE NAV OVERLAY
========================= */

.mobile-nav{
  position: fixed;
  inset: 0;
  background: #ffffff;
  z-index: 100000;
  padding: 22px 20px 40px;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-y: auto;
}

/* show state */
.mobile-nav.show{
  transform: translateX(0);
}


/* =========================
   CLOSE BUTTON
========================= */

.mobile-close{
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 34px;
  background: none;
  border: none;
  color: #1f3d12;
  cursor: pointer;
}


/* =========================
   MOBILE MENU LIST
========================= */

.mobile-menu{
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}


/* top level items */

.mobile-menu > li > a,
.mobile-item > span{
  font-weight: 800;
  font-size: 16px;
  color: #1f3d12;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 14px 6px;
  border-bottom: 1px solid #e5e7eb;
}


/* =========================
   DROPDOWN ARROW
========================= */

.mobile-item > span i{
  transition: transform .3s ease;
  font-size: 12px;
}

.mobile-item.open > span i{
  transform: rotate(180deg);
}


/* =========================
   SUB MENU
========================= */

.mobile-item ul{
  display: none;
  flex-direction: column;
  padding: 8px 0 12px 14px;
  background: #f8fafc;
}

.mobile-item.open ul{
  display: flex;
}


/* submenu items */

.mobile-item ul li{
  padding: 0;
}

.mobile-item ul li a,
.mobile-item ul li{
  font-size: 14px;
  font-weight: 600;
  color: #2f7d18;
  padding: 10px 10px;
  border-radius: 8px;
  transition: .2s;
  cursor: pointer;
}

.mobile-item ul li:hover{
  background: #e9f5df;
}


/* =========================
   SHOW HAMBURGER ON MOBILE
========================= */

@media(max-width: 992px){

  .hamburger{
    display: flex;
  }

  .main-nav{
    display: none;
  }

  .header-search{
    display: none;
  }
}

   .quiz-progress {
      background: #e9f5df;
      color: #2f7d18;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 12px;
      border: 1px solid rgba(83, 141, 34, 0.35);
      font-size: 13px;
    }

    .intro-old-quiz-btn{
  background: #e9f5df;
      color: #2f7d18;
  border: none;
  padding: 8px 18px;
   border: 1px solid rgba(83, 141, 34, 0.35);
  border-radius: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .25s ease;
  white-space: nowrap;
}

.intro-old-quiz-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(63,125,35,.35);
}

/* =========================
   SHOW ON MOBILE
========================= */

@media(max-width: 992px){

  .hamburger{
    display: flex;
  }
.daily-right-sidebar {
    width: 100%;
  }
  .hero-right-links{
    width: 100%;
    position: static;
    top: auto;
  }
  .daily-subject-sidebar{
    width: 100%;
    position: static;
    top: auto;
  }
}

@media (max-width: 1200px) {
  
 .daily-news-page.container{
  padding: 10px;
 }
  .footer-logo {
  height: 44px;
  margin-bottom: 18px;
  margin-inline: auto;
}
  .footer-grid {
    gap: 36px;
  }
.footer-col h4::after{

    margin-inline: auto;
  }
  .footer-bg-text {
    font-size: 110px;
  }
 
}

/* =========================
   MOBILE FIX
========================= */

@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy {
    justify-content: center;
    flex-wrap: wrap;
  }

.theme-footer {
    padding: 70px 20px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-app .app-buttons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-policy {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bg-text {
    font-size: 80px;
    bottom: -20px;
  }
}
