/* elegant-v23 */
*{box-sizing:border-box}
:root{
  --gold:#b8963e;
  --gold-dark:#9a7c32;
  --gold-light:#d4af6a;
  --charcoal:#1c1917;
  --bg:#f7f5f0;
  --card:#fff;
  --text:#222;
}
html,body{margin:0;padding:0;width:100%;max-width:100%;overflow-x:hidden;background:var(--bg);color:var(--text);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}
html:has(body.image-page){background:#11100e}

/* ── Site-wide top navigation ─────────────────────────────────────────────── */
.site-nav{
  width:100%;
  background:var(--charcoal);
  display:flex;justify-content:center;
  gap:4px;padding:8px 16px;flex-wrap:wrap;
  box-sizing:border-box;
}
.site-nav a{
  color:rgba(255,255,255,.72);
  text-decoration:none;
  font-size:.83rem;font-weight:600;
  padding:5px 14px;border-radius:18px;
  transition:background .15s,color .15s;
  white-space:nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"]{
  background:rgba(255,255,255,.13);
  color:#fff;
}

/* ── Header ───────────────────────────────────────────────────────────────── */
.header{padding:18px 14px 8px;display:flex;align-items:center;justify-content:center;flex-direction:column;text-align:center}
.header h1{margin:0 0 8px;font-size:2rem;letter-spacing:.2px;line-height:1.2}
.name-alternates{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin:-2px 0 4px;color:#7a6b4b;font-size:.86rem}
.name-alternates span:not(:last-child)::after{content:"·";margin-inline-start:8px;color:#c8b47a}
.lang-switcher{margin:4px 0 8px}
.lang-switcher a{color:var(--gold);text-decoration:none;font-weight:700;margin:0 6px}
.lang-switcher a:hover{text-decoration:underline}

.header img.logo{
  width:72px;height:72px;border-radius:50%;
  object-fit:cover;margin-bottom:10px;
  box-shadow:0 8px 25px rgba(0,0,0,.18);
  border:3px solid #fff;
}
@media(min-width:768px){
  .header img.logo{width:90px;height:90px}
}

/* ── Category grid ────────────────────────────────────────────────────────── */
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:18px;max-width:1200px;margin:18px auto;padding:0 14px}
.card{display:flex;flex-direction:column;align-items:center;gap:10px;text-align:center;background:var(--card);border-radius:16px;padding:16px 12px;text-decoration:none;color:inherit;box-shadow:0 6px 20px rgba(0,0,0,.08);height:210px;transition:transform .15s ease,box-shadow .2s ease}
.card:hover{transform:translateY(-3px);box-shadow:0 10px 26px rgba(0,0,0,.12)}
.card img{width:92px;height:92px;border-radius:999px;object-fit:cover;background:#e5e7eb}
.card span{font-weight:600;font-size:.98rem;line-height:1.25;max-width:140px;text-align:center;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;margin-top:4px}

/* ── Gallery grid ─────────────────────────────────────────────────────────── */
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px;max-width:1200px;margin:18px auto;padding:0 14px}
.gallery .item{position:relative;border-radius:14px;overflow:hidden;background:#e9eef3;box-shadow:0 6px 18px rgba(0,0,0,.08);aspect-ratio:4/3;cursor:pointer}
.gallery .item img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;display:block}
.gallery .item:hover{transform:translateY(-2px);box-shadow:0 10px 26px rgba(0,0,0,.12);transition:transform .15s ease,box-shadow .2s ease}

/* ── Modal ────────────────────────────────────────────────────────────────── */
.modal{position:fixed;inset:0;background:rgba(0,0,0,.88);display:none;align-items:center;justify-content:center;z-index:9999;padding:8px}
.modal.show{display:flex}
.modal.focus{background:#000;padding:0}
.modal-content{background:#0f0f0f;border-radius:14px;width:min(960px,100%);max-height:calc(100vh - 16px);display:flex;flex-direction:column;position:relative;overflow:hidden}
.modal.focus .modal-content{border-radius:0;width:100vw;max-height:100vh}

/* Floating toolbar */
.modal-toolbar{position:absolute;top:0;left:0;right:0;display:flex;justify-content:space-between;align-items:center;padding:8px 10px;background:linear-gradient(to bottom,rgba(0,0,0,.62) 0%,transparent 100%);z-index:20;pointer-events:none}
.modal-ctrl-btn{pointer-events:all;width:34px;height:34px;border-radius:50%;background:rgba(0,0,0,.45);border:1px solid rgba(255,255,255,.2);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,transform .1s;line-height:1}
.modal-ctrl-btn:hover{background:rgba(0,0,0,.75);transform:scale(1.08)}
.modal-ctrl-btn svg{width:15px;height:15px;display:block}
.modal-close{font-size:20px}
.modal.focus .modal-toolbar{opacity:.5;transition:opacity .3s}
.modal.focus:hover .modal-toolbar{opacity:1}

/* Image area */
.modal-img-wrap{flex:1;min-height:0;display:flex;align-items:center;justify-content:center;position:relative;cursor:zoom-in;background:#000}
.modal.focus .modal-img-wrap{cursor:zoom-out}
.modal-img-wrap img{max-width:100%;max-height:56vh;object-fit:contain;user-select:none;-webkit-user-drag:none;display:block;pointer-events:none;transition:max-height .22s ease}
.modal.focus .modal-img-wrap img{max-height:100vh}

/* Nav arrows */
.nav-btn{position:absolute;top:50%;transform:translateY(-50%);background:rgba(0,0,0,.42);border:1px solid rgba(255,255,255,.15);color:#fff;width:40px;height:40px;border-radius:50%;cursor:pointer;font-size:18px;display:flex;align-items:center;justify-content:center;z-index:14;transition:background .15s,opacity .2s}
.nav-btn:hover{background:rgba(0,0,0,.75)}
#prev-btn{left:10px}#next-btn{right:10px}
.modal.focus .nav-btn{opacity:.3}
.modal.focus .nav-btn:hover{opacity:1}

/* Actions strip */
.modal-actions{flex-shrink:0;padding:9px 12px;background:rgba(255,255,255,.03);border-top:1px solid rgba(255,255,255,.08);display:flex;gap:8px;flex-wrap:wrap;align-items:center;justify-content:center;transition:opacity .2s}
.modal.focus .modal-actions{position:absolute;bottom:0;left:0;right:0;opacity:0;pointer-events:none;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,transparent 100%);border-top:none;padding:24px 12px 14px}
.modal.focus:hover .modal-actions{opacity:1;pointer-events:all}

/* Icon buttons */
.icon-btn{width:40px;height:40px;border-radius:50%;background:rgba(255,255,255,.13);border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;text-decoration:none;color:#fff;transition:transform .15s,background .15s}
.icon-btn:hover{transform:scale(1.1);background:var(--gold)}
.icon-btn svg{width:18px;height:18px;fill:#fff;display:block}
.mobile-close-action{display:none}
.mobile-close-label{color:#fff;font-size:.72rem;line-height:1;opacity:.82}

.meta-pill{background:rgba(255,255,255,.1);color:#fff;padding:7px 12px;border-radius:999px;font-size:.84rem;white-space:nowrap}

/* Comments */
.comments-wrap{flex-shrink:0;background:#0f172a;border-top:1px solid rgba(255,255,255,.07);padding:12px;color:#fff;max-height:30vh;overflow-y:auto}
.modal.focus .comments-wrap{display:none}
.comments-list{display:flex;flex-direction:column;gap:10px;margin-bottom:12px}
.comment{background:rgba(255,255,255,.08);padding:10px;border-radius:10px}
.comment-meta{display:flex;gap:10px;align-items:baseline;justify-content:space-between;font-size:.92rem;opacity:.95}
.comment-when{opacity:.7;font-size:.85rem}
.comment-text{margin-top:6px;line-height:1.35}
.comment-empty{opacity:.75;text-align:center;padding:10px 0}

.comment-form{display:grid;gap:8px;position:relative}
.comment-field{display:grid;gap:5px}
.comment-field label{font-size:.84rem;font-weight:700;line-height:1.35;color:rgba(255,255,255,.9);text-align:start}
.comment-form input:not(.hp-field),.comment-form textarea{width:100%;border-radius:10px;border:1px solid rgba(255,255,255,.15);background:rgba(0,0,0,.25);color:#fff;padding:10px;outline:none}
.comment-form textarea{min-height:70px;resize:vertical}
.comment-form [aria-invalid=true]{border-color:#fca5a5;box-shadow:0 0 0 2px rgba(252,165,165,.16)}
.comment-field-error{min-height:1.15em;color:#fecaca;font-size:.78rem;line-height:1.35;text-align:start}
.comment-submit{border:none;border-radius:10px;padding:10px 12px;background:var(--gold);color:#fff;font-weight:700;cursor:pointer}
.comment-submit:hover{background:var(--gold-dark)}
.comment-submit:disabled{opacity:.65;cursor:not-allowed}
.comment-submit:focus-visible{outline:3px solid rgba(212,175,106,.55);outline-offset:2px}
.comment-feedback{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:8px;
  margin-block:0 10px;
  padding:12px;
  border-radius:12px;
  border:1px solid transparent;
  text-align:start;
}
.comment-feedback::before,
.comment-feedback::after,
.comment-feedback *::before,
.comment-feedback *::after{
  content:none!important;
  display:none!important;
}
.comment-feedback[hidden]{display:none!important}
.comment-feedback--success{
  background:linear-gradient(180deg,rgba(184,150,62,.24),rgba(0,0,0,.28));
  border-color:rgba(212,175,106,.55);
  box-shadow:0 0 0 1px rgba(255,255,255,.04) inset;
}
.comment-feedback--error{
  background:rgba(127,29,29,.28);
  border-color:rgba(252,165,165,.45);
}
.comment-feedback-title{
  display:block;
  margin:0;
  font-size:1rem;
  line-height:1.35;
  color:#fff;
}
.comment-feedback-message{
  margin:0;
  font-size:.9rem;
  line-height:1.45;
  color:rgba(255,255,255,.86);
}
.comment-form-body[hidden]{display:none!important}
.comment-submit-status{display:none!important}

/* Mobile portrait — bottom-sheet */
@media(max-width:600px){
  .modal{padding:0;align-items:flex-end}
  .modal-toolbar{padding-top:max(14px, calc(8px + env(safe-area-inset-top, 0px)))}
  /* height (not just max-height) gives flex children a definite dimension */
  .modal-content{border-radius:20px 20px 0 0;width:100%;height:96vh;max-height:96vh}
  .modal.focus .modal-content{border-radius:0;height:100vh;max-height:100vh}
  /* Image fills the flex container exactly — object-fit:contain centres it */
  .modal-img-wrap img{width:100%;height:100%;max-height:none;object-fit:contain}
  .modal-actions{position:relative;padding-right:62px;gap:6px}
  .mobile-close-action{display:flex;flex-direction:column;align-items:center;gap:4px;position:absolute;right:8px;top:50%;transform:translateY(-50%)}
  .mobile-close-action .icon-btn{font-size:20px}
  #prev-btn{left:6px}#next-btn{right:6px}
}
/* Mobile landscape */
@media(max-height:480px) and (orientation:landscape){
  .modal-img-wrap img{width:100%;height:100%;max-height:none;object-fit:contain}
  .comments-wrap{max-height:20vh}
  .modal-actions{padding:6px 12px;gap:6px}
}

/* ── Image page ───────────────────────────────────────────────────────────── */
.image-page{
  background:
    radial-gradient(circle at 50% 18%,rgba(184,150,62,.07),transparent 42%),
    #11100e;
  color:#fff;min-height:100vh;
}
.image-page .image-shell{
  width:100%;max-width:720px;margin-inline:auto;box-sizing:border-box;
  min-height:100vh;display:flex;flex-direction:column;align-items:center;
  justify-content:flex-start;padding-block:28px 22px;padding-inline:12px;gap:14px;
}
.image-page .image-main{
  max-width:min(980px,96vw);max-height:70vh;
  border-radius:12px;border:1px solid rgba(255,255,255,.07);
  box-shadow:0 20px 55px rgba(0,0,0,.58),0 0 28px rgba(184,150,62,.07);
  cursor:zoom-in;
}
.is-lightbox-open{overflow:hidden}
.image-lightbox{position:fixed;inset:0;width:100%;max-width:100%;box-sizing:border-box;display:none;align-items:center;justify-content:center;background:rgba(0,0,0,0);opacity:0;visibility:hidden;z-index:10000;padding:4vh 12px;transition:opacity .24s ease,background .24s ease,visibility 0s linear .24s}
.image-lightbox.show{display:flex;background:rgba(0,0,0,.94);opacity:1;visibility:visible;transition:opacity .24s ease,background .24s ease}
.image-lightbox img{max-width:95vw;max-height:95vh;width:auto;height:auto;object-fit:contain;cursor:zoom-out;box-shadow:0 20px 60px rgba(0,0,0,.55);transform:translate(var(--lightbox-x,0),var(--lightbox-y,0)) scale(var(--lightbox-scale,.92));opacity:.2;transition:transform .3s cubic-bezier(.2,.8,.2,1),opacity .22s ease}
.image-lightbox.show img{transform:translate(0,0) scale(1);opacity:1}
.image-page .image-actions{
  display:flex;gap:9px;flex-wrap:wrap;align-items:center;justify-content:center;
  max-width:94vw;padding:8px 10px;
  border:1px solid rgba(255,255,255,.06);border-radius:999px;
  background:rgba(28,25,21,.72);
}
.image-page .icon-btn{
  width:42px;height:42px;flex:0 0 42px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.09);
  transition:background .16s ease,border-color .16s ease,color .16s ease;
}
.image-page .icon-btn:hover{
  transform:none;background:rgba(184,150,62,.2);
  border-color:rgba(212,175,106,.55);
}
.image-page .icon-btn:focus-visible,
.image-page .gallery-return-link:focus-visible,
.image-page .comment-submit:focus-visible{
  outline:3px solid rgba(212,175,106,.4);outline-offset:3px;
}
.image-page .gallery-return-link{
  min-height:42px;display:inline-flex;align-items:center;justify-content:center;
  gap:8px;padding:8px 15px;border-radius:999px;
  border:1px solid rgba(212,175,106,.52);
  background:rgba(184,150,62,.07);color:var(--gold-light);
  text-decoration:none;font-size:.9rem;font-weight:700;white-space:nowrap;
  transition:background .16s ease,border-color .16s ease,color .16s ease;
}
.image-page .gallery-return-link svg{
  width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.6;
}
.image-page .gallery-return-link:hover{
  background:rgba(184,150,62,.18);border-color:var(--gold-light);color:#f1d998;
}
.pill-link{padding:10px 14px;border-radius:999px;background:rgba(255,255,255,.14);color:#fff;text-decoration:none;font-weight:700}
.pill-link:hover{background:rgba(255,255,255,.22)}
.image-page .image-meta{display:flex;gap:8px;flex-wrap:wrap;justify-content:center;margin-top:-2px}
.image-page .image-meta .meta-pill{
  padding:6px 11px;background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.075);
  color:rgba(255,255,255,.78);font-size:.8rem;
}
.image-page .comments-wrap{
  width:min(720px,94vw);max-height:420px;overflow-y:auto;
  padding:18px;color:#f7f3eb;
  background:#191713;border:1px solid rgba(212,175,106,.13);
  border-radius:16px;box-shadow:0 16px 38px rgba(0,0,0,.3);
  scrollbar-width:thin;
  scrollbar-color:rgba(184,150,62,.45) rgba(255,255,255,.025);
}
.image-page .comments-wrap::-webkit-scrollbar{width:9px}
.image-page .comments-wrap::-webkit-scrollbar-track{background:rgba(255,255,255,.025);border-radius:999px}
.image-page .comments-wrap::-webkit-scrollbar-thumb{
  background:rgba(170,148,98,.42);border:2px solid #191713;border-radius:999px;
}
.image-page .comments-wrap::-webkit-scrollbar-thumb:hover{background:rgba(212,175,106,.58)}
.image-page .comments-list{gap:10px;margin-bottom:16px}
.image-page .comment{
  padding:12px 13px;background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.065);border-radius:11px;
}
.image-page .comment-meta strong{color:#fff;font-weight:700}
.image-page .comment-when{color:rgba(255,255,255,.52)}
.image-page .comment-text{
  margin-top:7px;color:rgba(255,255,255,.86);line-height:1.55;
  text-align:start;unicode-bidi:plaintext;overflow-wrap:anywhere;
}
.image-page .comment-empty{color:rgba(255,255,255,.58)}
.image-page .comment-form{gap:9px}
.image-page .comment-form input:not(.hp-field),
.image-page .comment-form textarea{
  background:#12110f;border:1px solid rgba(255,255,255,.11);
  color:#fff;padding:11px 12px;border-radius:9px;
  transition:border-color .16s ease,box-shadow .16s ease,background .16s ease;
}
.image-page .comment-form input:not(.hp-field)::placeholder,
.image-page .comment-form textarea::placeholder{color:rgba(255,255,255,.42)}
.image-page .comment-form input:not(.hp-field):focus,
.image-page .comment-form textarea:focus{
  border-color:rgba(212,175,106,.72);
  box-shadow:0 0 0 3px rgba(184,150,62,.12);background:#161410;
}
.image-page .comment-submit{
  min-height:42px;background:var(--gold);border:1px solid transparent;
  transition:background .16s ease,border-color .16s ease;
}
.image-page .comment-submit:hover{background:var(--gold-dark);border-color:rgba(255,255,255,.12)}
.image-page .comment-feedback{margin-top:2px}
.image-page .image-shell>.ad-slot{max-width:720px;margin:8px auto 2px;padding:0}

@media(max-width:600px){
  .image-page .image-shell{padding-block:14px 18px;padding-inline:12px;gap:12px}
  .image-page .image-main{max-width:calc(100vw - 20px);border-radius:10px}
  .image-page .image-actions{width:100%;max-width:100%;border-radius:18px;padding:9px}
  .image-page .gallery-return-link{flex-basis:100%;min-width:0}
  .image-page .comments-wrap{width:100%;max-height:52vh;padding:14px;border-radius:14px}
  .image-page .comment-meta{align-items:flex-start}
  .image-page .comment-when{white-space:normal;text-align:end}
  .image-page .image-shell>.ad-slot{width:100%}
}

/* ── Admin page ───────────────────────────────────────────────────────────── */
.admin{max-width:900px;margin:20px auto;padding:16px}
.admin .card{height:auto;align-items:stretch}
.admin form{display:grid;gap:12px}
.admin input[type=password],.admin input[type=text],.admin select{padding:10px;border-radius:10px;border:1px solid #ddd}
.admin input[type=file]{padding:10px;background:#fff;border-radius:10px;border:1px dashed #bbb}
.admin .actions{display:flex;gap:8px;flex-wrap:wrap;align-items:center}

/* Honeypot */
.comment-form .hp-field,.hp-field{position:absolute;inset-block-start:0;inset-inline-start:0;width:1px;height:1px;min-width:0;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;opacity:0;pointer-events:none}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.site-footer{
  width:100%;box-sizing:border-box;
  text-align:center;
  padding:32px 20px 24px;
  border-top:2px solid #e8d9b0;
  margin-top:40px;
  background:#fdf8ef;
  color:#555;font-size:.88rem;
}
.footer-brand{
  font-size:1rem;font-weight:700;
  color:var(--gold);letter-spacing:.04em;
  margin:0 0 14px;
}
.footer-nav{display:flex;flex-wrap:wrap;justify-content:center;gap:6px;margin-bottom:14px}
.footer-nav a{
  color:var(--gold);text-decoration:none;
  font-weight:600;font-size:.83rem;
  padding:4px 14px;border-radius:16px;
  border:1px solid #e0c87a;
  transition:background .15s,color .15s,border-color .15s;
}
.footer-nav a:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.footer-copy{margin:0;opacity:.5;font-size:.78rem}

/* Dark pages (image.php) */
.image-page .site-footer{background:transparent;border-top-color:rgba(255,255,255,.12);color:rgba(255,255,255,.6);margin-top:0}
.image-page .site-footer .footer-brand{color:var(--gold-light)}
.image-page .site-footer .footer-nav a{color:var(--gold-light);border-color:rgba(255,255,255,.2)}
.image-page .site-footer .footer-nav a:hover{background:rgba(255,255,255,.15);color:#fff;border-color:rgba(255,255,255,.4)}

/* ── Contact profile photo ───────────────────────────────────────────────── */
.contact-profile{text-align:center;margin:28px 0 4px}
.contact-profile-photo{
  width:100px;height:100px;border-radius:50%;
  object-fit:cover;object-position:top center;
  border:3px solid rgba(184,150,62,.5);
  box-shadow:0 4px 20px rgba(0,0,0,.1);
}

/* ── Content pages (About, Contact, Privacy) ──────────────────────────────── */
.content-page{max-width:780px;margin:24px auto;padding:0 18px}
.content-body{line-height:1.75;color:var(--text)}
.content-body h2{margin:28px 0 10px;font-size:1.15rem;color:var(--charcoal)}
.content-body p,.content-body ul{margin:0 0 14px}
.content-body ul{padding-inline-start:22px}
.content-body a{color:var(--gold)}
.content-body a:hover{text-decoration:underline}
.privacy-card{
  background:#fff;border-radius:18px;
  padding:34px 38px;
  box-shadow:0 4px 34px rgba(0,0,0,.06);
}
.privacy-updated{
  color:#8a7a5a;font-size:.9rem;
  margin-bottom:22px;
}
.privacy-section{
  padding:22px 0;
  border-top:1px solid #f0e8d0;
}
.privacy-section:first-of-type{border-top:none;padding-top:0}
.privacy-section h2{
  color:var(--gold);
  font-size:.78rem;font-weight:700;
  letter-spacing:.12em;text-transform:uppercase;
}
.privacy-section p{font-size:1rem;line-height:1.85}
.contact-email{font-size:1.1rem;font-weight:700}

/* ── Ad slots ─────────────────────────────────────────────────────────────── */
.ad-slot{width:100%;max-width:1200px;margin:12px auto;padding:0 14px}
.ad-slot--placeholder{
  display:flex;align-items:center;justify-content:center;
  height:90px;
  border:1px dashed #d4af6a;
  border-radius:10px;
  background:rgba(184,150,62,.04);
}
.ad-slot__label{font-size:.78rem;color:#c9a55a;letter-spacing:.08em;text-transform:uppercase}
.gallery .ad-slot{grid-column:1/-1;padding:0}

/* ── Load-more ────────────────────────────────────────────────────────────── */
.item--hidden{display:none}
.load-more-wrap{text-align:center;padding:8px 14px 24px}
.load-more-btn{
  display:inline-block;
  padding:12px 28px;border-radius:999px;
  border:2px solid var(--gold);
  background:transparent;color:var(--gold);
  font-size:1rem;font-weight:700;cursor:pointer;
  transition:background .15s ease,color .15s ease;
}
.load-more-btn:hover{background:var(--gold);color:#fff}

/* ── Admin media library ──────────────────────────────────────────────────── */
.admin-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(340px,1fr));gap:20px;padding:20px}
.admin-card{margin:0}
.admin-card-full{grid-column:1/-1}
.admin-notices{padding:0 20px 4px}

.admin-msg{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7;border-radius:8px;padding:10px 14px;margin:6px 0}
.admin-err{background:#fee2e2;color:#b91c1c;border:1px solid #fca5a5;border-radius:8px;padding:10px 14px;margin:6px 0}
.admin-warn{background:#fef9c3;color:#713f12;border:1px solid #fde68a;border-radius:8px;padding:10px 14px;margin:6px 0}

.admin-comment-filters{display:flex;flex-wrap:wrap;gap:8px;margin-top:12px}
.admin-comment-filters a{display:inline-flex;align-items:center;gap:7px;padding:7px 12px;border:1px solid #d1d5db;border-radius:999px;background:#fff;color:#374151;text-decoration:none;font-size:.86rem;font-weight:600}
.admin-comment-filters a span{display:inline-flex;min-width:22px;justify-content:center;padding:1px 6px;border-radius:999px;background:#f3f4f6;color:#6b7280;font-size:.75rem}
.admin-comment-filters a:hover{border-color:#2563eb;color:#1d4ed8}
.admin-comment-filters a.is-active{background:#2563eb;border-color:#2563eb;color:#fff}
.admin-comment-filters a.is-active span{background:rgba(255,255,255,.2);color:#fff}
.admin-comment-filters a:focus-visible,.comment-action-btn:focus-visible,.btn-danger-xs:focus-visible{outline:3px solid rgba(37,99,235,.35);outline-offset:2px}
.comment-status-badge{display:inline-block;padding:3px 9px;border-radius:999px;font-size:.76rem;font-weight:700;border:1px solid transparent}
.comment-status-badge--pending{background:#fef3c7;color:#92400e;border-color:#fde68a}
.comment-status-badge--approved{background:#d1fae5;color:#065f46;border-color:#6ee7b7}
.comment-status-badge--hidden{background:#e5e7eb;color:#374151;border-color:#d1d5db}
.comment-status-badge--unknown{background:#fee2e2;color:#991b1b;border-color:#fca5a5}
.comment-moderation-actions{display:flex;flex-wrap:wrap;align-items:center;gap:6px;min-width:170px}
.admin .comment-moderation-actions form{display:flex;flex-wrap:wrap;gap:6px}
.comment-action-btn{padding:5px 10px;border-radius:6px;border:1px solid transparent;cursor:pointer;font-size:.8rem;font-weight:700}
.comment-action-btn--approve{background:#d1fae5;color:#065f46;border-color:#6ee7b7}
.comment-action-btn--approve:hover{background:#a7f3d0}
.comment-action-btn--hide{background:#f3f4f6;color:#374151;border-color:#d1d5db}
.comment-action-btn--hide:hover{background:#e5e7eb}

.btn-primary{padding:10px 18px;border-radius:10px;background:#2563eb;color:#fff;border:none;cursor:pointer;font-size:.95rem;font-weight:600;transition:background .15s}
.btn-primary:hover{background:#1d4ed8}
.btn-secondary{padding:10px 18px;border-radius:10px;background:var(--gold);color:#fff;border:none;cursor:pointer;font-size:.95rem;font-weight:600;transition:background .15s}
.btn-secondary:hover{background:var(--gold-dark)}
.btn-xs{padding:5px 12px;border-radius:6px;background:#2563eb;color:#fff;border:none;cursor:pointer;font-size:.82rem;font-weight:600;transition:background .15s}
.btn-xs:hover{background:#1d4ed8}
.btn-danger-xs{padding:5px 12px;border-radius:6px;background:#fee2e2;color:#b91c1c;border:1px solid #fca5a5;cursor:pointer;font-size:.82rem;font-weight:600;transition:background .15s,color .15s}
.btn-danger-xs:hover{background:#b91c1c;color:#fff;border-color:#b91c1c}

.cat-checkboxes{display:grid;grid-template-columns:repeat(auto-fill,minmax(175px,1fr));gap:6px;margin:8px 0;max-height:300px;overflow-y:auto;border:1px solid #e5e7eb;border-radius:10px;padding:10px}
.cat-checkboxes--sm{grid-template-columns:repeat(auto-fill,minmax(140px,1fr));max-height:200px}
.check-label{display:flex;flex-direction:column;gap:2px;padding:7px 10px;border-radius:8px;border:1px solid #e5e7eb;cursor:pointer;transition:background .1s,border-color .1s}
.check-label:hover{background:#fdf8ed;border-color:#d4af6a}
.check-label input[type=checkbox]{margin-bottom:3px;cursor:pointer}
.cat-en{font-weight:600;font-size:.87rem}
.cat-rtl{font-size:.80rem;color:#555;direction:rtl}
.cat-count{font-size:.75rem;color:#9ca3af;margin-top:1px}

.img-preview{margin:10px 0;border-radius:10px;overflow:hidden;max-width:280px;border:2px solid #e5e7eb}
.img-preview img{display:block;width:100%;height:auto}
/* ── Bulk upload preview grid ─────────────────────────────────────────────── */
.bulk-preview-wrap{margin:12px 0;padding:12px;background:#f9fafb;border-radius:10px;border:1px solid #e5e7eb}
.bulk-preview-count{font-size:.88rem;font-weight:600;color:#374151;margin:0 0 10px}
.bulk-preview-grid{display:flex;flex-wrap:wrap;gap:8px}
.bulk-prev-item{display:flex;flex-direction:column;align-items:center;gap:4px;width:80px}
.bulk-prev-img{width:80px;height:80px;object-fit:cover;border-radius:8px;border:1px solid #e5e7eb;background:#e9eef3}
.bulk-prev-name{font-size:.65rem;color:#6b7280;text-align:center;line-height:1.2;max-height:2.4em;overflow:hidden;word-break:break-all}
.bulk-prev-more{width:80px;height:80px;border-radius:8px;border:2px dashed #d1d5db;display:flex;align-items:center;justify-content:center;font-size:.8rem;font-weight:600;color:#6b7280;background:#f3f4f6}

/* ── Admin bulk upload progress ───────────────────────────────────────────── */
.upload-progress-wrap{margin-top:12px;padding:14px;border:1px solid #d1d5db;border-radius:10px;background:#f9fafb}
.upload-progress-header{display:flex;align-items:center;justify-content:space-between;gap:12px;font-size:.9rem;font-weight:600;color:#374151}
.upload-progress-wrap progress{display:block;width:100%;height:16px;margin:10px 0 6px;accent-color:#2563eb}
.upload-progress-detail{min-height:1.2em;color:#6b7280;font-size:.8rem}
.upload-progress-result{display:grid;gap:6px;margin-top:10px;font-size:.84rem}
.upload-progress-result>div{padding:8px 10px;border-radius:7px;white-space:pre-line}
.upload-progress-result--success{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7}
.upload-progress-result--warning{background:#fef9c3;color:#713f12;border:1px solid #fde68a}
.upload-progress-result--error{background:#fee2e2;color:#991b1b;border:1px solid #fca5a5}
.upload-progress-media-link{display:inline-block;justify-self:start;margin-top:4px;color:#2563eb;font-weight:600}

/* ── Admin media grid ──────────────────────────────────────────────────────── */
.media-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px}
.media-card{border:1px solid #e5e7eb;border-radius:12px;overflow:hidden;background:#fff;display:flex;flex-direction:column}
.media-card-thumb{width:100%;aspect-ratio:4/3;overflow:hidden;background:#f3f4f6}
.media-card-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.media-card-body{padding:10px 12px;flex:1;display:flex;flex-direction:column;gap:6px;min-width:0}
.media-card-name{font-weight:600;font-size:.85rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.media-card-meta{font-size:.76rem;color:#9ca3af}
.media-card-actions{display:flex;flex-wrap:wrap;gap:8px;margin-top:auto;padding-top:8px;align-items:flex-start}
.load-more-wrap{text-align:center;padding:20px 0}
.load-more-count{font-size:.83rem;color:#9ca3af;margin-top:8px}

.media-search-summary{font-size:.85rem;font-weight:400;opacity:.65}
.admin .media-search-form{display:flex;align-items:center;gap:8px;margin:0 0 18px;max-width:820px}
.admin .media-search-form input[type=search]{flex:1;min-width:180px;padding:10px;border-radius:10px;border:1px solid #d1d5db;font:inherit}
.media-filter-check{display:flex;align-items:center;gap:6px;padding:8px 10px;border:1px solid #d1d5db;border-radius:9px;background:#f9fafb;color:#374151;font-size:.86rem;white-space:nowrap;cursor:pointer}
.media-filter-check input{margin:0;cursor:pointer}
.media-search-clear{padding:9px 4px;color:#6b7280;font-size:.9rem;font-weight:600;text-decoration:none}
.media-search-clear:hover{color:#374151;text-decoration:underline}
.media-search-empty{color:#6b7280;margin:4px 0}

@media(max-width:600px){
  .admin .media-search-form{flex-wrap:wrap}
  .admin .media-search-form input[type=search]{flex-basis:100%;width:100%}
  .media-filter-check{flex:1;justify-content:center}
}

.pills{display:flex;flex-wrap:wrap;gap:4px;margin:3px 0}
.pill{font-size:.73rem;padding:2px 8px;border-radius:999px;white-space:nowrap}
.pill-cat{background:#fef3d8;color:#7a5c1e}
.pill-tag{background:#fef3c7;color:#92400e}
.pill-warn{background:#fee2e2;color:#b91c1c}

.inline-del{display:inline}

details.admin-expand>summary{cursor:pointer;list-style:none;display:inline-flex;align-items:center;gap:4px;padding:5px 12px;border-radius:6px;border:1px solid #d1d5db;background:#f9fafb;font-size:.82rem;font-weight:600;color:#374151;user-select:none}
details.admin-expand>summary::-webkit-details-marker{display:none}
details.admin-expand>summary::before{content:'▸ ';font-size:.7em;opacity:.7}
details.admin-expand[open]>summary::before{content:'▾ '}
details.admin-expand>.detail-body{margin-top:10px;padding:12px;border-radius:8px;background:#f9fafb;border:1px solid #e5e7eb}

.edit-cat-form{display:flex;flex-direction:column;gap:6px;min-width:220px}
.edit-cat-form label{font-size:.8rem;font-weight:600;color:#374151;margin:0}
.edit-cat-form input{padding:6px 8px;border-radius:6px;border:1px solid #d1d5db;font-size:.87rem}

.table-scroll{overflow-x:auto}
.admin-table{width:100%;border-collapse:collapse;font-size:.87rem}
.admin-table th{text-align:left;padding:8px 10px;border-bottom:2px solid #e5e7eb;font-weight:600;white-space:nowrap}
.admin-table td{padding:8px 10px;border-bottom:1px solid #f3f4f6;vertical-align:top}
.admin-table tbody tr:hover td{background:#fafafa}
.admin-table code{background:#f3f4f6;padding:2px 5px;border-radius:4px;font-size:.80rem}
.category-order-card{
  margin:0 0 18px;
  padding:14px;
  border:1px solid #e5e7eb;
  border-radius:12px;
  background:#f9fafb;
}
.category-order-card h3{margin:0 0 8px;font-size:1rem}
.category-order-form{display:grid;gap:12px}
.category-order-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:8px;
}
.category-order-item{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid #e5e7eb;
  border-radius:10px;
  background:#fff;
}
.category-order-item.is-dragging{opacity:.72;border-color:#2563eb;box-shadow:0 0 0 2px rgba(37,99,235,.12)}
.category-order-handle{
  cursor:grab;
  user-select:none;
  touch-action:none;
  font-size:1.1rem;
  line-height:1;
  color:#6b7280;
  padding:4px 2px;
}
.category-order-handle:active{cursor:grabbing}
.category-order-name{
  font-weight:600;
  color:#111827;
  min-width:0;
  overflow-wrap:anywhere;
}
.category-order-move{display:flex;gap:4px}
.category-order-move button{
  border:1px solid #d1d5db;
  border-radius:8px;
  background:#fff;
  color:#374151;
  font:inherit;
  font-size:.9rem;
  line-height:1;
  padding:6px 8px;
  cursor:pointer;
}
.category-order-move button:hover{background:#f3f4f6}
.category-order-move button:focus-visible,.category-order-handle:focus-visible{outline:3px solid rgba(37,99,235,.35);outline-offset:2px}
@media(max-width:600px){
  .category-order-item{grid-template-columns:auto 1fr auto;gap:8px;padding:10px}
  .category-order-move button{padding:8px 10px}
}
.actions-cell{white-space:nowrap;min-width:120px}
.no-wrap{white-space:nowrap}
.no-delete-hint{font-size:.78rem;color:#9ca3af;display:block;margin-top:4px}
.hint{font-size:.80rem;color:#6b7280;margin:4px 0 8px;line-height:1.5}

.category-thumb-preview{display:block;width:56px;height:56px;object-fit:cover;border-radius:9px;border:1px solid #e5e7eb;background:#f3f4f6}
.category-thumb-missing{display:flex;align-items:center;justify-content:center;width:56px;height:56px;border:1px dashed #d1d5db;border-radius:9px;background:#f9fafb;color:#9ca3af;font-size:.68rem;text-align:center}
.category-image-action{margin-top:6px}
.category-image-form{min-width:220px}
.category-image-form label{font-size:.8rem;font-weight:600;color:#374151;white-space:normal}
.category-image-form input[type=file]{width:100%;min-width:0}
.category-image-remove{margin-top:6px}

/* ── About page ───────────────────────────────────────────────────────────── */
.about-hero{
  background:linear-gradient(145deg,#1c1917 0%,#3d2b1e 55%,#6b4c1a 100%);
  color:#fff;text-align:center;
  padding:56px 20px 44px;
}
.about-photo{
  width:110px;height:110px;border-radius:50%;
  object-fit:cover;object-position:top center;
  border:4px solid rgba(184,150,62,.55);
  margin:0 auto 22px;display:block;
  box-shadow:0 8px 30px rgba(0,0,0,.3);
}
.about-avatar{
  width:88px;height:88px;border-radius:50%;
  background:rgba(255,255,255,.1);
  border:3px solid rgba(184,150,62,.6);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 20px;
  font-size:2.6rem;font-weight:700;line-height:1;
  user-select:none;color:var(--gold-light);
}
.about-name{font-size:clamp(1.7rem,4vw,2.4rem);font-weight:700;margin:0 0 5px}
.about-city{font-size:.82rem;letter-spacing:.12em;text-transform:uppercase;opacity:.6;margin:0 0 4px}
.about-role{font-size:.97rem;font-style:italic;opacity:.80;margin:0 0 26px;color:var(--gold-light)}
.about-lang-switch{display:flex;gap:8px;justify-content:center;flex-wrap:wrap}
.about-lang-switch a{
  color:rgba(255,255,255,.68);text-decoration:none;
  font-size:.82rem;padding:5px 16px;border-radius:18px;
  border:1px solid rgba(184,150,62,.35);
  transition:all .15s;
}
.about-lang-switch a:hover,
.about-lang-switch a.current{
  background:rgba(184,150,62,.22);
  color:#fff;border-color:rgba(184,150,62,.7);
}
.about-main{max-width:760px;margin:44px auto 20px;padding:0 18px}
.about-card{
  background:#fff;border-radius:18px;
  padding:40px 44px;
  box-shadow:0 4px 40px rgba(0,0,0,.07);
  font-size:1.05rem;line-height:1.9;color:#2d2d2d;
}

/* Sections inside the card */
.about-section{padding-bottom:32px;margin-bottom:32px;border-bottom:1px solid #f0e8d0}
.about-section--last{border-bottom:none;padding-bottom:0;margin-bottom:0}
.about-section-title{
  font-size:.72rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;
  color:var(--gold);margin:0 0 16px;
}
.about-section p{margin:0 0 16px}
.about-section p:last-child{margin:0}
.about-lead{
  font-size:1.1rem;font-weight:600;
  color:var(--charcoal);line-height:1.72;
  margin:0 0 20px;
}

/* Photo credit note */
.about-note{
  font-size:.88rem;font-style:italic;color:#8a7a5a;
  margin:16px 0 0;padding:10px 16px;
  background:#fdf8ef;border-radius:0 8px 8px 0;
  border-left:3px solid #d4af6a;
}
[dir=rtl] .about-note{
  border-left:none;border-right:3px solid #d4af6a;
  border-radius:8px 0 0 8px;
}

/* Values pills */
.about-values{
  list-style:none;padding:0;margin:12px 0 16px;
  display:flex;flex-wrap:wrap;gap:8px;
}
.about-values li{
  padding:5px 16px;border-radius:999px;
  border:1px solid #e0c87a;
  font-size:.88rem;color:#5c4a1e;background:#fdf8ed;
}

/* Message block */
.about-message-block{
  background:linear-gradient(135deg,#1c1917 0%,#3d2b1e 100%);
  color:#fff;border-radius:14px;
  padding:28px 32px;
  font-size:1rem;line-height:1.85;
}
.about-message-block p{margin:0}

/* Site credit block — cream/gold accent, lighter than the dark message box */
.about-site-credit{
  background:#fdfaf3;border:1px solid #e8d8a0;
  border-left:3px solid #c9a84c;
  border-radius:0 10px 10px 0;
  padding:20px 24px;
  font-size:.97rem;line-height:1.85;color:#3d2d1a;
}
[dir=rtl] .about-site-credit{
  border-left:none;border-right:3px solid #c9a84c;
  border-radius:10px 0 0 10px;
}
.about-site-credit p{margin:0}

/* Sharing notice — outside the card, above the share button */
.about-share-notice{
  max-width:740px;margin:28px auto 0;
  background:#fdfaf3;border:1px solid #e8d8a0;
  border-left:3px solid #c9a84c;
  border-radius:0 10px 10px 0;
  padding:16px 22px;
  text-align:start;font-size:.88rem;line-height:1.8;color:#4a3a1e;
}
[dir=rtl] .about-share-notice{
  border-left:none;border-right:3px solid #c9a84c;
  border-radius:10px 0 0 10px;
}
.about-share-notice-title{
  font-size:.68rem;font-weight:700;
  letter-spacing:.13em;text-transform:uppercase;
  color:var(--gold);margin:0 0 8px;
}
.about-share-notice p{margin:0}

/* Share CTA */
.about-share{
  text-align:center;
  padding:36px 20px 20px;
  margin-top:40px;
  border-top:1px solid #e8d9b0;
}
.about-share-lead{
  font-size:.97rem;color:#5c4a1e;
  margin:0 auto 20px;line-height:1.7;
  max-width:540px;
}
.about-share-btn{
  display:inline-block;padding:13px 36px;
  border-radius:999px;border:none;
  background:var(--gold);color:#fff;
  font-weight:700;font-size:.95rem;
  letter-spacing:.03em;cursor:pointer;
  transition:background .15s,transform .15s;
  box-shadow:0 4px 20px rgba(184,150,62,.28);
}
.about-share-btn:hover{background:var(--gold-dark);transform:translateY(-2px)}
.about-share-confirm{
  margin:12px 0 0;font-size:.85rem;
  color:var(--gold);font-weight:600;min-height:1.2em;
}

@media(max-width:600px){
  .about-card{padding:28px 22px}
  .about-lead{font-size:1rem}
  .about-message-block{padding:22px 20px}
}

/* ── Homepage Videos tile ─────────────────────────────────────────────────── */
.card-icon-videos{
  width:92px;height:92px;border-radius:999px;display:flex;align-items:center;justify-content:center;background:#1a1714;box-shadow:inset 0 0 0 2px #c9a84c;
}
.card-icon-videos svg{width:92px;height:92px;display:block}

/* ── Public video listing ─────────────────────────────────────────────────── */
.video-grid-wrap{max-width:1200px;margin:18px auto;padding:0 14px;box-sizing:border-box}
.video-empty-state{display:flex;justify-content:center;width:100%}
.video-empty{
  margin:0;opacity:.75;padding:24px 12px;max-width:100%;text-align:center;unicode-bidi:plaintext;
}
.video-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:18px}
.video-card{
  display:flex;flex-direction:column;background:var(--card);border-radius:16px;overflow:hidden;
  text-decoration:none;color:inherit;box-shadow:0 6px 20px rgba(0,0,0,.08);transition:transform .15s ease,box-shadow .2s ease;
}
.video-card:hover{transform:translateY(-3px);box-shadow:0 10px 26px rgba(0,0,0,.12)}
.video-card-thumb{position:relative;display:block;aspect-ratio:16/9;background:#111;overflow:hidden}
.video-card-thumb img{width:100%;height:100%;object-fit:cover;display:block}
.video-card-play{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:center;
  background:linear-gradient(to top,rgba(0,0,0,.45),rgba(0,0,0,.08));
}
.video-card-play svg{width:54px;height:54px;fill:#fff;filter:drop-shadow(0 2px 8px rgba(0,0,0,.45))}
.video-card-body{padding:14px 14px 16px;display:grid;gap:6px}
.video-card-title{font-weight:700;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.video-card-desc{font-size:.92rem;opacity:.78;line-height:1.4;display:-webkit-box;-webkit-line-clamp:3;-webkit-box-orient:vertical;overflow:hidden}

/* ── Video detail page ────────────────────────────────────────────────────── */
.video-page .video-shell{max-width:960px}
.video-player-wrap{width:100%;aspect-ratio:16/9;background:#000;border-radius:14px;overflow:hidden;box-shadow:0 8px 28px rgba(0,0,0,.35)}
.video-player{width:100%;height:100%;border:0;display:block}
.video-detail-title{
  color:#fff;text-align:center;font-size:clamp(1.05rem,2.4vw,1.45rem);line-height:1.35;margin:0;padding:0 8px;
}
.video-detail-desc{
  color:rgba(255,255,255,.78);text-align:center;max-width:760px;margin:0 auto;line-height:1.55;padding:0 12px;
}

/* ── Admin videos ─────────────────────────────────────────────────────────── */
.admin-wrap{max-width:1100px;margin:0 auto;padding:16px}
.admin-header{display:flex;flex-wrap:wrap;gap:12px;align-items:center;justify-content:space-between;margin-bottom:16px}
.admin-nav a{color:#2563eb;text-decoration:none}
.admin-section-nav{
  display:flex;flex-wrap:wrap;gap:8px 12px;align-items:center;
  max-width:1100px;margin:0 auto 14px;padding:0 16px;
}
.admin-section-nav a{
  color:#2563eb;text-decoration:none;font-weight:600;
  padding:7px 12px;border-radius:999px;border:1px solid transparent;
}
.admin-section-nav a:hover{background:#eff6ff;text-decoration:underline}
.admin-section-nav .is-active{
  font-weight:700;color:#1f2937;background:#e5e7eb;
  border:1px solid #d1d5db;border-radius:999px;padding:7px 12px;
}
.admin-section-nav a:focus-visible,.admin-section-nav .is-active:focus-visible{
  outline:3px solid rgba(37,99,235,.35);outline-offset:2px;
}
.admin-logout{margin:0}
.notice.success{background:#d1fae5;color:#065f46;border:1px solid #6ee7b7;border-radius:8px;padding:10px 14px;margin:8px 0}
.notice.error{background:#fee2e2;color:#b91c1c;border:1px solid #fca5a5;border-radius:8px;padding:10px 14px;margin:8px 0}
.admin-form-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:12px}
.admin-form-grid label{display:grid;gap:6px;font-weight:600;font-size:.9rem}
.admin-form-grid textarea,.admin-form-grid input[type=url],.admin-form-grid input[type=text]{font:inherit;padding:10px;border-radius:10px;border:1px solid #ddd}
.video-admin-thumb{width:72px;height:40px;object-fit:cover;border-radius:6px;background:#111}
.admin-inline-edit{margin-top:8px}
.admin-inline-edit summary{cursor:pointer;font-weight:600}
.admin-form-grid.compact{gap:8px;margin-top:8px}
.admin-actions-cell{display:flex;flex-wrap:wrap;gap:8px;align-items:flex-start}
.inline-form{display:inline}
.btn-danger{background:#b91c1c;color:#fff;border:none;border-radius:8px;padding:8px 12px;cursor:pointer}
.btn-danger:hover{background:#991b1b}
.admin-form-grid .full{grid-column:1/-1}
.admin-form-grid .checkbox-row{display:flex;align-items:center;gap:8px}
.homepage-videos-toggle{margin-top:12px;padding-top:12px;border-top:1px solid #e5e7eb}
