/* ===============================
   GLOBAL STYLES
================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  color: #333;
  background-color: #fff;
  line-height: 1.65;
}

/* Visually hidden (accessible labels) */
.lt-srOnly{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

/* ===============================
   MODERN INPUTS (shared)
   - Used by connect.php and other v-card forms
================================= */
.modern-input{
  width:100%;
  padding:1rem 1.15rem;
  border-radius:14px;
  border:1px solid rgba(140,140,150,0.30);
  background:rgba(255,255,255,0.70);
  color:#0f172a;
  font-size:1rem;
  line-height:1.4;
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.modern-input:focus{
  outline:none;
  border-color:rgba(37,99,235,0.55);
  background:#ffffff;
  box-shadow:0 0 0 4px rgba(37,99,235,.15);
}
.modern-input::placeholder{ color: rgba(71,85,105,0.8); }

/* ============================================================
   LIVING TESTIMONIES (REFERENCE UI)
   - Full width soft-blue atmosphere
   - Glass cards: rounded, subtle glow
   - Grid 3/2/1 columns
   - Always-visible share panel at bottom
============================================================ */
.livingTestimonies{
  --lt-hope:#60a5fa;
  --lt-healing:#2dd4bf;
  --lt-gratitude:#fdba74;
  --lt-faith:#a78bfa;
  --lt-ink:#2b3c56;
  --lt-muted:#6b7a90;
  --lt-glass: rgba(255,255,255,0.68);
  --lt-border: rgba(255,255,255,0.72);
  --lt-shadow: 0 18px 40px rgba(15,23,42,0.10);
  position: relative;
  padding: 46px 0 34px;
  margin: 0;
  background:
    radial-gradient(1100px 520px at 50% 0%, rgba(96,165,250,0.30), transparent 60%),
    radial-gradient(900px 520px at 12% 42%, rgba(167,139,250,0.18), transparent 62%),
    radial-gradient(900px 520px at 88% 46%, rgba(45,212,191,0.16), transparent 62%),
    linear-gradient(180deg, #eef5ff 0%, #f6f9ff 55%, #f3f7ff 100%);
}
.livingTestimonies::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(600px 380px at 18% 8%, rgba(255,255,255,0.55), transparent 70%),
    radial-gradient(560px 360px at 82% 10%, rgba(255,255,255,0.50), transparent 70%);
  opacity: .85;
}
.livingTestimonies__inner{
  position: relative;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}
.livingTestimonies .container{
  padding-top: 0;
  padding-bottom: 0;
}

.livingTestimonies__header{
  text-align:center;
  padding: 10px 0 22px;
}
.livingTestimonies__title{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  font-size: 2.15rem;
  line-height: 1.1;
  font-weight: 900;
  color: #0b4fb3;
  letter-spacing: -0.02em;
}
.livingTestimonies__subtitle{
  margin: 10px auto 0;
  max-width: 720px;
  color: #3b6fb1;
  font-size: .98rem;
  line-height: 1.55;
}

.livingTestimonies__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 14px;
}
@media (max-width: 980px){
  .livingTestimonies__grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .livingTestimonies__grid{ grid-template-columns: 1fr; }
  .livingTestimonies__title{ font-size: 2.0rem; }
}

.lt-empty{
  grid-column: 1 / -1;
  text-align:center;
  color: #0b4fb3;
  font-weight: 900;
  padding: 16px 16px;
  max-width: 640px;
  margin: 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.66);
  box-shadow: 0 16px 40px rgba(15,23,42,0.10);
}

.lt-card{
  background: var(--lt-glass);
  border: 1px solid var(--lt-border);
  border-radius: 18px;
  box-shadow: var(--lt-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 14px 14px 12px;
  position: relative;
  overflow: hidden;
}
.lt-card::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(220px 160px at 20% 0%, rgba(96,165,250,0.18), transparent 62%),
    radial-gradient(220px 160px at 100% 10%, rgba(167,139,250,0.14), transparent 62%);
  opacity:.9;
}

.lt-cardTop{
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.lt-pill{
  display:inline-flex;
  align-items:center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 900;
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: 0 10px 22px rgba(15,23,42,0.06);
  background: rgba(255,255,255,0.55);
  color: #39516b;
}
.lt-pill[data-cat="hope"]{ background: rgba(96,165,250,0.22); color: #1e4e8c; }
.lt-pill[data-cat="healing"]{ background: rgba(45,212,191,0.22); color: #0b5f57; }
.lt-pill[data-cat="gratitude"]{ background: rgba(253,186,116,0.26); color: #8a3c14; }
.lt-pill[data-cat="faith"]{ background: rgba(167,139,250,0.22); color: #4c1d95; }

.lt-icon{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.78);
  box-shadow: 0 12px 26px rgba(15,23,42,0.08);
  color: #5a6a80;
  font-weight: 900;
  position: relative;
}

.lt-cardTitle{
  position: relative;
  margin: 12px 0 6px;
  font-size: 1.02rem;
  font-weight: 900;
  color: var(--lt-ink);
  letter-spacing: -0.01em;
}
.lt-cardBody{
  position: relative;
  margin: 0;
  color: #5a6a80;
  font-size: .92rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.lt-cardFooter{
  position: relative;
  margin-top: 14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 14px;
}
.lt-author{ display:flex; align-items:center; gap: 10px; min-width: 0; }
.lt-avatar{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(148,163,184,0.28);
  box-shadow: 0 10px 22px rgba(15,23,42,0.08);
  font-weight: 900;
  color: #39516b;
  font-size: .74rem;
  flex: 0 0 auto;
}
.lt-authorMeta{ min-width:0; }
.lt-authorName{
  font-weight: 900;
  color: #32465e;
  font-size: .9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-authorCity{
  margin-top: 2px;
  font-size: .78rem;
  color: #7a8aa0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lt-date{
  font-size: .78rem;
  color: #7a8aa0;
  font-weight: 700;
  white-space: nowrap;
}

/* Share panel */
.livingTestimonies__share{
  margin: 18px auto 0;
  max-width: 1120px;
}
.lt-shareCard{
  background: var(--lt-glass);
  border: 1px solid var(--lt-border);
  border-radius: 18px;
  box-shadow: var(--lt-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 14px;
  position: relative;
  overflow: hidden;
  display:flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.lt-shareCard::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(320px 220px at 10% 18%, rgba(96,165,250,0.16), transparent 62%),
    radial-gradient(320px 220px at 90% 26%, rgba(253,186,116,0.10), transparent 62%);
  opacity: .9;
}
.lt-shareCard > *{ position: relative; }
.lt-shareTitle{
  margin:0;
  font-size: 1.05rem;
  font-weight: 900;
  color: #2c5ea8;
}
.lt-shareHelp{
  margin: 8px 0 0;
  color: #6b7a90;
  font-size: .92rem;
  line-height: 1.5;
}

.lt-shareCard .lt-submit{
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.lt-form{
  position: relative;
  display:grid;
  gap: 14px;
  background: var(--lt-glass);
  border: 1px solid var(--lt-border);
  border-radius: 18px;
  box-shadow: var(--lt-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 22px;
  overflow: hidden;
}
.lt-form::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(320px 220px at 14% 10%, rgba(96,165,250,0.12), transparent 62%),
    radial-gradient(320px 220px at 86% 20%, rgba(167,139,250,0.10), transparent 62%);
  opacity: .9;
}
.lt-form > *{ position: relative; }
.lt-hp{ position:absolute; left:-9999px; width:1px; height:1px; opacity:0; }
.lt-textarea,
.lt-input{
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(148,163,184,0.65);
  background: rgba(255,255,255,0.92);
  color: #2b3c56;
  font-size: 1rem;
  padding: 0.95rem 1.1rem;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}
.lt-textarea{ resize: vertical; min-height: 170px; max-height: 520px; line-height: 1.6; }
.lt-textarea:focus,
.lt-input:focus{
  border-color: rgba(37,99,235,0.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37,99,235,0.14);
}

.lt-label{
  display:block;
  font-size: .98rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}
.lt-formRow{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
@media (max-width: 980px){
  .livingTestimonies__share{ grid-template-columns: 1fr; max-width: 680px; }
  .lt-formRow{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px){
  .lt-formRow{ grid-template-columns: 1fr; }
}

.lt-actions{ display:flex; justify-content:center; }
.lt-submit{
  appearance: none;
  border: 1px solid rgba(37,99,235,0.26);
  background: linear-gradient(90deg, rgba(37,99,235,0.92), rgba(99,102,241,0.88), rgba(45,212,191,0.76));
  color: #ffffff;
  font-weight: 900;
  border-radius: 12px;
  padding: .9rem 1.5rem;
  min-width: 220px;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(37,99,235,0.18);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.lt-submit:hover{ transform: translateY(-1px); box-shadow: 0 24px 56px rgba(37,99,235,0.20); }
.lt-submit:active{ transform: translateY(0px); filter: brightness(0.98); }

.lt-status{ color: #6b7a90; font-weight: 800; font-size: .9rem; }
.lt-status.ok{ color: #0f766e; }
.lt-status.err{ color: #b91c1c; }

/* Ensure "vcard" inside this section stays compact and glassy.
   Needed because index.php defines a global .vcard in an inline <style>. */
.livingTestimonies .vcard{
  background: var(--lt-glass) !important;
  padding: 14px !important;
  border-radius: 18px !important;
  border: 1px solid var(--lt-border) !important;
  box-shadow: var(--lt-shadow) !important;
  position: relative !important;
}
.livingTestimonies .vcard::before{
  inset: 0 !important;
  z-index: -1 !important;
  opacity: .9 !important;
}

.container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

section {
  margin-bottom: 3rem;
}

/* ===============================
  TESTIMONIALS (legacy)
================================= */
.testimonials-shell{
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 920px){
  .testimonials-shell{ grid-template-columns: 1fr; }
}

.testimonials-panel{
  background: linear-gradient(180deg, rgba(2,6,23,0.03), rgba(2,6,23,0.00));
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 18px;
  padding: 1.1rem;
  box-shadow: 0 16px 40px rgba(15,23,42,0.08);
}

.testimonials-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-top: .75rem;
}
.testimonial-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.26);
  border-radius:16px;
  padding:1.1rem 1.15rem;
  box-shadow:0 14px 34px rgba(15,23,42,0.10);
  position: relative;
  overflow: hidden;
}
.testimonial-card:before{
  content:"";
  position:absolute;
  inset:-120px auto auto -120px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.12), transparent 60%);
}
.testimonial-message{
  color:#111827;
  line-height:1.7;
  font-size:1.02rem;
  position: relative;
}
.testimonial-meta{
  margin-top:.7rem;
  color:#6b7280;
  font-size:.92rem;
  font-weight:700;
  position: relative;
}

.testimonial-form-card{
  background:#fff;
  border:1px solid rgba(148,163,184,.26);
  border-radius:18px;
  padding:1.1rem 1.1rem 1.2rem;
  box-shadow:0 16px 40px rgba(15,23,42,0.09);
}
.testimonial-form-title{
  margin:0;
  font-size:1.15rem;
  font-weight:900;
  color:#0f172a;
}
.testimonial-form-sub{
  margin:.45rem 0 0;
  color:#475569;
}
.testimonial-form{
  display:grid;
  gap:.75rem;
  position:relative;
}
.testimonial-form input,
.testimonial-form textarea{
  width:100%;
  padding:.9rem 1rem;
  border-radius:14px;
  border:1px solid rgba(148,163,184,.38);
  background: linear-gradient(180deg, #ffffff, #fbfdff);
  color:#111827;
  font-size:1rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.testimonial-form input:focus,
.testimonial-form textarea:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

.testimonial-form textarea{
  min-height: 200px;
  max-height: 520px;
  resize: vertical;
  line-height: 1.65;
}

.testimonial-form-actions{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.testimonial-status{ font-weight:800; font-size:.95rem; color:#6b7280; }
.testimonial-status.ok{ color:#10b981; }
.testimonial-status.err{ color:#ef4444; }

/* ===============================
   LIVING TESTIMONIES (premium)
   - Calm, faith-based, private
   - Designed to match the provided screenshot
================================= */
#living-testimonies{
  position: relative;
}

#living-testimonies .section-title{
  margin-bottom: .35rem;
}

.living-shell{
  margin-top: 1.25rem;
}

.living-panel{
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 22px;
  padding: 16px;
  box-shadow: 0 18px 55px rgba(2,6,23,0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.living-toolbar{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 10px 26px rgba(2,6,23,0.06);
}

.living-toolbar-spacer{ flex: 1; }

.living-filter,
.living-action{
  appearance: none;
  border: 1px solid rgba(148,163,184,.22);
  background: rgba(255,255,255,0.86);
  color: #0f172a;
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

.living-btn-ico{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(37,99,235,0.10);
  color: #1e40af;
  font-weight: 900;
  box-shadow: 0 6px 16px rgba(2,6,23,0.06);
}

.living-filter:hover,
.living-action:hover{
  transform: translateY(-1px);
  border-color: rgba(37,99,235,.32);
  box-shadow: 0 14px 32px rgba(2,6,23,0.10);
}

.living-filter.is-active{
  background: linear-gradient(180deg, rgba(37,99,235,0.10), rgba(37,99,235,0.06));
  border-color: rgba(37,99,235,.35);
}

.living-action{
  background: linear-gradient(180deg, rgba(37,99,235,0.16), rgba(37,99,235,0.08));
  border-color: rgba(37,99,235,.32);
}

.living-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 16px;
}
@media (max-width: 980px){
  .living-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .living-grid{ grid-template-columns: 1fr; }
  .living-toolbar{ border-radius: 18px; }
  .living-toolbar-spacer{ display:none; }
}

.living-card{
  --tag-bg: rgba(148,163,184,0.20);
  --tag-fg: #0f172a;
  --tag-ico-bg: rgba(2,6,23,0.06);

  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(148,163,184,.22);
  border-radius: 22px;
  padding: 16px 16px 14px;
  box-shadow: 0 18px 55px rgba(2,6,23,0.08);
  overflow: hidden;
  position: relative;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.living-card:before{
  content: "";
  position: absolute;
  inset: -120px -120px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.14), transparent 60%);
  filter: blur(0px);
  opacity: .8;
}

.living-card:hover{
  transform: translateY(-3px);
  border-color: rgba(37,99,235,.28);
  box-shadow: 0 26px 70px rgba(2,6,23,0.12);
}

/* category accents */
.living-card[data-category="hope"]{ --tag-bg: rgba(59,130,246,0.16); --tag-fg:#1e3a8a; --tag-ico-bg: rgba(59,130,246,0.12); }
.living-card[data-category="healing"]{ --tag-bg: rgba(20,184,166,0.16); --tag-fg:#065f46; --tag-ico-bg: rgba(20,184,166,0.12); }
.living-card[data-category="gratitude"]{ --tag-bg: rgba(251,146,60,0.18); --tag-fg:#7c2d12; --tag-ico-bg: rgba(251,146,60,0.12); }
.living-card[data-category="faith"]{ --tag-bg: rgba(100,116,139,0.16); --tag-fg:#0f172a; --tag-ico-bg: rgba(100,116,139,0.12); }

.living-card-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  position: relative;
}

.living-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--tag-bg);
  color: var(--tag-fg);
  font-weight: 950;
  letter-spacing: .02em;
  font-size: .82rem;
  text-transform: uppercase;
}

.living-badge-icon{
  width: 26px;
  height: 26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  background: var(--tag-ico-bg);
}

.living-card-icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(148,163,184,.22);
  box-shadow: 0 10px 22px rgba(2,6,23,0.08);
}

.living-card-title{
  margin: 14px 0 8px;
  font-size: 1.15rem;
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
  position: relative;
}

.living-card-text{
  color: #334155;
  line-height: 1.75;
  font-size: 1rem;
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  overflow: hidden;
}

.living-card-foot{
  margin-top: 14px;
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  position: relative;
}

.living-author{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}

.living-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 950;
  color: #0f172a;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,184,.25);
  box-shadow: 0 10px 22px rgba(2,6,23,0.08);
}

.living-author-meta{ min-width:0; }
.living-author-name{
  font-weight: 900;
  color:#0f172a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}
.living-author-city{
  margin-top: 2px;
  color: #64748b;
  font-size: .88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 220px;
}

.living-date{
  color: #64748b;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
}


/* ===============================
   LIVING TESTIMONIES (premium, calm)
   - Not a "comment section"
   - Responsive: 3 / 2 / 1 columns via explicit breakpoints
================================= */
.living-shell{
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.living-panel{
  background: linear-gradient(180deg, rgba(255,255,255,0.70), rgba(255,255,255,0.45));
  border: 1px solid rgba(148,163,184,.30);
  border-radius: 20px;
  padding: 1.1rem;
  box-shadow: 0 18px 50px rgba(15,23,42,0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.living-toolbar{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .55rem;
  padding: .2rem .15rem .85rem;
  border-bottom: 1px solid rgba(148,163,184,.22);
  margin-bottom: .35rem;
}
.living-toolbar-spacer{ flex: 1; }

.living-filter,
.living-action{
  /* "Luxury" pill buttons: subtle gradient + soft shadow */
  --btn-a: #2563eb;
  --btn-b: #60a5fa;
  --btn-ico: #1e40af;
  --btn-glow: rgba(96,165,250,0.26);
  --btn-border: rgba(37,99,235,0.32);
  --btn-border-strong: rgba(37,99,235,0.48);
  --btn-ring: rgba(37,99,235,0.16);
  border: 1px solid rgba(148,163,184,.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.86));
  color: #0f172a;
  border-radius: 999px;
  padding: .55rem .9rem;
  font-weight: 850;
  font-size: .92rem;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(2,6,23,0.07);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease, background .15s ease;
}

/* Color accents per filter */
.living-filter[data-filter="all"]{
  --btn-a:#6366f1; --btn-b:#a78bfa; --btn-ico:#4338ca;
  --btn-glow: rgba(167,139,250,0.28);
  --btn-border: rgba(99,102,241,0.32);
  --btn-border-strong: rgba(99,102,241,0.52);
  --btn-ring: rgba(99,102,241,0.16);
}
.living-filter[data-filter="hope"]{
  --btn-a:#2563eb; --btn-b:#60a5fa; --btn-ico:#1e40af;
  --btn-glow: rgba(96,165,250,0.26);
  --btn-border: rgba(37,99,235,0.32);
  --btn-border-strong: rgba(37,99,235,0.52);
  --btn-ring: rgba(37,99,235,0.16);
}
.living-filter[data-filter="healing"]{
  --btn-a:#0f766e; --btn-b:#2dd4bf; --btn-ico:#065f46;
  --btn-glow: rgba(45,212,191,0.24);
  --btn-border: rgba(20,184,166,0.32);
  --btn-border-strong: rgba(20,184,166,0.52);
  --btn-ring: rgba(20,184,166,0.14);
}
.living-filter[data-filter="gratitude"]{
  --btn-a:#b45309; --btn-b:#fb923c; --btn-ico:#7c2d12;
  --btn-glow: rgba(251,146,60,0.22);
  --btn-border: rgba(251,146,60,0.34);
  --btn-border-strong: rgba(251,146,60,0.55);
  --btn-ring: rgba(251,146,60,0.14);
}
.living-filter[data-filter="faith"]{
  --btn-a:#334155; --btn-b:#94a3b8; --btn-ico:#0f172a;
  --btn-glow: rgba(148,163,184,0.22);
  --btn-border: rgba(100,116,139,0.34);
  --btn-border-strong: rgba(100,116,139,0.55);
  --btn-ring: rgba(100,116,139,0.14);
}

/* Shared icon styling (matches your HTML structure) */
.living-btn-ico{
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--btn-glow), rgba(2,6,23,0.04));
  border: 1px solid rgba(148,163,184,.26);
  color: var(--btn-ico);
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(2,6,23,0.08);
}
.living-filter:hover,
.living-action:hover{
  transform: translateY(-1px);
  border-color: var(--btn-border);
  box-shadow: 0 16px 40px rgba(2,6,23,0.10);
}
.living-filter.is-active{
  border-color: var(--btn-border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(248,250,252,0.86));
  box-shadow: 0 0 0 4px var(--btn-ring);
}

/* Share button: slightly more premium and distinct */
.living-action{
  --btn-a:#2563eb;
  --btn-b:#22c55e;
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,250,252,0.84));
}
.living-action .living-btn-ico{
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,0.26), rgba(37,99,235,0.16));
  color: #0f172a;
}

.living-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}
@media (max-width: 980px){
  .living-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px){
  .living-grid{ grid-template-columns: 1fr; }
}

.living-card{
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(148,163,184,.26);
  border-radius: 18px;
  padding: 1.1rem 1.15rem;
  box-shadow: 0 14px 34px rgba(15,23,42,0.10);
  position: relative;
  overflow: hidden;
  min-height: 160px;
  transition: transform .16s ease, box-shadow .16s ease;
}
.living-card::before{
  content: "";
  position: absolute;
  inset: -120px auto auto -120px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle at 30% 30%, rgba(37,99,235,0.10), transparent 62%);
  filter: blur(0px);
}
.living-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(15,23,42,0.12);
}

.living-card-top{
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .65rem;
}

.living-badge{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .35rem .65rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.28);
  background: rgba(248,250,252,0.8);
  font-weight: 900;
  font-size: .85rem;
  color: #0f172a;
}
.living-badge-icon{ opacity: .85; }

.living-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(2,6,23,0.06);
  border: 1px solid rgba(148,163,184,.28);
  font-weight: 950;
  color: #0f172a;
}

.living-card-title{
  position: relative;
  margin: 0 0 .5rem;
  font-size: 1.05rem;
  font-weight: 950;
  color: #0f172a;
  letter-spacing: -0.01em;
}

.living-card-text{
  position: relative;
  color: #111827;
  line-height: 1.75;
  font-size: 1rem;
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
}

.living-card-meta{
  position: relative;
  margin-top: .85rem;
  color: #64748b;
  font-size: .9rem;
  font-weight: 800;
}

.living-form-wrap{ margin-top: .2rem; }
.living-form-card{
  /* Contact-form inspired v-card look + multicolour glow */
  max-width: 760px;
  margin: 0 auto;
  border-radius: 22px;
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;

  /* If this node also has .vcard (index.php), keep it consistent */
  background:
    radial-gradient(420px 240px at 18% 10%, rgba(37,99,235,0.18), transparent 62%),
    radial-gradient(420px 260px at 86% 18%, rgba(236,72,153,0.14), transparent 60%),
    radial-gradient(520px 320px at 60% 110%, rgba(16,185,129,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62));
  border: 1px solid rgba(140,140,150,0.30);
  box-shadow: 0 22px 55px rgba(2,6,23,0.10);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

/* If the markup includes both .living-form-card and .vcard (homepage), keep the multicolour version */
.living-form-card.vcard{
  padding: 1.6rem 1.5rem !important;
  margin: 0 auto !important;
  border-radius: 22px !important;
  background:
    radial-gradient(420px 240px at 18% 10%, rgba(37,99,235,0.18), transparent 62%),
    radial-gradient(420px 260px at 86% 18%, rgba(236,72,153,0.14), transparent 60%),
    radial-gradient(520px 320px at 60% 110%, rgba(16,185,129,0.14), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,255,255,0.62)) !important;
  border: 1px solid rgba(140,140,150,0.30) !important;
  box-shadow: 0 22px 55px rgba(2,6,23,0.10) !important;
}
.living-form-card::before{
  content:"";
  position:absolute;
  inset: auto !important;
  z-index: 0 !important;
  top:-70px; right:-70px;
  width:260px; height:260px;
  background: radial-gradient(circle, rgba(99,102,241,0.55), transparent 62%) !important;
  opacity:.16 !important;
  filter: blur(70px) !important;
  pointer-events:none;
}
.living-form-card::after{
  content:"";
  position:absolute;
  bottom:-75px; left:-75px;
  width:280px; height:280px;
  background:
    radial-gradient(circle, rgba(34,211,238,0.32), transparent 62%),
    radial-gradient(circle at 60% 40%, rgba(236,72,153,0.22), transparent 62%);
  opacity:.18;
  filter: blur(74px);
  pointer-events:none;
}
.living-form-title{ margin:0; font-size:1.15rem; font-weight:800; color:#0f172a; letter-spacing: -0.01em; }
.living-form-title{
  text-align:center;
  background: linear-gradient(90deg, rgba(37,99,235,0.98), rgba(99,102,241,0.94), rgba(236,72,153,0.90), rgba(16,185,129,0.88));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.living-form-sub{ margin:.35rem 0 0; color:#475569; text-align:center; }

.living-draft-note{
  margin-top: .7rem;
  padding: .55rem .75rem;
  border-radius: 12px;
  border: 1px solid rgba(37,99,235,.18);
  background: rgba(37,99,235,0.06);
  color: #1e3a8a;
  font-size: .92rem;
}

.living-form{ display:grid; gap:.65rem; position:relative; margin-top: .85rem; }
.living-field{ display:grid; gap:.35rem; }
.living-label{ font-weight:650; font-size:.92rem; color:#0f172a; }
.living-hint{ font-size:.9rem; color:#64748b; }

.living-counter{
  margin-top: .45rem;
  color: #64748b;
  font-size: .9rem;
}
.living-counter.is-low{ color: #b45309; }
.living-counter.is-over{ color: #ef4444; }

.living-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
@media (max-width: 640px){
  .living-row{ grid-template-columns: 1fr; }
}

.living-form input,
.living-form textarea,
.living-form select{
  /* keep backwards compatibility if modern-input isn't present */
  width: 100%;
  padding: .85rem 1.05rem;
  border-radius: 14px;
  border: 1px solid rgba(140,140,150,0.30);
  background: rgba(255,255,255,0.70);
  color: #0f172a;
  font-size: 1rem;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.living-form textarea{
  /* Smaller + modern: starts compact and expands while typing (JS auto-grow) */
  min-height: 160px;
  max-height: 880px;
  resize: none; /* auto-grows via JS */
  overflow: hidden;
  line-height: 1.75;
}

/* Arrange like the contact form: one clean column, compact spacing */
.living-form-grid{ grid-template-columns: 1fr; gap: .85rem; }
.living-form-right{
  background: transparent;
  border: 0;
  padding: 0;
}

.living-form input:focus,
.living-form textarea:focus,
.living-form select:focus{
  border-color: rgba(37,99,235,.55);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.living-form input:focus-visible,
.living-form textarea:focus-visible,
.living-form select:focus-visible{
  border-color: rgba(37,99,235,.70);
  box-shadow: 0 0 0 5px rgba(37,99,235,.14);
}

/* Category select: calm, styled arrow without frameworks */
.living-form select{
  -webkit-appearance: none;
  appearance: none;
  padding-right: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath fill='%23647569' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px 16px;
}

.living-actions{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; margin-top: .2rem; }
.living-actions{ justify-content:center; }
.living-status{ font-weight:900; font-size:.95rem; color:#64748b; }
.living-status.ok{ color:#10b981; }
.living-status.err{ color:#ef4444; }

.living-submit{
  border-radius: 14px;
  padding: .78rem 1.15rem;
  font-weight: 800;
  min-width: 200px;
  background: linear-gradient(90deg, rgba(37,99,235,0.96), rgba(99,102,241,0.92), rgba(236,72,153,0.86));
  border: 1px solid rgba(30,64,175,0.22);
  box-shadow: 0 18px 46px rgba(37,99,235,0.16);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.living-submit:hover{ transform: translateY(-1px); box-shadow: 0 22px 55px rgba(37,99,235,0.22); }
.living-submit:disabled{
  opacity: .55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  filter: grayscale(.15);
}

.living-success{
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid rgba(16,185,129,.22);
  background: rgba(16,185,129,.06);
  color: #0f172a;
}
.living-success-title{ font-weight: 800; margin-bottom: .35rem; }
.living-success-msg{ color: #475569; line-height: 1.6; }

.living-success-actions{ margin-top: .85rem; }
.living-secondary{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(148,163,184,.35);
  color: #0f172a;
  font-weight: 750;
}
.living-secondary:hover{
  border-color: rgba(37,99,235,.30);
  box-shadow: 0 10px 24px rgba(2,6,23,0.08);
}

/* ===============================
   HEADER & NAVIGATION
================================= */

.header {
  background: #0a1931;
  color: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

/* =====================================================
   FORCE SIDEBAR VISIBILITY (HAMBURGER FIX)
   ===================================================== */
.sidebar,
#sidebar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 280px !important;
  max-width: 85vw !important;
  background: #ffffff !important;
  z-index: 10000 !important;
  transform: translateX(-110%);
  transition: transform .25s ease;
  overflow-y: auto;
}

.sidebar.open,
#sidebar.open {
  transform: translateX(0) !important;
}

/* FIX — Only reduce header padding, NOT global container */
.header .nav-container {
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 150px;
}

.logo span {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

/* DESKTOP NAV */
.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: .3s ease;
}

.nav-links a:hover {
  color: #ffd700;
}

.donate-btn {
  background: #ffd700;
  color: #0a1931 !important;
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  transition: .3s ease;
}

.donate-btn:hover {
  background: #e6be00;
}

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  padding: .3rem;
}

/* ===============================
   MOBILE SLIDE-IN MENU
================================= */

#mobile-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  z-index: 998;
  display: none;
}

#mobile-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 260px;
  height: 100vh;
  background: #0a1931;
  padding: 1.5rem;
  z-index: 999;
  transition: right .35s ease-in-out;
  display: flex;
  flex-direction: column;
}

#mobile-menu.active { right: 0; }

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  margin-bottom: 1rem;
}

.mobile-menu-title {
  font-size: 1.2rem;
  font-weight: 700;
}

.mobile-menu-close {
  font-size: 1.9rem;
  cursor: pointer;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
}

.mobile-menu-links li {
  margin: .8rem 0;
}

.mobile-menu-links li a {
  color: white;
  font-size: 1.05rem;
  text-decoration: none;
  font-weight: 500;
}

/* ===============================
   HERO SLIDER — FINAL FIX
================================= */

.hero-slider {
  position: relative;
  width: 100%;
  height: 82vh;
  max-height: 720px;
  overflow: hidden;
  margin-top: 0 !important;
  padding-top: 0 !important;
  z-index: 1;
}

.slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.slide-text {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  width: 90%;
  max-width: 700px;
  z-index: 3;
}

.slide-text h2 {
  font-size: 2.7rem;
  font-weight: 700;
  text-shadow: 0 3px 12px rgba(0,0,0,0.4);
}

.slide-text p {
  margin-top: .5rem;
  font-size: 1.15rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}

/* MOBILE SLIDER FIX */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
    max-height: 480px;
  }
  .slide-text h2 {
    font-size: 2rem;
  }
  .slide-text p {
    font-size: 1rem;
  }
}

/* ===============================
   MOBILE HEADER FIX
================================= */

@media (max-width: 768px) {

  .logo img {
    height: 26px !important;
    max-width: 120px;
  }

  .logo span {
    font-size: 1rem !important;
  }

  .nav-container {
    padding: .55rem 0 !important;
  }

  /* Hide desktop nav ONLY on mobile */
  .nav-links {
    display: none !important;
  }

  /* Show mobile hamburger */
  .menu-toggle {
    display: block !important;
  }
}

/* ================================
   FIX — Ensure navigation appears on desktop
================================ */

@media (min-width: 769px) {

  /* Force desktop nav to show */
  .nav-links {
    display: flex !important;
  }

  /* Hide hamburger on desktop */
  .menu-toggle {
    display: none !important;
  }
}

/* Fix header padding ONLY for nav-container */
.header .nav-container {
  padding-top: 0.45rem !important;
  padding-bottom: 0.45rem !important;
}

/* 🔥 FORCE DESKTOP NAV ALWAYS VISIBLE */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
    }
    .menu-toggle {
        display: none !important;
    }
}

/* ===============================
   MAP – RESPONSIVE LAYOUT
================================= */

.map-wrapper {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 1.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.map-wrapper iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .map-wrapper iframe {
    height: 240px;
  }
  .map-placeholder {
    height: 220px;
  }
}

/* ===============================
   MOBILE MENU — MOVE TO LEFT SIDE
================================= */

#mobile-menu {
  left: -280px !important;
  right: auto !important;
  transition: left .35s ease-in-out !important;
}

#mobile-menu.active {
  left: 0 !important;
}

#mobile-overlay {
  left: 0;
  right: 0;
}

.sidebar img {
    display:block;
    margin:auto;
}

/* ===== COOKIE CONSENT VCARD ===== */

/* ===============================
   ADMIN SIDEBAR OPEN/CLOSE (required by admin-app.js refactor)
   - Keeps mobile sidebar hidden off-canvas by default
   - Add `#sidebar.open` to show it; toggled by `#btn-menu`
   =============================== */
#sidebar {
  transform: translateX(-110%);
  transition: transform .25s ease;
  z-index: 10000;
}

#sidebar.open {
  transform: translateX(0);
}

/* small helper for the burger button */
.icon-btn#btn-menu { cursor: pointer; }

.cookie-card{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  z-index:9999;
  max-width:420px;
  width:calc(100% - 32px);
}

.cookie-inner{
  background:rgba(255,255,255,0.95);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 20px 50px rgba(15,23,42,.35);
  border:1px solid rgba(148,163,184,.35);
  font-family:"Segoe UI",system-ui,sans-serif;
}

.cookie-header{
  font-size:1.05rem;
  margin-bottom:.4rem;
}

.cookie-text{
  font-size:.95rem;
  line-height:1.6;
  color:#374151;
}

.cookie-links{
  margin-top:.6rem;
  font-size:.85rem;
}
.cookie-links a{
  color:#2563eb;
  text-decoration:none;
}
.cookie-links a:hover{text-decoration:underline;}

.cookie-actions{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  margin-top:14px;
}

.cookie-actions .btn{
  padding:7px 14px;
  border-radius:10px;
  font-size:.85rem;
}
.cookie-actions .btn-outline{
  background:#f1f5f9;
  border:1px solid #cbd5f5;
}

/* ===== COOKIE CONSENT CARD ===== */
.cookie-card{
  position:fixed;
  bottom:24px;
  left:50%;
  transform:translateX(-50%) translateY(40px);
  max-width:720px;
  width:calc(100% - 32px);
  background:rgba(255,255,255,0.96);
  border-radius:22px;
  border:1px solid rgba(148,163,184,.35);
  box-shadow:0 25px 60px rgba(15,23,42,.25);
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:all .45s ease;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.cookie-card.show{
  opacity:1;
  transform:translateX(-50%) translateY(0);
  pointer-events:auto;
}

.cookie-content{
  padding:1.4rem 1.6rem;
  display:flex;
  gap:1.2rem;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
}

.cookie-text{
  flex:1;
  min-width:240px;
}

.cookie-text strong{
  display:block;
  font-size:1.05rem;
  margin-bottom:.3rem;
}

.cookie-text p{
  font-size:.95rem;
  color:#374151;
  line-height:1.6;
}

.cookie-actions{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
}

.cookie-btn{
  border:none;
  border-radius:12px;
  padding:8px 14px;
  font-size:.9rem;
  cursor:pointer;
  transition:.2s ease;
}

.cookie-btn.accept{
  background:#2563eb;
  color:#fff;
}
.cookie-btn.accept:hover{background:#1e40af;}

.cookie-btn.reject{
  background:#e5e7eb;
  color:#111827;
}
.cookie-btn.reject:hover{background:#d1d5db;}

.cookie-link{
  font-size:.85rem;
  color:#2563eb;
  text-decoration:none;
}
.cookie-link:hover{text-decoration:underline;}

@media(max-width:640px){
  .cookie-content{
    flex-direction:column;
    align-items:flex-start;
  }
}
