
:root{
  --bg:#f4efe4;
  --card:#ffffff;
  --text:#1e2328;
  --muted:#64707d;

  /* Customizer */
  --primary: #1c3f5c;        /* header & main pills */
  --primary-2: #0f2f4a;      /* darker */
  --accent:  #f4b400;        /* floating button */
  --accent-2:#ff6a00;        /* orange pill */
  --cta:#f43f5e;             /* CTA buttons */
  --ring: rgba(15, 47, 74, .20);
}

*{box-sizing:border-box}
html,body{height:100%}
html{overflow-x:hidden}
body{width:100%; min-width:100%;}
.site-header,.site-main,.site-footer{width:100%;}

body{
  margin:0;
  overflow-x:hidden;
  -webkit-text-size-adjust:100%;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background: radial-gradient(1200px 400px at 50% 0%, rgba(28,63,92,.16), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.35), rgba(255,255,255,0)),
              var(--bg);
}
a{color:inherit; text-decoration:none}
img{max-width:100%; height:auto; display:block}
.container{
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
}


.site-header{
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color:#fff;
  position: sticky;
  top:0;
  z-index:50;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.brand .logo{
  width:44px; height:44px;
  border-radius:14px;
  background: rgba(255,255,255,.12);
  display:grid;
  place-items:center;
  overflow:hidden;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}
.brand .title{
  line-height:1.05;
  min-width:0;
}
.brand .title strong{
  font-size:22px;
  letter-spacing:.2px;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand .title span{
  font-size:13px;
  opacity:.9;
  display:block;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.nav-toggle{
  margin-left:auto;
  width:46px;height:46px;
  border-radius:16px;
  border: 2px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.08);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.nav-toggle svg{width:22px;height:22px}
.primary-nav{
  display:none;
  padding: 0 0 14px 0;
}
.primary-nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.primary-nav a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}
.primary-nav a:hover{background: rgba(255,255,255,.16)}
.primary-nav.is-open{display:block}

@media (min-width: 920px){
  .nav-toggle{display:none}
  .primary-nav{
    display:block;
    margin-left:auto;
    padding:0;
  }
  .primary-nav ul{
    flex-direction:row;
    gap:10px;
  }
  .primary-nav a{
    padding:10px 14px;
    background: rgba(255,255,255,.08);
  }
}

main{padding: 18px 0 60px}

.hero{
  margin-top: 18px;
  border-radius: 26px;
  padding: 28px 18px 18px;
  background: linear-gradient(180deg, rgba(28,63,92,.18), rgba(28,63,92,.06));
  border: 1px solid rgba(28,63,92,.18);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
}
.hero h1{
  margin:0 0 18px;
  text-align:center;
  font-size: clamp(26px, 3.3vw, 40px);
  letter-spacing:.2px;
  color: var(--primary-2);
}

/* Hero Slider */
.hero.hero-slider{
  padding: 0;
  overflow: hidden;
  border-radius: 26px;
}
.hero-slides{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(0,0,0,.04);
}
@media (max-width: 640px){
  .hero-slides{ aspect-ratio: 4 / 3; }
}

@media (min-width: 980px){
  /* PC'de slider aşırı büyümesin */
  .hero-slides{
    aspect-ratio: auto;
    height: 360px;
    max-height: 420px;
  }
}

.hero-slide{
  position:absolute;
  inset:0;
  opacity:0;
  transform: scale(1.02);
  transition: opacity .45s ease, transform .45s ease;
}
.hero-slide.is-active{
  opacity:1;
  transform: scale(1);
}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.hero-dots{
  display:flex;
  gap:10px;
  justify-content:center;
  padding: 12px 10px 14px;
}
.hero-dots .dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid rgba(15,47,74,.35);
  background: rgba(255,255,255,.55);
  box-shadow: 0 10px 25px rgba(0,0,0,.06);
}
.hero-dots .dot.is-active{
  width:26px;
  background: rgba(15,47,74,.35);
}
/* Video cards */
.video-card .play-badge{
  position:absolute;
  left:12px;
  bottom:12px;
  width:34px;height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(0,0,0,.45);
  color:#fff;
  font-weight:800;
  border: 1px solid rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}
.video-card .gimg{ position:relative; }

.panel{
  width:min(560px, 100%);
  margin: 0 auto;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
  backdrop-filter: blur(6px);
}
.panel .cta{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  border:0;
  cursor:pointer;
  border-radius: 18px;
  padding: 14px 16px;
  font-weight:800;
  letter-spacing:.2px;
  transition: transform .08s ease, filter .15s ease;
  text-align:center;
}
.btn:active{transform: translateY(1px)}
.btn-primary{
  background: linear-gradient(90deg, var(--cta), color-mix(in srgb, var(--cta) 78%, #ffffff));
  color:#fff;
  box-shadow: 0 14px 30px rgba(244,63,94,.22);
}
.btn-ghost{
  background: rgba(28,63,92,.08);
  color: var(--primary-2);
  border: 1px solid rgba(28,63,92,.20);
}
.small-label{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  color: var(--primary-2);
  font-weight:700;
  opacity:.9;
}
.player{
  background: rgba(255,255,255,.9);
  border: 2px solid rgba(244,63,94,.35);
  border-radius: 18px;
  padding: 10px 12px;
}
.player audio{width:100%}

.section{
  margin-top: 18px;
}
.pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 14px 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 82%, #ffffff), var(--primary));
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}
.pill .left{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.2px;
}
.pill .right{
  opacity:.92;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:8px;
}
.pill.secondary{
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent-2) 82%, #ffffff), var(--accent-2));
}
.pill.purple{
  background: linear-gradient(180deg, color-mix(in srgb, #6d28d9 82%, #ffffff), #5b21b6);
}

.cards{
  margin-top: 14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 920px){
  .cards{grid-template-columns: repeat(2, minmax(0, 1fr)); gap:14px;}
}
.card{
  display:flex;
  align-items:center;
  gap: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 22px;
  padding: 10px 12px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
}
.card:hover{filter: brightness(1.02)}
.thumb{
  width: 62px; height: 62px;
  border-radius: 999px;
  overflow:hidden;
  flex: 0 0 auto;
  box-shadow: 0 10px 26px rgba(0,0,0,.14);
  border: 3px solid rgba(255,255,255,.95);
  background: #fff;
}
.card .meta{
  min-width:0;
}
.card .meta h3{
  margin:0;
  font-size: 16px;
  font-weight:900;
  letter-spacing:.1px;
  /* Mobilde başlıklar yarım görünmesin: 2 satıra kadar kır */
  white-space:normal;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  line-height:1.25;
  max-height:2.5em;
}
.card .meta p{
  margin:4px 0 0;
  font-size: 13px;
  color: var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.post-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 920px){
  .post-grid{grid-template-columns: repeat(2, minmax(0,1fr));}
}
.post-card{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 26px;
  overflow:hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.post-card .img{
  aspect-ratio: 16/9;
  background: rgba(0,0,0,.04);
}
.post-card .img img{width:100%; height:100%; object-fit:cover}
.post-card .body{
  padding: 12px 14px 14px;
}
.post-card .body h3{
  margin:0;
  font-size: 18px;
  font-weight:900;
  letter-spacing:.1px;
}
.post-card .body .line{
  margin-top:6px;
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
  font-weight:700;
}

.single-wrap{
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(255,255,255,.95);
  border-radius: 26px;
  overflow:hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.08);
}
.single-hero{
  aspect-ratio: 16/9;
  background: rgba(0,0,0,.04);
}
.single-hero img{width:100%; height:100%; object-fit:cover}
.single-body{
  padding: 18px 18px 22px;
}
.single-body h1{margin:0 0 8px; font-size: clamp(22px, 2.4vw, 34px)}
.single-body .meta{
  color: var(--muted);
  font-weight:700;
  font-size: 13px;
  margin-bottom: 14px;
}
.single-body .content{
  line-height:1.65;
  font-size: 16px;
}
.single-body .content h2, .single-body .content h3{margin-top: 22px}
.embed{
  margin: 14px 0 18px;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(28,63,92,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
}
.embed iframe{width:100%; aspect-ratio:16/9; border:0; display:block}

.site-footer{
  padding: 28px 0 40px;
  color: rgba(255,255,255,.92);
  background: linear-gradient(180deg, var(--primary-2), #081726);
}
.footer-inner{
  display:flex;
  flex-direction:column;
  gap:10px;
  align-items:center;
  text-align:center;
}
.footer-inner small{opacity:.92}

.backtotop{
  position:fixed;
  right: 18px;
  /* Alttaki radyo bar ile çakışmasın */
  bottom: 92px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: var(--accent);
  border: 0;
  cursor:pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  opacity:0;
  transform: translateY(10px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.backtotop.is-on{
  opacity:1;
  transform: translateY(0);
  pointer-events:auto;
}
.backtotop svg{width:22px;height:22px}

.notice{
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(28,63,92,.08);
  border: 1px solid rgba(28,63,92,.16);
  color: var(--primary-2);
  font-weight: 700;
}

}

/* WordPress basics */
.wp-block-image{margin: 14px 0}
.alignwide{width: 100%}
.alignfull{width:100%; margin-left:0; margin-right:0;}

.content iframe{max-width:100%;}


/* Pill action button (3 dots) */
.pill-action{
  border:0;
  background:rgba(255,255,255,.18);
  color:inherit;
  width:44px;
  height:34px;
  border-radius:999px;
  display:grid;
  place-items:center;
  cursor:pointer;
  transition:transform .15s ease, background .15s ease;
}
.pill-action svg{width:22px;height:22px}
.pill-action:active{transform:scale(.98)}
.pill-action:hover{background:rgba(255,255,255,.26)}

/* Categories collapsible */
.cats-collapsible{
  max-height:none;
}
@media (max-width: 979px){
  .cats-collapsible{
    overflow:hidden;
    max-height:0px;
    transition:max-height .28s ease;
    will-change:max-height;
  }
}

/* Gallery */
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:14px;
  margin-top:14px;
}
@media (max-width: 980px){
  .gallery-grid{grid-template-columns: repeat(2, minmax(0, 1fr)); gap:12px;}
}
.gallery-card{
  background:var(--card);
  border-radius:18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  overflow:hidden;
  border:1px solid rgba(15,47,74,.10);
  display:block;
}
.gallery-card .gimg{position:relative; aspect-ratio: 4 / 3; background:rgba(15,47,74,.06);}
.gallery-card .gimg img{width:100%;height:100%;object-fit:cover;display:block;}
.gallery-card .gph{width:100%;height:100%;display:grid;place-items:center;font-size:28px;color:var(--muted)}
.gallery-card .gmeta{padding:10px 12px}
.gallery-card h3{margin:0;font-size:14px;line-height:1.25;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}


@media (max-width: 480px){
  /* Mobilde Trendler başlıkları yarım görünmesin */
  .card .meta h3{
    -webkit-line-clamp: 3;
    max-height: none;
    font-size: 15px;
  }
}

