/* =====================================================================
   atilimogrenciyurdu.com — "Liora" teması
   Çelik mavisi + krem + şeftali; Fraunces (serif) + DM Sans (gövde)
   Prefiks: lr-  |  Bootstrap yalnızca grid için yüklenir.
   ===================================================================== */

:root {
  --c-steel: #4A6B80;        /* çelik mavisi */
  --c-steel-d: #2E4756;      /* koyu çelik */
  --c-steel-l: #7C9BAE;      /* açık çelik */
  --c-cream: #F6F1E9;        /* krem zemin */
  --c-cream-2: #EFE8DC;      /* ikinci krem */
  --c-peach: #E8A87C;        /* şeftali-kayısı vurgu */
  --c-peach-d: #D98E5E;      /* koyu şeftali (hover) */
  --c-ink: #22333B;          /* metin koyu */
  --c-muted: #5C6B72;        /* ikincil metin */
  --c-line: rgba(46,71,86,.14);

  --ff-display: "Fraunces", Georgia, "Times New Roman", serif;
  --ff-body: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 8px 24px rgba(34,51,59,.08);
  --shadow-md: 0 18px 50px rgba(34,51,59,.16);
  --wrap: 1200px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--ff-body);
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  overflow-x: clip;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--c-steel-d); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-peach-d); }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--c-ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .6rem;
}

.lr-container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

.lr-illus { width: 100%; height: 100%; object-fit: cover; }

.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 2000;
  background: var(--c-ink); color: #fff; padding: .5rem .9rem; border-radius: 8px;
}
.skip-link:focus { left: 12px; }

/* ---- Bölüm başlıkları ---- */
.lr-eyebrow {
  font-family: var(--ff-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--c-peach-d);
  margin: 0 0 .8rem;
}
.lr-section { padding: 84px 0; }
.lr-section-sm { padding: 56px 0; }
.lr-title { font-size: clamp(2rem, 4vw, 3rem); }
.lr-sub { color: var(--c-muted); max-width: 640px; font-size: 1.05rem; }
.lr-center { text-align: center; }
.lr-center .lr-sub { margin-left: auto; margin-right: auto; }

/* ---- Butonlar ---- */
.lr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: all .22s ease; white-space: nowrap; line-height: 1;
}
.lr-btn svg { width: 18px; height: 18px; }
.lr-btn-peach { background: var(--c-peach); color: #3a2417; }
.lr-btn-peach:hover { background: var(--c-peach-d); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(217,142,94,.4); }
.lr-btn-steel { background: var(--c-steel-d); color: #fff; }
.lr-btn-steel:hover { background: var(--c-ink); color: #fff; transform: translateY(-2px); }
.lr-btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.lr-btn-ghost:hover { border-color: var(--c-steel-d); color: var(--c-steel-d); }
.lr-btn-glass { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.4); backdrop-filter: blur(6px); }
.lr-btn-glass:hover { background: rgba(255,255,255,.24); color: #fff; }
.lr-btn-light { background: #fff; color: var(--c-ink); }
.lr-btn-light:hover { background: var(--c-cream-2); transform: translateY(-2px); }

/* WhatsApp buton (config walink() ile aynı sınıf: wa-btn) */
.wa-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--ff-body); font-weight: 600; font-size: .98rem;
  padding: .85rem 1.7rem; border-radius: 999px;
  background: #25D366; color: #08331b; border: none;
  transition: all .22s ease; white-space: nowrap; line-height: 1;
}
.wa-btn:hover { background: #1eb257; color: #08331b; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.wa-btn svg { width: 18px; height: 18px; flex: 0 0 18px; }

/* ---- Topbar ---- */
.lr-topbar { background: var(--c-steel-d); color: #eaf0f3; font-size: .82rem; }
.lr-topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .5rem 0; }
.lr-topbar a { color: #eaf0f3; display: inline-flex; align-items: center; gap: .4rem; font-weight: 500; }
.lr-topbar a:hover { color: var(--c-peach); }
.lr-topbar-tag { color: #b9cad4; letter-spacing: .04em; }
@media (max-width: 700px) { .lr-topbar-tag { display: none; } }

/* ---- Header / Nav ---- */
.lr-header { position: sticky; top: 0; z-index: 1000; background: var(--c-cream); border-bottom: 1px solid var(--c-line); transition: background .25s ease; }
.lr-nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 0; }
.lr-brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--ff-display); font-size: 1.35rem; font-weight: 600; color: var(--c-ink); letter-spacing: .02em; }
.lr-brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--c-peach); color: #3a2417; font-family: var(--ff-body); font-weight: 700; font-size: .95rem; letter-spacing: .02em;
}
.lr-brand-dot { color: var(--c-peach-d); }
.lr-nav-links { display: flex; align-items: center; gap: .3rem; list-style: none; margin: 0; padding: 0; }
.lr-nav-links a { font-family: var(--ff-body); font-weight: 500; font-size: .95rem; color: var(--c-ink); padding: .5rem .8rem; border-radius: 999px; }
.lr-nav-links a:hover, .lr-nav-links a.active { color: var(--c-steel-d); background: var(--c-cream-2); }
.lr-nav-cta { margin-left: .4rem; }
.lr-nav-toggle { display: none; background: none; border: 1.5px solid var(--c-line); border-radius: 10px; width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; color: var(--c-ink); }
.lr-nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 991px) {
  .lr-nav-toggle { display: inline-flex; }
  .lr-nav-links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: .2rem;
    background: var(--c-cream); border-bottom: 1px solid var(--c-line);
    padding: 1rem 24px 1.4rem; box-shadow: var(--shadow-sm);
    display: none;
  }
  .lr-header.open .lr-nav-links { display: flex; }
  .lr-nav-links a { padding: .7rem .8rem; }
  .lr-nav-cta { margin: .4rem 0 0; }
  .lr-nav { position: relative; }
}

/* ---- HERO ---- */
.lr-hero { position: relative; background: var(--c-steel-d); color: #fff; overflow: hidden; }
.lr-hero-bg { position: absolute; inset: 0; z-index: 0; }
.lr-hero-bg .lr-illus { width: 100%; height: 100%; }
.lr-hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(46,71,86,.62) 0%, rgba(34,51,59,.72) 100%); }
.lr-hero-inner { position: relative; z-index: 1; padding: 118px 0 132px; }
.lr-hero-eyebrow { color: var(--c-peach); letter-spacing: .24em; text-transform: uppercase; font-size: .74rem; font-weight: 600; margin-bottom: 1.1rem; }
.lr-hero h1 { color: #fff; font-size: clamp(2.6rem, 6vw, 4.6rem); font-weight: 400; max-width: 15ch; margin-bottom: 1.2rem; }
.lr-hero h1 em { font-style: italic; color: var(--c-peach); }
.lr-hero-lead { color: #e7edf1; font-size: 1.18rem; max-width: 46ch; margin-bottom: 2rem; }
.lr-hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.lr-hero-video {
  display: inline-flex; align-items: center; gap: .7rem;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px); padding: .55rem .9rem .55rem .55rem; border-radius: 999px; color: #fff; font-weight: 500; font-size: .95rem;
}
.lr-hero-video .lr-play { width: 40px; height: 40px; border-radius: 50%; background: var(--c-peach); color: #3a2417; display: inline-flex; align-items: center; justify-content: center; }
.lr-hero-video .lr-play svg { width: 16px; height: 16px; }
.lr-hero-video:hover { color: #fff; background: rgba(255,255,255,.18); }

/* ---- Book bar (rezervasyon değil: bilgi şeridi) ---- */
.lr-bookbar {
  position: relative; z-index: 2;
  margin: -46px auto 0; max-width: 1040px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(3, 1fr) auto; gap: 0;
  overflow: hidden;
}
.lr-bookbar-field { padding: 1.15rem 1.4rem; border-right: 1px solid var(--c-line); }
.lr-bookbar-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--c-muted); font-weight: 600; margin-bottom: .35rem; }
.lr-bookbar-value { font-family: var(--ff-display); font-size: 1.12rem; color: var(--c-ink); }
.lr-bookbar-cta { display: flex; align-items: center; padding: .9rem 1.2rem; }
.lr-bookbar-cta .lr-btn, .lr-bookbar-cta .wa-btn { width: 100%; }
@media (max-width: 860px) {
  .lr-bookbar { grid-template-columns: 1fr 1fr; margin-top: -30px; }
  .lr-bookbar-field:nth-child(2) { border-right: none; }
  .lr-bookbar-cta { grid-column: 1 / -1; border-top: 1px solid var(--c-line); }
}
@media (max-width: 520px) {
  .lr-bookbar { grid-template-columns: 1fr; }
  .lr-bookbar-field { border-right: none; border-bottom: 1px solid var(--c-line); }
}

/* ---- Intro / split ---- */
.lr-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.lr-split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; }
.lr-split-media.stack { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; box-shadow: none; aspect-ratio: auto; }
.lr-split-media.stack > div { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 3/4; }
.lr-split-media.stack > div:nth-child(2) { margin-top: 32px; }
@media (max-width: 860px) { .lr-split { grid-template-columns: 1fr; gap: 34px; } .lr-split-media.stack > div:nth-child(2) { margin-top: 0; } }

/* ---- Rooms carousel (dark overlay cards) ---- */
.lr-rooms-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr);
  gap: 24px; overflow-x: auto; padding: 8px 4px 22px; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.lr-rooms-track::-webkit-scrollbar { height: 6px; }
.lr-rooms-track::-webkit-scrollbar-thumb { background: var(--c-steel-l); border-radius: 3px; }
@media (min-width: 992px) { .lr-rooms-track { grid-auto-columns: 1fr; overflow: visible; } }
.lr-room {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 440px; scroll-snap-align: start; display: flex; align-items: flex-end;
  box-shadow: var(--shadow-sm);
}
.lr-room-bg { position: absolute; inset: 0; z-index: 0; }
.lr-room-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(34,51,59,0) 30%, rgba(34,51,59,.85) 100%); }
.lr-room-body { position: relative; z-index: 1; padding: 1.6rem; color: #fff; width: 100%; }
.lr-room-badge { display: inline-block; background: var(--c-peach); color: #3a2417; font-weight: 600; font-size: .78rem; padding: .3rem .8rem; border-radius: 999px; margin-bottom: .7rem; }
.lr-room-body h3 { color: #fff; font-size: 1.4rem; }
.lr-room-body p { color: #dfe7ec; font-size: .95rem; margin-bottom: .9rem; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lr-room-list { list-style: none; margin: 0 0 1.1rem; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem; }
.lr-room-list li { font-size: .8rem; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); padding: .28rem .7rem; border-radius: 999px; color: #eef3f6; }
.lr-room-link { display: inline-flex; align-items: center; gap: .4rem; color: var(--c-peach); font-weight: 600; font-size: .92rem; }
.lr-room-link:hover { color: #fff; }

/* ---- Numbered resources (tab list + detail) ---- */
.lr-res { display: grid; grid-template-columns: 1fr 1.15fr; gap: 54px; align-items: start; }
.lr-res-list { list-style: none; margin: 0; padding: 0; }
.lr-res-item {
  display: flex; gap: 1rem; align-items: baseline; width: 100%;
  padding: 1.05rem 0; border-top: 1px solid var(--c-line); cursor: pointer;
  background: none; border-left: none; border-right: none; border-bottom: none; text-align: left; font: inherit; color: var(--c-muted);
  transition: color .2s ease;
}
.lr-res-item:last-child { border-bottom: 1px solid var(--c-line); }
.lr-res-no { font-family: var(--ff-display); font-size: 1rem; color: var(--c-steel-l); min-width: 2.4ch; }
.lr-res-name { font-family: var(--ff-display); font-size: 1.5rem; color: rgba(255,255,255,.52); transition: color .2s ease; }
.lr-res-item:hover .lr-res-name { color: #fff; }
.lr-res-item.active { color: #fff; }
.lr-res-item.active .lr-res-no { color: var(--c-peach); }
.lr-res-item.active .lr-res-name { color: #fff; }
.lr-res-detail {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 420px;
  background: var(--c-steel-d); color: #fff; display: flex; align-items: flex-end; box-shadow: var(--shadow-md);
}
.lr-res-detail-bg { position: absolute; inset: 0; z-index: 0; }
.lr-res-detail-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,26,31,.62) 0%, rgba(18,26,31,.82) 45%, rgba(14,20,24,.94) 100%); }
.lr-res-panel { position: relative; z-index: 1; padding: 2rem; }
.lr-res-panel[hidden] { display: none; }
.lr-res-panel .lr-res-lead { color: var(--c-peach); font-family: var(--ff-body); font-weight: 600; letter-spacing: .04em; margin-bottom: .3rem; }
.lr-res-panel h3 { color: #fff; font-size: 1.7rem; }
.lr-res-panel p { color: #dfe7ec; font-size: .98rem; margin: 0; }
@media (max-width: 860px) { .lr-res { grid-template-columns: 1fr; gap: 30px; } .lr-res-name { font-size: 1.25rem; } }

/* ---- Offer / highlights grid (fiyat YOK) ---- */
.lr-offer-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin-inline: auto; }
@media (max-width: 560px) { .lr-offer-grid { grid-template-columns: 1fr; } }
.lr-offer {
  background: #fff; border-radius: var(--radius); padding: 1.7rem; box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line); transition: transform .2s ease, box-shadow .2s ease;
}
.lr-offer:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lr-offer-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 12px; background: rgba(232,168,124,.18); color: var(--c-peach-d); margin-bottom: 1rem;
}
.lr-offer-ic svg { width: 24px; height: 24px; }
.lr-offer h3 { font-size: 1.2rem; }
.lr-offer p { color: var(--c-muted); font-size: .95rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---- Sosyal ritim ---- */
.lr-rhythm-track {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(210px, 1fr);
  gap: 18px; overflow-x: auto; padding: 6px 2px 18px; scroll-snap-type: x mandatory;
}
.lr-rhythm-track::-webkit-scrollbar { height: 6px; }
.lr-rhythm-track::-webkit-scrollbar-thumb { background: rgba(255,255,255,.35); border-radius: 3px; }
@media (min-width: 992px) { .lr-rhythm-track { grid-auto-columns: 1fr; overflow: visible; } }
.lr-rhythm-card { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm); padding: 1.3rem; scroll-snap-align: start; }
.lr-rhythm-tag { display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .04em; padding: .22rem .7rem; border-radius: 999px; margin-bottom: .7rem; background: var(--c-peach); color: #3a2417; }
.lr-rhythm-day { font-family: var(--ff-display); font-size: 1.25rem; color: #fff; margin-bottom: .3rem; }
.lr-rhythm-card p { color: #d6e0e6; font-size: .9rem; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

/* ---- WhatsApp blok ---- */
.lr-wa {
  background: linear-gradient(120deg, var(--c-steel-d), var(--c-steel));
  border-radius: var(--radius); padding: 3rem clamp(1.5rem, 4vw, 3.4rem); color: #fff;
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; align-items: center;
}
.lr-wa h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.lr-wa p { color: #dbe4ea; margin: 0; }
.lr-wa-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: flex-end; }
@media (max-width: 780px) { .lr-wa { grid-template-columns: 1fr; } .lr-wa-actions { justify-content: flex-start; } }

/* ---- FAQ ---- */
.lr-faq-wrap { max-width: 820px; margin: 0 auto; }
.lr-faq-item { border-bottom: 1px solid var(--c-line); }
.lr-faq-q {
  width: 100%; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--ff-display); font-size: 1.15rem; color: var(--c-ink);
  padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
}
.lr-faq-q::after {
  content: "+"; position: absolute; right: .2rem; top: 50%; transform: translateY(-50%);
  font-family: var(--ff-body); font-size: 1.5rem; color: var(--c-peach-d); transition: transform .25s ease; line-height: 1;
}
.lr-faq-item.open .lr-faq-q::after { content: "\2013"; }
.lr-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.lr-faq-item.open .lr-faq-a { max-height: 480px; }
.lr-faq-a p { color: var(--c-muted); padding: 0 2.5rem 1.3rem 0; margin: 0; }

/* ---- Kapanış CTA ---- */
.lr-cta { text-align: center; background: var(--c-cream-2); }
.lr-cta h2 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; margin: 0 auto 1rem; }
.lr-cta p { color: var(--c-muted); max-width: 52ch; margin: 0 auto 1.8rem; }
.lr-cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---- Renk zeminleri ---- */
.lr-bg-cream2 { background: var(--c-cream-2); }
.lr-bg-steel { background: var(--c-steel-d); color: #fff; }
.lr-bg-steel .lr-title, .lr-bg-steel h2, .lr-bg-steel h3 { color: #fff; }
.lr-bg-steel .lr-sub { color: #cfdae1; }
.lr-bg-steel .lr-eyebrow { color: var(--c-peach); }

/* ---- Footer ---- */
.lr-footer { background: var(--c-ink); color: #cdd7dd; padding: 68px 0 0; }
.lr-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.lr-footer .lr-brand { color: #fff; margin-bottom: 1rem; }
.lr-footer-desc { color: #a8b6bd; font-size: .95rem; max-width: 42ch; }
.lr-footer h4 { color: #fff; font-family: var(--ff-body); font-weight: 600; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.lr-footer ul { list-style: none; margin: 0; padding: 0; }
.lr-footer ul li { margin-bottom: .55rem; }
.lr-footer ul a { color: #b8c4cb; font-size: .95rem; }
.lr-footer ul a:hover { color: var(--c-peach); }
.lr-footer-disclaimer { font-style: italic; color: #8a99a1; font-size: .88rem; margin-top: 1rem; }
.lr-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 46px; padding: 22px 0; display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between; font-size: .84rem; color: #8a99a1; }
.lr-legal { background: #1a272d; color: #7f8e96; font-size: .78rem; line-height: 1.65; padding: 20px 0; }
@media (max-width: 780px) { .lr-footer-grid { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Mobil alt CTA çubuğu ---- */
.lr-mobile-cta { display: none; }
@media (max-width: 991px) {
  .lr-mobile-cta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200;
    background: #fff; border-top: 1px solid var(--c-line); box-shadow: 0 -6px 20px rgba(34,51,59,.12);
  }
  .lr-mobile-cta a { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .85rem; font-weight: 600; font-size: .95rem; }
  .lr-mobile-cta a svg { width: 18px; height: 18px; }
  .lr-mobile-wa { background: #25D366; color: #08331b; }
  .lr-mobile-tel { color: var(--c-ink); }
  body { padding-bottom: 60px; }
}

/* ---- İç sayfa (page/blog) ---- */
.lr-page-hero { background: var(--c-steel-d); color: #fff; padding: 66px 0 58px; }
.lr-page-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.1rem); max-width: 20ch; }
.lr-page-hero .lr-sub { color: #d3dde3; }
.lr-breadcrumb { font-size: .85rem; color: #9fb2bc; margin-bottom: 1rem; }
.lr-breadcrumb a { color: #cfdae1; }
.lr-breadcrumb a:hover { color: var(--c-peach); }

.lr-prose { font-size: 1.06rem; color: #33454d; }
.lr-prose p { margin: 0 0 1.2rem; }
.lr-prose a { color: var(--c-steel-d); text-decoration: underline; text-decoration-color: var(--c-peach); text-underline-offset: 3px; }
.lr-prose a:hover { color: var(--c-peach-d); }
.lr-article-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 16/9; margin-bottom: 1.6rem; }

.lr-aside { background: var(--c-cream); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 1.6rem; position: sticky; top: 96px; }
.lr-aside h2, .lr-aside h3 { font-size: 1.15rem; }
.lr-aside ul { list-style: none; margin: .4rem 0 0; padding: 0; }
.lr-aside ul li { margin-bottom: .6rem; }
.lr-aside ul a { font-size: .95rem; }

.lr-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .lr-blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .lr-blog-grid { grid-template-columns: 1fr; } }
.lr-blog-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; }
.lr-blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.lr-blog-card .lr-blog-fig { aspect-ratio: 16/10; overflow: hidden; }
.lr-blog-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.lr-blog-card h2, .lr-blog-card h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.lr-blog-card p { color: var(--c-muted); font-size: .92rem; margin-bottom: .9rem; display: -webkit-box; -webkit-line-clamp: 3; line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.lr-blog-more { color: var(--c-peach-d); font-weight: 600; font-size: .9rem; }

/* ---- Yardımcılar ---- */
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }

/* Mobilde bootstrap g-5 satır gutter taşmasını önle (yatay scroll fix) */
@media (max-width: 991.98px) {
  .row { --bs-gutter-x: 1.5rem; }
}

html { overflow-x: clip; }

@media (max-width: 575.98px){ .lr-brand{ font-size: 1.05rem; } }

/* Hamburger toggle mobilde ezilmesin (44px korunur) + marka daralabilsin */
.lr-nav-toggle { flex-shrink: 0; }
.lr-brand { min-width: 0; }

/* Marka mobilde toggle ile üst üste binmesin: overflow clip + dar ekranda font küçült */
.lr-brand { overflow: hidden; } .lr-brand-mark { flex-shrink: 0; }
@media (max-width: 480px){ .lr-brand { font-size: .88rem; } .lr-brand-mark { width: 30px; height: 30px; font-size: .72rem; } .lr-nav { gap: .5rem; } }
