:root {
  --green-dark: #003f2b;
  --green: #007a3d;
  --green-mid: #007a3d;
  --green-2: #0a9b58;
  --light-green: #9fdc4b;
  --green-accent: #9fdc4b;
  --soft-green: #effaf3;
  --green-white: #f8fffb;
  --gold: #d7a83f;
  --text: #111827;
  --text-dark: #111827;
  --muted: #6b7280;
  --text-muted: #6b7280;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  --radius: 18px;
}

/* ========================================= */
/* RESET */
/* ========================================= */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #ffffff;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: min(1160px, 92%);
  margin: auto;
}

/* ========================================= */
/* TOP BAR */
/* ========================================= */

.topbar {
  background: var(--green-dark);
  color: #eafff2;
  font-size: 13px;
}

.topbar .container {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.topbar span {
  opacity: 0.95;
  white-space: nowrap;
}

.topbar a {
  color: #eafff2;
}
/* ========================================= */
/* NAVBAR */
/* ========================================= */

nav{
  width:100%;
  background:#fff;
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav-inner{
  width:min(1200px,92%);
  margin:auto;
  height:90px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

/* ========================================= */
/* LOGO */
/* ========================================= */

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  flex-shrink:0;
}

.logo-circle{
  width:58px;
  height:58px;
  flex-shrink:0;
}

.logo-circle img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.logo-text{
  line-height:1.1;
}

.brand{
  font-size:28px;
  font-weight:800;
  color:#003f2b;
}

.sub{
  font-size:15px;
  color:#666;
  letter-spacing:1px;
}

/* ========================================= */
/* NAV LINKS */
/* ========================================= */

.nav-links{
  display:flex;
  align-items:center;
  gap:28px;
}

.nav-links a{
  color:#111;
  font-size:15px;
  font-weight:600;
  transition:0.3s;
}

.nav-links a:hover{
  color:#007a3d;
}

.nav-links a.active{
  color:#007a3d;
}

/* ========================================= */
/* DONATE BUTTON */
/* ========================================= */

.btn-donate-nav{
  background:#003f2b;
  color:#fff !important;
  padding:14px 22px;
  border-radius:8px;
  font-weight:700;
}

.btn-donate-nav:hover{
  background:#007a3d;
}

/* ========================================= */
/* DROPDOWN */
/* ========================================= */

.dropdown{
  position:relative;
}

.dropdown-btn{
  display:flex;
  align-items:center;
  gap:8px;
  cursor:pointer;
  font-weight:600;
}

.dropdown-menu{
  position:absolute;
  top:55px;
  left:0;
  width:320px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 15px 40px rgba(0,0,0,0.12);
  padding:12px 0;
  opacity:0;
  visibility:hidden;
  transition:0.3s;
  z-index:999;
  max-height:450px;
  overflow-y:auto;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  top:48px;
}

.dropdown-menu a{
  display:block;
  padding:14px 20px;
  border-bottom:1px solid #f1f1f1;
  font-size:14px;
}

.dropdown-menu a:hover{
  background:#f5fff8;
  color:#007a3d;
}

/* ========================================= */
/* MOBILE TOGGLE */
/* ========================================= */

.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
  color:#003f2b;
}

/* ========================================= */
/* TABLET */
/* ========================================= */

@media(max-width:992px){

  .topbar{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-inner{
    height:80px;
  }

  .nav-links{
    position:fixed;
    top:80px;
    left:-100%;
    width:300px;
    height:calc(100vh - 80px);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    padding:30px 24px;
    transition:0.4s;
    overflow-y:auto;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:999;
  }

  .nav-links.active{
    left:0;
  }

  .nav-links a{
    width:100%;
    padding:8px 0;
  }

  .dropdown{
    width:100%;
  }

  .dropdown-btn{
    width:100%;
    justify-content:space-between;
    padding:8px 0;
  }

  .dropdown-menu{
    position:relative;
    width:100%;
    top:0;
    opacity:1;
    visibility:visible;
    display:none;
    box-shadow:none;
    border:1px solid #eee;
    margin-top:10px;
  }

  .dropdown:hover .dropdown-menu{
    top:0;
  }

  .dropdown:hover .dropdown-menu{
    display:block;
  }

}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media(max-width:600px){

  .nav-inner{
    height:75px;
  }

  .logo-circle{
    width:48px;
    height:48px;
  }

  .brand{
    font-size:20px;
  }

  .sub{
    font-size:11px;
  }

  .nav-links{
    width:100%;
  }

  .btn-donate-nav{
    width:100%;
    text-align:center;
  }

}


/* ========================================= */
/* HERO */
/* ========================================= */

.hero {
  max-height: 540px;
  position: relative;
  color: #fff;
  background:
    linear-gradient(
      90deg,
      rgba(0, 63, 43, 0.95) 0%,
      rgba(0, 63, 43, 0.82) 34%,
      rgba(0, 63, 43, 0.38) 60%,
      rgba(0, 0, 0, 0.15) 100%
    ),
    url("./assets/images/banner1.png") center/cover no-repeat;
  overflow: hidden;
}

.hero .container {
  min-height: 640px;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-content {
  width: min(610px, 100%);
  padding-bottom: 60px;
}

.eyebrow {
  color: var(--light-green);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5.3vw, 66px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -1.8px;
  margin-bottom: 22px;
}

.hero h1 span {
  color: var(--light-green);
}

.hero p {
  max-width: 560px;
  font-size: 16px;
  color: #f5fff7;
  margin-bottom: 34px;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 23px;
  font-size: 13px;
  letter-spacing: 0.2px;
  border-radius: 8px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.primary {
  background: linear-gradient(135deg, var(--light-green), var(--green-2));
  color: white;
  box-shadow: 0 12px 28px rgba(159, 220, 75, 0.28);
}

.btn.outline {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
}

.years-card {
  position: absolute;
  right: 34px;
  bottom: 74px;
  background: rgba(0, 63, 43, 0.92);
  border: 1px solid rgba(159, 220, 75, 0.7);
  border-radius: 18px;
  width: 145px;
  padding: 20px;
  box-shadow: var(--shadow);
}

.years-card strong {
  color: var(--light-green);
  font-size: 36px;
  line-height: 1;
}

.years-card p {
  margin: 4px 0 2px;
  font-size: 13px;
  font-weight: 800;
}

.years-card small {
  color: #d8ffe2;
  font-size: 11px;
}

/* ========================================= */
/* STATS */
/* ========================================= */

.stats-wrap {
  margin-top: -54px;
  position: relative;
  z-index: 4;
}

.stats {
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  padding: 34px 20px;
}

.stat {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-right: 1px solid var(--border);
  min-height: 70px;
}

.stat:last-child {
  border-right: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--green);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat strong {
  font-size: 30px;
  line-height: 1;
  color: #000;
  font-weight: 800;
}

.stat span {
  font-size: 12px;
  color: #111;
  font-weight: 600;
  line-height: 1.25;
  display: block;
  margin-top: 6px;
}

/* ========================================= */
/* GENERAL SECTIONS */
/* ========================================= */

section {
  padding: 72px 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.label,
.section-tag {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 6px;
}

.section-title {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.1;
}

.section-title::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: var(--light-green);
  border-radius: 99px;
  margin-top: 12px;
}

.section-title-line {
  width: 35px;
  height: 3px;
  background: var(--light-green);
  border-radius: 99px;
  margin-top: 12px;
}

.section-copy {
  color: var(--muted);
  max-width: 520px;
  font-size: 15px;
}

.small-btn {
  background: var(--green);
  color: #fff;
  padding: 13px 24px;
  border-radius: 7px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

/* ========================================= */
/* PROGRAMS */
/* ========================================= */

.programs-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 18px;
}

.program-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 18px;
  min-height: 235px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}

.program-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
  border-color: rgba(0, 122, 61, 0.35);
}

.program-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--soft-green);
  display: grid;
  place-items: center;
  font-size: 30px;
  color: var(--green);
}

.program-card h3 {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.program-card p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.learn {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

/* ========================================= */
/* PROJECTS */
/* ========================================= */

.projects {
  background: linear-gradient(#fff, #fbfffd);
  padding-top: 20px;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
  border: 1px solid #eef0ef;
}

.project-card img {
  height: 168px;
  object-fit: cover;
}

.project-content {
  padding: 17px;
}

.project-content h3 {
  font-size: 15px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 7px;
}

.project-content p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.location {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

/* ========================================= */
/* PARTNERS */
/* ========================================= */

.partners-bg {
  background: var(--white);
  padding: 50px 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-inner {
  max-width: 1200px;
  margin: auto;
}

.partners-header-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.partners-title-block {
  min-width: 180px;
}

.partners-logos {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-width: 120px;
  height: 52px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: 0.3px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.partner-logo:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.partner-logo.hasene {
  color: #1a6b3c;
}

.partner-logo.global {
  color: #1e4d7b;
  font-size: 11.5px;
}

.partner-logo.muslim {
  background: #1a3a1a;
  color: #ffd700;
  font-size: 11px;
}

.partner-logo.hidayah {
  color: #2d3d6b;
  font-size: 11px;
}

.partner-logo.act {
  color: #e63f2b;
  font-size: 20px;
  font-weight: 900;
}

/* ========================================= */
/* CTA BANNER */
/* ========================================= */

.cta-banner {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0e3d22 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}

.cta-pattern {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0px,
    rgba(255, 255, 255, 0.03) 2px,
    transparent 2px,
    transparent 20px
  );
}

.cta-inner {
  max-width: 1200px;
  margin: auto;
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.cta-quote {
  color: rgba(255, 255, 255, 0.75);
  font-style: italic;
  font-size: 15px;
  line-height: 1.7;
}

.cta-quote .author {
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: normal;
}

.cta-text-block {
  color: var(--white);
}

.cta-text-block h2 {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-text-block h2 .hl {
  color: var(--green-accent);
}

.cta-text-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.cta-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cta-action-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 14px;
  text-align: center;
  transition: 0.2s;
  cursor: pointer;
}

.cta-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.cta-action-btn i {
  font-size: 24px;
  color: var(--green-accent);
  display: block;
  margin-bottom: 8px;
}

.cta-action-btn span {
  font-size: 13px;
  font-weight: 700;
  display: block;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */

footer {
  background: #003522;
  color: white;
}

.footer-main {
  padding: 52px 0;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.4fr 1.35fr;
  gap: 36px;
}

.footer-col p,
.footer-col li {
  color: #cceada;
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

.socials {
  display: flex;
  gap: 9px;
  margin: 14px 0 18px;
}

.socials span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #0a7f4b;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}

.whatsapp {
  display: inline-flex;
  background: #09a65a;
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0;
  color: #cceada;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (max-width: 1200px) {

  .programs-grid{
    grid-template-columns: repeat(4, 1fr);
  }

  .project-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .partners-header-row{
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .cta-inner{
    grid-template-columns: 1fr;
    text-align: center;
  }

}


/* ========================================= */
/* TABLET */
/* ========================================= */

@media (max-width: 992px){

  .topbar{
    display:none;
  }

  nav{
    position: sticky;
    top:0;
  }

  .menu-toggle{
    display:block;
  }

  .nav-inner{
    height:80px;
  }

  .nav-links{
    position: fixed;
    top:80px;
    left:-100%;
    width:300px;
    height:calc(100vh - 80px);
    background:#fff;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
    padding:30px 24px;
    transition:0.4s ease;
    overflow-y:auto;
    box-shadow:0 10px 30px rgba(0,0,0,0.12);
    z-index:9999;
  }

  .nav-links.active{
    left:0;
  }

  .nav-links a{
    width:100%;
  }

  .dropdown{
    width:100%;
  }

  .dropdown-btn{
    width:100%;
    justify-content:space-between;
  }

  .dropdown-menu{
    position:static;
    width:100%;
    display:none;
    opacity:1;
    visibility:visible;
    box-shadow:none;
    border:1px solid #eee;
    margin-top:10px;
    max-height:300px;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

  .hero{
    min-height:auto;
    padding:110px 0 90px;
    background:
      linear-gradient(rgba(0,63,43,.82), rgba(0,63,43,.82)),
      url("./assets/images/banner1.png") center/cover no-repeat;
  }

  .hero .container{
    min-height:auto;
  }

  .hero-content{
    width:100%;
    max-width:700px;
    text-align:center;
    margin:auto;
    padding-bottom:0;
  }

  .hero p{
    margin:0 auto 30px;
  }

  .hero-actions{
    justify-content:center;
  }

  .years-card{
    display:none;
  }

  .stats{
    grid-template-columns:repeat(2,1fr);
    padding:0;
  }

  .stat{
    padding:24px;
    justify-content:flex-start;
    border-right:none;
    border-bottom:1px solid var(--border);
  }

  .programs-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .project-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-main{
    grid-template-columns:repeat(2,1fr);
  }

}


/* ========================================= */
/* MOBILE */
/* ========================================= */

@media (max-width: 768px){

  section{
    padding:60px 0;
  }

  .container{
    width:92%;
  }

  .hero{
    padding:90px 0 70px;
  }

  .hero h1{
    font-size:42px;
    line-height:1.15;
    letter-spacing:-1px;
  }

  .hero p{
    font-size:15px;
  }

  .hero-actions{
    flex-direction:column;
    width:100%;
  }

  .btn{
    width:100%;
  }

 .stats{
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 14px;
    background: transparent;
    box-shadow: none;
  }

  .stat{
    flex-direction: column;
    text-align: center;
    justify-content: center;
    padding: 18px 12px;
    min-height: 140px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fff;
  }

   .stat-icon{
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .stat strong{
    font-size: 24px;
  }

  .stat span{
    font-size: 11px;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
    gap:16px;
  }

  .section-title{
    font-size:30px;
  }

  .small-btn{
    width:100%;
    text-align:center;
  }

  .programs-grid{
    grid-template-columns:1fr;
  }

  .project-grid{
    grid-template-columns:1fr;
  }

  .project-card img{
    height:220px;
  }

  .partners-bg{
    padding:50px 20px;
  }

  .partners-logos{
    justify-content:center;
  }

  .partner-logo{
    width:100%;
    min-height:60px;
  }

  .cta-banner{
    padding:50px 20px;
  }

  .cta-actions{
    grid-template-columns:1fr 1fr;
  }

  .footer-main{
    grid-template-columns:1fr;
    gap:28px;
  }

  .copyright{
    flex-direction:column;
    text-align:center;
  }

}


/* ========================================= */
/* SMALL MOBILE */
/* ========================================= */

@media (max-width: 480px){

  .nav-inner{
    height:75px;
  }

  .logo{
    gap:10px;
  }

  .logo-circle{
    width:48px;
    height:48px;
  }

  .brand{
    font-size:18px;
  }

  .sub{
    font-size:10px;
    letter-spacing:.5px;
  }

  .hero h1{
    font-size:34px;
  }

  .hero p{
    font-size:14px;
  }

  .eyebrow{
    font-size:11px;
  }

  .stat{
    min-height: 125px;
    padding: 14px 10px;
  }

    .stats{
    grid-template-columns: repeat(2, 1fr);
  }

  .stat strong{
    font-size:22px;
  }

  .cta-text-block h2{
    font-size:28px;
  }

  .cta-actions{
    grid-template-columns:1fr;
  }

  .footer-main{
    padding:45px 0;
  }

  .copyright{
    font-size:11px;
  }

}

/* ========================================= */
/* EVENTS SECTION */
/* ========================================= */

.events-section{
  padding:90px 0;
  background:#f8fffb;
}

.events-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}

.event-card{
  background:#fff;
  border-radius:18px;
  padding:24px;
  display:flex;
  gap:20px;
  border:1px solid #e9f1eb;
  box-shadow:0 8px 24px rgba(0,0,0,.05);
  transition:.3s ease;
}

.event-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 40px rgba(0,0,0,.08);
}

.event-date{
  min-width:82px;
  height:82px;
  background:#003f2b;
  border-radius:16px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  color:#fff;
  flex-shrink:0;
}

.event-date span{
  font-size:30px;
  font-weight:800;
  line-height:1;
}

.event-date small{
  font-size:12px;
  letter-spacing:1px;
  margin-top:4px;
}

.event-content h3{
  font-size:20px;
  margin-bottom:12px;
  color:#003b24;
  line-height:1.3;
}

.event-content p{
  color:#666;
  font-size:14px;
  line-height:1.7;
  margin-bottom:18px;
}

.event-meta{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.event-meta span{
  display:flex;
  align-items:center;
  gap:10px;
  color:#0f9d58;
  font-size:14px;
  font-weight:600;
}

.event-meta i{
  color:#0f9d58;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media(max-width:992px){

  .events-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:768px){

  .events-grid{
    grid-template-columns:1fr;
  }

  .event-card{
    padding:20px;
  }

  .event-content h3{
    font-size:18px;
  }

}

@media(max-width:480px){

  .event-card{
    flex-direction:column;
  }

  .event-date{
    width:82px;
  }

}