:root{
    --green-dark:#14532d;
    --green:#1f7a45;
    --green-soft:#dff3e6;
    --green-soft-2:#edf8f1;
    --text:#1f2937;
  }
  
  *{
    box-sizing:border-box;
    font-family:'Montserrat', Arial, Helvetica, sans-serif;
  }
  
  html, body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
  }
  
  body{
    background:#f4f7f3;
  }
  
  .container{
    width:1200px;
    max-width:95%;
    margin:auto;
  }
  
  .top-bar{
    background:linear-gradient(90deg, #14532d, #1f7a45);
    color:#fff;
    font-size:13px;
    padding:6px 0;
  }
  
  .top-bar .right{
    float:right;
  }
  
  .header{
    background:#fff;
    padding:15px 0;
    border-bottom:1px solid rgba(31,122,69,.08);
  }
  
  .header-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
  }
  
  .logo img{
    width:180px;
    height:auto;
  }
  
  .site-title{
    margin-left:auto;
    text-align:right;
  }
  
  .site-title h1{
    margin:0;
    font-size:28px;
    font-weight:700;
    line-height:1.1;
    color:var(--green-dark);
  }
  
  .site-title small{
    display:block;
    margin-top:4px;
    font-size:13px;
    font-weight:400;
    color:#4b6354;
  }
  
  .menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
    border:none;
    background:transparent;
  }
  
  .menu-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.30);
    z-index:1000;
    display:none;
  }
  
  .menu-overlay.active{
    display:block;
  }
  
  .menu a,
  .submenu a,
  .menu-item.single a{
    color:inherit;
    text-decoration:none;
    display:block;
  }
  
  .menu{
    width:100%;
    background:linear-gradient(90deg, #1f7a45, #2f9e5b);
    display:flex;
    justify-content:center;
  }
  
  .menu-close{
    display:none;
  }
  
  .menu-list{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
    justify-content:center;
  }
  
  .menu-item.single{
    padding:15px 18px;
    color:#fff;
    font-size:16px;
    font-weight:600;
  }
  
  .menu-title{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:15px 18px;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
  }
  
  .menu-title .icon{
    display:none;
  }
  
  .submenu{
    display:none;
  }
  
  @media (min-width: 769px){
    .menu-item{
      position:relative;
    }
  
    .menu-item:hover > .submenu{
      display:block;
    }
  
    .submenu{
      position:absolute;
      top:100%;
      left:0;
      min-width:220px;
      background:#fff;
      border-radius:10px;
      padding:10px 0;
      margin:0;
      list-style:none;
      box-shadow:0 18px 40px rgba(0,0,0,0.18);
      z-index:9999;
    }
  
    .submenu li a{
      padding:12px 14px;
      color:#000;
      font-weight:600;
      white-space:nowrap;
    }
  
    .submenu li a:hover{
      background:rgba(31,122,69,0.10);
    }
  }
  
  .main{
    display:flex;
    margin-top:20px;
  }
  
  .content{ width:70%; }
  .sidebar{ width:30%; padding-left:20px; }
  
  .slider{
    position:relative;
    height:420px;
    overflow:hidden;
    border-radius:10px;
    background:#000;
  }
  
  .slider > img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:none;
  }
  
  .slider > img.active{
    display:block;
  }
  
  .slider-thumbs{
    margin-top:10px;
    display:flex;
    gap:8px;
    overflow-x:auto;
    padding:6px 2px;
  }
  
  .slider-thumbs .thumb{
    border:none;
    padding:0;
    cursor:pointer;
    background:transparent;
    border-radius:6px;
    overflow:hidden;
    opacity:.65;
  }
  
  .slider-thumbs .thumb img{
    display:block;
    width:110px;
    height:58px;
    object-fit:cover;
  }
  
  .slider-thumbs .thumb.active{
    opacity:1;
    outline:2px solid var(--green);
  }
  
  .slider-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:44px;
    height:44px;
    border:none;
    cursor:pointer;
    border-radius:999px;
    background:rgba(255,255,255,0.25);
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:5;
  }
  
  .slider-nav.prev{ left:12px; }
  .slider-nav.next{ right:12px; }
  
  .section-title{
    text-align:center;
    margin:30px 0 18px;
    font-size:26px;
    font-weight:800;
  }
  
  .glass-writers{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin-bottom:30px;
  }
  
  .writer-glass{
    background:rgba(255,255,255,0.75);
    border-radius:22px;
    padding:22px;
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    position:relative;
  }
  
  .writer-glass::before{
    content:"";
    position:absolute;
    top:0; left:0; right:0;
    height:5px;
    background:linear-gradient(90deg, #14532d, #5fb87f);
    border-radius:22px 22px 0 0;
  }
  
  .writer-badge{
    display:inline-block;
    font-size:12px;
    font-weight:700;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(31,122,69,.10);
    color:var(--green-dark);
    margin-bottom:8px;
  }
  
  .writer-name{
    margin:6px 0 0;
    font-size:18px;
    font-weight:800;
  }
  
  .writer-text{
    margin:14px 0 0;
    font-size:14px;
    line-height:1.75;
    opacity:.9;
  }
  
  .box{
    background:#fff;
    padding:15px;
    margin-bottom:15px;
    border-radius:12px;
    box-shadow:0 10px 24px rgba(0,0,0,.06);
  }
  
  .join-guide-box {
    text-align:center;
    padding:20px;
  }
  
  .join-guide-btn {
    display:block;
    background:linear-gradient(135deg, #14532d, #1f7a45);
    color:#fff;
    text-decoration:none;
    padding:14px 18px;
    border-radius:10px;
    font-weight:600;
    font-size:15px;
  }
  
  .prayer-times{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-top:10px;
  }
  
  .prayer-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:var(--green-soft-2);
    padding:12px 14px;
    border-radius:10px;
  }
  
  .prayer-row strong{
    color:var(--green-dark);
  }
  
  .social{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
  }
  
  .social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    padding:10px 14px;
    border-radius:10px;
    background:var(--green-soft);
    color:var(--green-dark);
    font-weight:700;
  }
  
  section.hero{
    width:100%;
    background:linear-gradient(135deg, #14532d, #2f9e5b);
    padding:60px 0;
    margin-top:30px;
    overflow:hidden;
  }
  
  section.hero .hero-content{
    width:1200px;
    max-width:100%;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
  }
  
  section.hero .hero-text{
    flex:1;
    color:#fff;
  }
  
  section.hero .hero-image{
    flex:1;
    text-align:right;
  }
  
  section.hero .hero-image img{
    width:100%;
    max-width:520px;
    height:auto;
    display:block;
    margin-left:auto;
    border-radius:10px;
  }
  
  .faq{
    width:1200px;
    max-width:100%;
    margin:40px auto;
    padding:0 20px;
  }
  
  .faq-item{
    background:#fff;
    border-radius:10px;
    margin-bottom:14px;
    overflow:hidden;
  }
  
  .faq-header{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    padding:18px 18px;
    background:#fff;
    border:none;
    cursor:pointer;
    text-align:left;
  }
  
  .faq-title{
    font-size:26px;
    font-weight:800;
    color:var(--green-dark);
  }
  
  .faq-icon{
    font-size:28px;
    font-weight:700;
    color:var(--green-dark);
  }
  
  .faq-body{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
  }
  
  .faq-body-inner{
    padding:0 18px 18px 18px;
    color:#333;
    line-height:1.6;
  }
  
  .faq-item.active .faq-title,
  .faq-item.active .faq-icon{
    color:var(--green);
  }
  
  .news-section{
    background:#f4f7f3;
    padding:55px 0 45px;
  }
  
  .news-container{
    width:1200px;
    max-width:100%;
    margin:0 auto;
    padding:0 20px;
  }
  
  .news-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:28px;
    margin-bottom:22px;
  }
  
  .news-kicker{
    font-size:12px;
    letter-spacing:.22em;
    font-weight:800;
    color:var(--green);
    margin-bottom:8px;
    text-transform:uppercase;
  }
  
  .news-title{
    margin:0;
    font-size:44px;
    line-height:1.05;
    color:#222;
    font-weight:800;
  }
  
  .news-desc{
    margin:8px 0 0 0;
    color:#666;
    font-size:14px;
    line-height:1.6;
    max-width:430px;
  }
  
  .news-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:18px;
    margin-top:22px;
  }
  
  .news-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    box-shadow:0 12px 30px rgba(0,0,0,0.08);
    display:flex;
    flex-direction:column;
  }
  
  .news-img{
    height:160px;
    overflow:hidden;
  }
  
  .news-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
  }
  
  .news-body{
    padding:16px 16px 18px;
  }
  
  .news-meta{
    font-size:12px;
    color:#777;
    display:flex;
    align-items:center;
    gap:8px;
  }
  
  .news-tag{
    font-weight:700;
    color:var(--green-dark);
  }
  
  .news-card-title{
    margin:10px 0;
    font-size:18px;
    line-height:1.2;
    color:#222;
    font-weight:800;
  }
  
  .news-excerpt{
    margin:0;
    color:#666;
    font-size:13px;
    line-height:1.6;
  }
  
  .news-cta{
    margin-top:24px;
    text-align:center;
  }
  
  .news-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 24px;
    background:var(--green);
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:800;
  }
  
  .news-subtext{
    margin-top:10px;
    font-size:12px;
    color:#777;
  }
  
  .etts-footer{
    background:linear-gradient(160deg, #0f1c14, #17261d);
    color:#fff;
    padding:60px 0 30px;
    margin-top:30px;
  }
  
  .etts-footer__container{
    width:1200px;
    max-width:100%;
    margin:0 auto;
    padding:0 20px;
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
  }
  
  .etts-footer__columns{
    display:flex;
    gap:80px;
    flex-wrap:wrap;
  }
  
  .etts-footer__col{
    min-width:180px;
  }
  
  .etts-footer__title{
    font-size:16px;
    margin:0 0 14px 0;
    color:#ffffff;
    font-weight:700;
  }
  
  .etts-footer__link{
    display:block;
    margin:0 0 10px 0;
    font-size:14px;
    color:#b9bcc7;
    text-decoration:none;
  }
  
  .etts-footer__card{
    width:300px;
    max-width:100%;
    background:rgba(255,255,255,0.07);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:16px;
    padding:22px;
  }
  
  .etts-footer__cardTitle{
    margin:0 0 14px 0;
    font-size:16px;
    font-weight:800;
    color:#ffffff;
  }
  
  .etts-footer__cardRow{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    padding:10px 0;
    border-bottom:1px solid rgba(255,255,255,0.10);
  }
  
  .etts-footer__cardLabel{
    font-size:12px;
    color:#b9bcc7;
  }
  
  .etts-footer__cardValue{
    font-size:14px;
    color:#e8e9ee;
    text-decoration:none;
  }
  
  .etts-footer__address{
    margin:12px 0 0 0;
    font-size:13px;
    color:#b9bcc7;
    line-height:1.55;
  }
  
  .etts-footer__bottom{
    width:1200px;
    max-width:100%;
    margin:45px auto 0;
    padding:22px 20px 0;
    border-top:1px solid rgba(255,255,255,0.10);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:18px;
  }
  
  .etts-footer__logo{
    width:95px;
    height:auto;
  }
  
  .etts-footer__copy{
    font-size:13px;
    color:#b9bcc7;
    text-align:center;
    flex:1;
  }
  
  .etts-footer__social{
    display:flex;
    align-items:center;
    gap:14px;
  }
  
  .etts-footer__socialLink{
    color:#b9bcc7;
    font-size:18px;
    text-decoration:none;
  }
  
  @media (max-width:768px){
    .container{ width:95%; }
    .site-title{ display:none !important; }
    .menu-toggle{ display:block; }
    .main{ flex-direction:column; }
    .content, .sidebar{ width:100%; padding-left:0; }
    .sidebar{ margin-top:25px; }
    .slider{ height:220px; }
    .glass-writers{ grid-template-columns:1fr; }
    .news-grid{ grid-template-columns:1fr; }
    .news-head{ flex-direction:column; }
    .news-title{ font-size:28px; }
    section.hero .hero-content{ width:95%; flex-direction:column; text-align:center; }
    .etts-footer__container,
    .etts-footer__bottom{
      flex-direction:column;
      text-align:center;
    }
    .etts-footer__columns{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
  
    .menu{
      position:fixed;
      top:0;
      left:0;
      width:80%;
      height:100vh;
      background:linear-gradient(180deg, #14532d, #1f7a45);
      z-index:1001;
      transform:translateX(-100%);
      transition:transform .4s ease;
      display:block;
    }
  
    .menu.active{ transform:translateX(0); }
  
    .menu-close{
      display:block;
      position:absolute;
      top:14px;
      right:14px;
      font-size:26px;
      color:#fff;
      border:none;
      background:transparent;
      cursor:pointer;
    }
  
    .menu-list{
      display:block;
      padding:60px 0 0 0;
    }
  
    .menu-item{
      border-bottom:1px solid rgba(255,255,255,.18);
    }
  
    .menu-item.single{
      padding:18px;
      text-align:left;
      font-size:18px;
      color:#fff;
    }
  
    .menu-title{
      justify-content:space-between;
      padding:18px;
      font-size:18px;
      text-align:left;
    }
  
    .menu-title .icon{
      display:inline-block;
      font-size:22px;
      width:28px;
      text-align:center;
      user-select:none;
    }
  
    .submenu{
      display:block;
      list-style:none;
      margin:0;
      padding:0;
      max-height:0;
      overflow:hidden;
      transition:max-height .35s ease;
      background:rgba(0,0,0,.12);
      position:static;
      box-shadow:none;
    }
  
    .menu-item.open .submenu{
      max-height:500px;
    }
  
    .submenu li a{
      padding:14px 18px;
      color:rgba(255,255,255,.92);
      font-size:15px;
    }
  }
  /* =======================
   DERNEK BAŞKANI SAYFASI
======================= */
.president-page{
  padding: 26px 0 40px;
}

.president-card{
  display:grid;
  grid-template-columns: 380px 1fr;
  gap:24px;
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

.president-media{
  position:relative;
}

.president-media img{
  width:100%;
  height:100%;
  min-height:420px;
  max-height:460px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

.president-info{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.president-badge{
  display:inline-block;
  align-self:flex-start;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.president-info h3{
  margin:0 0 12px 0;
  font-size:34px;
  color:var(--green-dark);
  line-height:1.1;
}

.president-intro{
  margin:0 0 18px 0;
  color:#55625a;
  line-height:1.8;
  font-size:15px;
}

.president-contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:8px;
}

.president-contact-item{
  background:var(--green-soft-2);
  border:1px solid rgba(31,122,69,.08);
  border-radius:14px;
  padding:16px;
}

.president-contact-item .label{
  display:block;
  font-size:12px;
  font-weight:800;
  color:var(--green-dark);
  margin-bottom:8px;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.president-contact-item a{
  color:#1f2937;
  text-decoration:none;
  font-weight:700;
}

.president-contact-item p{
  margin:0;
  color:#334155;
  line-height:1.7;
  font-size:14px;
}

.president-bio h3{
  margin:0 0 16px 0;
  color:var(--green-dark);
  font-size:24px;
}

.president-bio p{
  margin:0 0 16px 0;
  color:#374151;
  line-height:1.85;
  font-size:15px;
}

@media (max-width: 900px){
  .president-card{
    grid-template-columns:1fr;
  }

  .president-media img{
    min-height:280px;
    max-height:360px;
  }

  .president-contact-grid{
    grid-template-columns:1fr;
  }

  .president-info h3{
    font-size:28px;
  }
}
/* =======================
   HAKKIMIZDA SAYFASI
======================= */
.about-page{
  padding:26px 0 40px;
}

.about-hero-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:24px;
  align-items:center;
  background:#fff;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,0.08);
  margin-bottom:20px;
}

.about-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.about-hero-text h3{
  margin:0 0 14px 0;
  font-size:32px;
  line-height:1.15;
  color:var(--green-dark);
}

.about-hero-text p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

.about-hero-image img{
  width:100%;
  height:100%;
  min-height:320px;
  max-height:420px;
  object-fit:cover;
  border-radius:16px;
  display:block;
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.about-grid-3{
  grid-template-columns: repeat(3, 1fr);
}

.about-list{
  margin:0;
  padding-left:18px;
  color:#374151;
  line-height:1.9;
}

.about-list li{
  margin-bottom:8px;
}

.about-mini-card{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-top:4px solid #1f7a45;
}

.about-mini-card h4{
  margin:0 0 10px 0;
  color:var(--green-dark);
  font-size:20px;
}

.about-mini-card p{
  margin:0;
  color:#4b5563;
  line-height:1.75;
  font-size:14px;
}

.about-contact-card{
  margin-top:8px;
}

@media (max-width: 950px){
  .about-hero-card{
    grid-template-columns:1fr;
  }

  .about-grid,
  .about-grid-3{
    grid-template-columns:1fr;
  }

  .about-hero-text h3{
    font-size:26px;
  }

  .about-hero-image img{
    min-height:240px;
    max-height:320px;
  }
}
/* =======================
   KÜNYE SAYFASI
======================= */
.kunye-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
  margin-bottom:20px;
}

.kunye-card h3{
  margin:0 0 18px 0;
  color:var(--green-dark);
  font-size:24px;
}

.kunye-row{
  display:grid;
  grid-template-columns: 160px 1fr;
  gap:16px;
  padding:14px 0;
  border-bottom:1px solid rgba(0,0,0,.07);
}

.kunye-row:last-child{
  border-bottom:none;
}

.kunye-label{
  font-size:13px;
  font-weight:800;
  color:var(--green-dark);
  letter-spacing:.03em;
  text-transform:uppercase;
}

.kunye-value{
  color:#374151;
  line-height:1.75;
  font-size:15px;
}

.kunye-value a{
  color:var(--green);
  text-decoration:none;
  font-weight:700;
}

.kunye-note h3{
  margin:0 0 14px 0;
  color:var(--green-dark);
  font-size:22px;
}

.kunye-note p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

@media (max-width: 900px){
  .kunye-grid{
    grid-template-columns:1fr;
  }

  .kunye-row{
    grid-template-columns:1fr;
    gap:6px;
  }
}
/* =======================
   GENÇLİK KOMİSYONU
======================= */

.youth-page{
  padding:26px 0 40px;
}

/* HERO */
.youth-hero{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  background:#fff;
  border-radius:18px;
  padding:24px;
  margin-bottom:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.youth-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.youth-text h3{
  font-size:32px;
  margin-bottom:12px;
  color:var(--green-dark);
}

.youth-text p{
  color:#4b5563;
  line-height:1.8;
}

.youth-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:14px;
}

/* FAALİYET KARTLARI */
.youth-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:30px;
}

.youth-card{
  background:#fff;
  padding:20px;
  border-radius:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-top:4px solid #1f7a45;
}

.youth-card h4{
  margin-bottom:10px;
  color:var(--green-dark);
}

.youth-card p{
  color:#4b5563;
  font-size:14px;
}

/* GALERİ */
.youth-gallery{
  margin-bottom:30px;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.gallery-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
}

.gallery-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  transition:transform .4s ease;
}

.gallery-card:hover img{
  transform:scale(1.08);
}

.gallery-overlay{
  position:absolute;
  bottom:0;
  width:100%;
  padding:10px;
  background:linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color:#fff;
  font-weight:600;
  font-size:14px;
}

/* CTA */
.youth-cta{
  text-align:center;
  background:#fff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.youth-cta h3{
  color:var(--green-dark);
  margin-bottom:10px;
}

.youth-btn{
  display:inline-block;
  margin-top:12px;
  padding:12px 22px;
  background:#1f7a45;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
}

/* RESPONSIVE */
@media(max-width:900px){
  .youth-hero{
    grid-template-columns:1fr;
  }

  .youth-grid{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:1fr;
  }
}
/* =======================
   ETKİNLİKLER SAYFASI
======================= */
.events-page{
  padding:26px 0 40px;
}

.event-featured{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:30px;
}

.event-featured-image img{
  width:100%;
  height:100%;
  min-height:360px;
  object-fit:cover;
  display:block;
}

.event-featured-content{
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.event-badge{
  display:inline-block;
  align-self:flex-start;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.event-featured-content h3{
  margin:0 0 14px 0;
  font-size:34px;
  line-height:1.15;
  color:var(--green-dark);
}

.event-meta{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:14px;
  color:#475569;
  font-size:14px;
  font-weight:600;
}

.event-featured-content p{
  margin:0 0 18px 0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

.event-info-note{
  margin-top:6px;
  padding:12px 14px;
  border-radius:12px;
  background:rgba(31,122,69,.08);
  color:var(--green-dark);
  font-size:13px;
  line-height:1.7;
  font-weight:600;
}

/* GRID */
.events-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.event-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.event-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.event-card-image img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.event-card-body{
  padding:18px;
}

.event-card-tag{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.event-card-body h4{
  margin:0 0 10px 0;
  font-size:20px;
  line-height:1.3;
  color:#1f2937;
}

.event-card-meta{
  color:#64748b;
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
}

.event-card-body p{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.75;
}

.event-card-note{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.06);
  color:#1f7a45;
  font-size:13px;
  font-weight:700;
}

/* RESPONSIVE */
@media (max-width: 1000px){
  .events-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .event-featured{
    grid-template-columns:1fr;
  }

  .event-featured-content h3{
    font-size:28px;
  }
}

@media (max-width: 700px){
  .events-grid{
    grid-template-columns:1fr;
  }

  .event-featured-content{
    padding:20px;
  }

  .event-featured-content h3{
    font-size:24px;
  }

  .event-meta{
    flex-direction:column;
    gap:6px;
  }
}
/* =======================
   İLETİŞİM SAYFASI
======================= */
.contact-page{
  padding:26px 0 40px;
}

.contact-hero{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:24px;
  margin-bottom:24px;
}

.contact-info-card,
.contact-map-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.contact-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.contact-info-card h3,
.contact-map-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.contact-intro{
  margin:0 0 18px 0;
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

.contact-list{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  background:var(--green-soft-2);
  border:1px solid rgba(31,122,69,.08);
  border-radius:14px;
  padding:14px;
}

.contact-icon{
  width:42px;
  height:42px;
  min-width:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:#fff;
  font-size:20px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
}

.contact-text span{
  display:block;
  margin-bottom:6px;
  font-size:12px;
  font-weight:800;
  color:var(--green-dark);
  text-transform:uppercase;
  letter-spacing:.04em;
}

.contact-text p{
  margin:0;
  color:#374151;
  line-height:1.7;
  font-size:14px;
}

.contact-text a{
  color:var(--green);
  text-decoration:none;
  font-weight:700;
}

.contact-map-placeholder{
  overflow:hidden;
  border-radius:16px;
  margin-top:6px;
}

.contact-map-placeholder img{
  width:100%;
  height:360px;
  object-fit:cover;
  display:block;
}

.contact-map-note{
  margin:12px 0 0 0;
  color:#64748b;
  font-size:14px;
  line-height:1.7;
}

.contact-box-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px;
  margin-bottom:20px;
}

.contact-mini-box{
  background:#fff;
  border-radius:16px;
  padding:20px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-top:4px solid #1f7a45;
}

.contact-mini-box h4{
  margin:0 0 10px 0;
  color:var(--green-dark);
  font-size:20px;
}

.contact-mini-box p{
  margin:0;
  color:#4b5563;
  line-height:1.75;
  font-size:14px;
}

.contact-note-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:24px;
}

.contact-note-card p{
  margin:0;
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

@media (max-width: 950px){
  .contact-hero{
    grid-template-columns:1fr;
  }

  .contact-box-grid{
    grid-template-columns:1fr;
  }

  .contact-info-card h3,
  .contact-map-card h3{
    font-size:24px;
  }

  .contact-map-placeholder img{
    height:260px;
  }
}
/* =======================
   DİNİ GÜNLER VE KANDİLLER
======================= */
.holy-days-page{
  padding:26px 0 40px;
}

.holy-intro-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.holy-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.holy-intro-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.holy-intro-card p{
  margin:0;
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

.calendar-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.month-card{
  background:#fff;
  border-radius:18px;
  padding:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  position:relative;
  overflow:visible;
}

.month-title{
  font-size:20px;
  font-weight:800;
  color:var(--green-dark);
  margin-bottom:14px;
  text-align:center;
}

.calendar-days-head{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:6px;
  margin-bottom:8px;
}

.calendar-days-head span{
  text-align:center;
  font-size:12px;
  font-weight:800;
  color:#64748b;
}

.calendar-days{
  display:grid;
  grid-template-columns:repeat(7, 1fr);
  gap:6px;
}

.day{
  min-height:46px;
  height:46px;
  border-radius:12px;
  background:#f8faf8;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  border:1px solid rgba(0,0,0,.04);
}

.day.empty{
  background:transparent;
  border:none;
}

.day-number{
  font-size:14px;
  font-weight:700;
  color:#334155;
}

.special-day{
  background:linear-gradient(135deg, #1f7a45, #3aa564);
  border:none;
}

.special-day .day-number{
  color:#fff;
}

.special-day-wrap{
  overflow:visible;
  z-index:1;
}

.special-day-wrap.is-open{
  z-index:50;
}

.special-day-trigger{
  width:100%;
  height:100%;
  min-height:46px;
  border:none;
  background:transparent;
  color:#fff;
  cursor:pointer;
  border-radius:12px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0;
  font:inherit;
}

.day-dot{
  position:absolute;
  bottom:6px;
  width:6px;
  height:6px;
  border-radius:50%;
  background:#fff;
}

/* Açılan kutu */
.special-popup{
  display:none;
  position:absolute;
  top:0;
  left:0;
  min-width:260px;
  max-width:320px;
  width:max-content;
  max-height:none;
  background:linear-gradient(135deg, #1f7a45, #30975a);
  color:#fff;
  border-radius:18px;
  box-shadow:0 20px 40px rgba(0,0,0,.22);
  padding:18px 18px 16px;
  z-index:99;
  white-space:normal;
}

.special-day-wrap.is-open .special-popup{
  display:block;
}

.special-popup-close{
  position:absolute;
  top:8px;
  right:8px;
  width:30px;
  height:30px;
  border:none;
  border-radius:10px;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:20px;
  line-height:1;
  cursor:pointer;
}

.special-popup-date{
  font-size:13px;
  font-weight:800;
  line-height:1.5;
  margin-bottom:12px;
  padding-right:28px;
  opacity:.96;
}

.special-popup-title{
  font-size:20px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:8px;
}

.special-popup-text{
  font-size:13px;
  line-height:1.75;
  color:rgba(255,255,255,.97);
}

.special-popup-event + .special-popup-event{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.18);
}

/* Mobil ve tablet */
@media (max-width: 1000px){
  .calendar-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .calendar-grid{
    grid-template-columns:1fr;
  }

  .holy-intro-card h3{
    font-size:24px;
  }

  .special-popup{
    min-width:220px;
    max-width:260px;
    padding:16px 16px 14px;
  }

  .special-popup-title{
    font-size:17px;
  }

  .special-popup-text{
    font-size:12px;
  }
}
/* =======================
   HABER DETAY SAYFASI
======================= */
.news-detail-page{
  padding:26px 0 40px;
}

.news-detail-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.news-detail-image img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.news-detail-content{
  padding:28px;
}

.news-detail-intro{
  margin:0 0 18px 0;
  font-size:18px;
  line-height:1.8;
  color:var(--green-dark);
  font-weight:600;
}

.news-detail-text p{
  margin:0;
  color:#4b5563;
  line-height:1.9;
  font-size:15px;
}

.news-detail-back{
  margin-top:20px;
}

.news-back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 20px;
  background:#1f7a45;
  color:#fff;
  text-decoration:none;
  border-radius:10px;
  font-weight:700;
}

@media (max-width: 768px){
  .news-detail-image img{
    height:260px;
  }

  .news-detail-content{
    padding:20px;
  }

  .news-detail-intro{
    font-size:16px;
  }
}
/* =======================
   ANA SAYFA SAĞ SIDEBAR EK KARTLAR
======================= */
.sidebar-link-card{
  padding:14px;
}

.sidebar-media-link{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
  width:100%;
}

.sidebar-media-thumb{
  width:82px;
  min-width:82px;
  height:82px;
  border-radius:14px;
  overflow:hidden;
  background:#eef5f0;
  border:1px solid rgba(31,122,69,.08);
}

.sidebar-media-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.sidebar-media-text{
  flex:1;
  min-width:0;
}

.sidebar-media-text span{
  display:block;
  color:var(--green-dark);
  font-weight:800;
  line-height:1.45;
  font-size:16px;
  word-break:break-word;
}

.sidebar-links-box h3{
  margin-bottom:14px;
}

.sidebar-simple-link{
  display:block;
  text-decoration:none;
  background:var(--green-soft-2);
  color:var(--green-dark);
  font-weight:700;
  padding:14px 16px;
  border-radius:12px;
  margin-bottom:12px;
  border:1px solid rgba(31,122,69,.08);
  transition:.25s ease;
}

.sidebar-simple-link:last-child{
  margin-bottom:0;
}

.sidebar-simple-link:hover,
.sidebar-media-link:hover .sidebar-media-text span{
  opacity:.9;
}

@media (max-width:768px){
  .sidebar-media-link{
    align-items:center;
  }

  .sidebar-media-thumb{
    width:74px;
    min-width:74px;
    height:74px;
  }

  .sidebar-media-text span{
    font-size:15px;
  }
}/* =======================
   GÜNÜN AYETİ
======================= */
.ayet-section{
  margin:35px 0;
}

.ayet-card{
  background:linear-gradient(135deg, #1f7a45, #2e9d5b);
  border-radius:18px;
  padding:28px;
  color:#fff;
  box-shadow:0 18px 45px rgba(0,0,0,.15);
  position:relative;
  overflow:hidden;
}

/* hafif ışık efekti */
.ayet-card::after{
  content:"";
  position:absolute;
  top:-40%;
  left:-40%;
  width:200%;
  height:200%;
  background:radial-gradient(circle, rgba(255,255,255,.08), transparent);
}

/* başlık */
.ayet-header{
  font-size:18px;
  font-weight:800;
  margin-bottom:18px;
}

/* arapça */
.ayet-arapca{
  font-size:26px;
  line-height:1.9;
  text-align:right;
  font-weight:600;
  margin-bottom:18px;
  direction:rtl;
}

/* meal */
.ayet-meal{
  font-size:15px;
  line-height:1.7;
  margin-bottom:10px;
}

/* kaynak */
.ayet-kaynak{
  font-size:13px;
  opacity:.85;
}

/* mobil */
@media (max-width:768px){
  .ayet-arapca{
    font-size:20px;
  }
}
/* =======================
   DERNEK ÜYELERİMİZ
======================= */
.members-page{
  padding:26px 0 40px;
}

.members-intro-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.members-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.members-intro-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.members-intro-card p{
  margin:0;
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

.members-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.member-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-top:4px solid #1f7a45;
  transition:transform .25s ease, box-shadow .25s ease;
}

.member-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.member-role{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.member-name{
  margin:0 0 10px 0;
  font-size:24px;
  line-height:1.2;
  color:#1f2937;
  font-weight:800;
}

.member-text{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.8;
}

@media (max-width: 1000px){
  .members-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .members-grid{
    grid-template-columns:1fr;
  }

  .members-intro-card h3{
    font-size:24px;
  }

  .member-name{
    font-size:21px;
  }
}
/* =======================
   VEFAT EDEN DERNEK ÜYELERİMİZ
======================= */
.memorial-page{
  padding:26px 0 40px;
}

.memorial-intro-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
  border-left:4px solid #1f7a45;
}

.memorial-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.memorial-intro-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.memorial-intro-card p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

.memorial-list{
  background:#fff;
  border-radius:20px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  overflow:hidden;
  margin-bottom:22px;
}

.memorial-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:20px 24px;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.memorial-row:last-child{
  border-bottom:none;
}

.memorial-main{
  flex:1;
}

.memorial-name{
  margin:0 0 6px 0;
  font-size:22px;
  line-height:1.2;
  color:#1f2937;
  font-weight:800;
}

.memorial-role{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.7;
}

.memorial-date-wrap{
  min-width:180px;
  text-align:right;
}

.memorial-date-label{
  display:block;
  font-size:12px;
  font-weight:800;
  color:var(--green-dark);
  text-transform:uppercase;
  letter-spacing:.04em;
  margin-bottom:6px;
}

.memorial-date{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:13px;
  font-weight:700;
}

.memorial-note-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:24px;
}

.memorial-note-card p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

@media (max-width: 768px){
  .memorial-intro-card h3{
    font-size:24px;
  }

  .memorial-row{
    flex-direction:column;
    align-items:flex-start;
  }

  .memorial-date-wrap{
    min-width:0;
    text-align:left;
  }

  .memorial-name{
    font-size:20px;
  }
}
/* =======================
   ESKİ BAŞKANLARIMIZ
======================= */
.former-presidents-page{
  padding:26px 0 40px;
}

.former-presidents-intro{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.former-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.former-presidents-intro h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.former-presidents-intro p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

.former-presidents-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:20px;
}

.former-president-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  display:flex;
  gap:0;
  min-height:220px;
  transition:transform .25s ease, box-shadow .25s ease;
}

.former-president-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.former-president-photo{
  width:180px;
  min-width:180px;
  background:#eef4ef;
}

.former-president-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.former-president-content{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.former-president-period{
  display:inline-block;
  align-self:flex-start;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.former-president-content h3{
  margin:0 0 10px 0;
  font-size:24px;
  line-height:1.2;
  color:#1f2937;
  font-weight:800;
}

.former-president-content p{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.8;
}

@media (max-width: 950px){
  .former-presidents-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 700px){
  .former-presidents-intro h3{
    font-size:24px;
  }

  .former-president-card{
    flex-direction:column;
  }

  .former-president-photo{
    width:100%;
    min-width:0;
    height:260px;
  }

  .former-president-content h3{
    font-size:22px;
  }
}/* =======================
   DERNEK ÜYELERİMİZ Revize
======================= */
.members-page{
  padding:26px 0 40px;
}

.members-intro-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.members-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.members-intro-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.members-intro-card p{
  margin:0;
  color:#4b5563;
  line-height:1.8;
  font-size:15px;
}

.members-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.member-card{
  background:#fff;
  border-radius:18px;
  padding:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  border-top:4px solid #1f7a45;
  transition:transform .25s ease, box-shadow .25s ease;
}

.member-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.member-role{
  display:inline-block;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:14px;
}

.member-name{
  margin:0 0 14px 0;
  font-size:24px;
  line-height:1.2;
  color:#1f2937;
  font-weight:800;
}

.member-meta{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:16px;
}

.member-meta-item{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  padding:10px 12px;
  border-radius:12px;
  background:#f7faf8;
  border:1px solid rgba(31,122,69,.07);
}

.member-meta-label{
  font-size:12px;
  font-weight:800;
  color:var(--green-dark);
  text-transform:uppercase;
  letter-spacing:.03em;
}

.member-meta-value{
  font-size:14px;
  font-weight:700;
  color:#374151;
  text-align:right;
}

.member-text{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.8;
}

@media (max-width: 1000px){
  .members-grid{
    grid-template-columns:repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .members-grid{
    grid-template-columns:1fr;
  }

  .members-intro-card h3{
    font-size:24px;
  }

  .member-name{
    font-size:21px;
  }
}
/* =======================
   KERMESLERİMİZ
======================= */
.kermes-page{
  padding:26px 0 40px;
}

.kermes-intro-card{
  background:#fff;
  border-radius:20px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
  margin-bottom:24px;
}

.kermes-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
  margin-bottom:12px;
}

.kermes-intro-card h3{
  margin:0 0 12px 0;
  color:var(--green-dark);
  font-size:30px;
}

.kermes-intro-card p{
  margin:0;
  color:#4b5563;
  line-height:1.85;
  font-size:15px;
}

.kermes-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:22px;
}

.kermes-card{
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}

.kermes-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(0,0,0,.10);
}

.kermes-image img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.kermes-body{
  padding:22px;
}

.kermes-date{
  display:inline-block;
  margin-bottom:12px;
  padding:7px 12px;
  border-radius:999px;
  background:rgba(31,122,69,.10);
  color:var(--green-dark);
  font-size:12px;
  font-weight:800;
}

.kermes-title{
  margin:0 0 12px 0;
  font-size:24px;
  line-height:1.2;
  color:#1f2937;
  font-weight:800;
}

.kermes-text{
  margin:0;
  color:#4b5563;
  font-size:14px;
  line-height:1.85;
}

@media (max-width: 900px){
  .kermes-grid{
    grid-template-columns:1fr;
  }

  .kermes-intro-card h3{
    font-size:24px;
  }

  .kermes-title{
    font-size:21px;
  }

  .kermes-image img{
    height:220px;
  }
}