:root {
  --bg-deep: #F5F0E4; --bg-velvet: #FFFFFF; --bg-card: #FFFFFF; --cream: #FAF6EE; --sand: #F2EBDC; --text: #1A2332; --text-soft: #4A5568;
  --gold: #D4AF37; --gold-metal: #E6C665; --gold-dark: #9E7B1A; --border: rgba(158,123,26,.25); --border-strong: rgba(158,123,26,.55);
  --royal: #0F2C59; --royal-deep: #081B3B; --royal-light: #1E4280; --kesari: #D96B27; --kesari-light: #FCEAD8; --rani: #9E1B4F;
  --gold-light: var(--royal); --maroon: var(--royal);
  --font-head: 'Playfair Display', Georgia, serif; --font-body: 'Plus Jakarta Sans', system-ui, sans-serif; --font-kicker: 'Marcellus', serif;
  --bandhani: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d4af37' fill-opacity='0.08' fill-rule='evenodd'%3E%3Cpath d='M20 0l20 20-20 20L0 20zM20 8l12 12-12 12L8 20z'/%3E%3Ccircle cx='20' cy='20' r='3' fill='%23d96b27' fill-opacity='0.12'/%3E%3C/g%3E%3C/svg%3E");
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); background: var(--bg-deep); color: var(--text); line-height: 1.6; min-height: 100vh; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1 { font-family: var(--font-head); font-size: 2rem; color: var(--royal); }
.muted { color: var(--text-soft); font-size: .92rem; }
.inline { display: inline; }
.lehariya { display: block; height: 4px; background: linear-gradient(90deg, var(--royal) 0%, var(--kesari) 50%, var(--gold) 100%); border-radius: 2px; }

/* Login */
.login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px; background: var(--bandhani), radial-gradient(circle at 20% 20%, rgba(15,44,89,.10), transparent 50%), radial-gradient(circle at 80% 80%, rgba(212,175,55,.18), transparent 50%), var(--bg-deep); }
.login-card { width: min(440px, 100%); background: var(--bg-velvet); border: 1px solid var(--border-strong); border-radius: 22px; padding: 44px 40px; box-shadow: 0 30px 60px rgba(15,44,89,.14); text-align: center; position: relative; overflow: hidden; }
.login-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--royal), var(--kesari), var(--gold)); }
.login-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 26px; }
.login-brand span { display: flex; flex-direction: column; text-align: left; font-family: var(--font-head); font-size: 1.3rem; font-weight: 700; color: var(--royal); line-height: 1.05; }
.login-brand small { font-family: var(--font-kicker); font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--kesari); margin-top: 4px; }
.login-brand.small span { font-size: 1.05rem; }
.login-card h1 { margin-bottom: 6px; }
.login-card form { margin-top: 26px; text-align: left; display: flex; flex-direction: column; gap: 16px; }
label { display: flex; flex-direction: column; gap: 8px; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark); font-weight: 700; }
input, select { width: 100%; background: #FFFDF8; border: 1px solid var(--border-strong); color: var(--text); padding: 13px 15px; border-radius: 12px; font: inherit; font-size: .95rem; }
input:focus, select:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(15,44,89,.14); }
.btn-gold { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: .9rem 1.6rem; border-radius: 999px; background: linear-gradient(135deg, #E6C665, #D4AF37 50%, #9E7B1A); color: var(--royal-deep); font-weight: 700; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; transition: transform .3s, box-shadow .3s; white-space: nowrap; box-shadow: 0 6px 18px rgba(212,175,55,.3); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(212,175,55,.45); }
.btn-gold:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; padding: .75rem 1.2rem; border-radius: 999px; border: 1.5px solid var(--royal); color: var(--royal); background: #fff; font-size: .82rem; font-weight: 600; transition: background-color .3s, color .3s; }
.btn-ghost:hover { background: var(--royal); color: #fff; }
.btn-ghost.approve { border-color: #15803d; color: #15803d; }
.btn-ghost.approve:hover { background: #15803d; color: #fff; }
.btn-ghost:disabled { opacity: .5; cursor: not-allowed; }
.back-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 24px; font-size: .85rem; color: var(--text-soft); }
.back-link:hover { color: var(--royal); }
.alert { padding: 14px 16px; border-radius: 12px; font-size: .92rem; margin: 18px 0 0; text-align: left; display: flex; gap: 10px; align-items: center; }
.alert-error { background: rgba(197,48,48,.08); border: 1px solid rgba(197,48,48,.4); color: #9b2c2c; }
.alert-success { background: rgba(23,163,74,.08); border: 1px solid rgba(23,163,74,.4); color: #166534; }

/* Shell: left sidebar + content */
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar { position: relative; width: 264px; flex-shrink: 0; background: var(--cream); background-image: var(--bandhani); border-right: 1px solid var(--border-strong); display: flex; flex-direction: column; padding: 22px 14px; gap: 14px; position: sticky; top: 0; height: 100vh; overflow-y: auto; }
.sidebar-brand { margin: 0 8px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 6px; }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 12px; font-size: .92rem; font-weight: 600; color: var(--text-soft); transition: background-color .25s, color .25s, box-shadow .25s; }
.sidebar-nav a i { width: 20px; text-align: center; color: var(--gold-dark); font-size: .95rem; }
.sidebar-nav a span { flex: 1; }
.sidebar-nav a:hover { background: var(--sand); color: var(--royal); }
.sidebar-nav a.active { background: var(--royal); color: var(--cream); box-shadow: 0 4px 12px rgba(15,44,89,.25); }
.sidebar-nav a.active i { color: var(--gold-metal); }
.nav-count { min-width: 22px; height: 22px; padding: 0 7px; border-radius: 999px; background: var(--kesari); color: #fff; font-size: .72rem; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.nav-badge { font-size: .62rem; font-style: normal; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 3px 7px; border-radius: 6px; background: rgba(212,175,55,.18); color: var(--gold-dark); }
.sidebar-nav a.active .nav-badge { background: rgba(255,255,255,.16); color: var(--gold-metal); }
.sidebar-foot { margin-top: auto; border-top: 1px solid var(--border); padding-top: 16px; display: flex; flex-direction: column; gap: 12px; font-size: .86rem; }
.sidebar-foot a { color: var(--text-soft); display: inline-flex; gap: 8px; align-items: center; padding: 0 6px; }
.sidebar-foot a:hover { color: var(--royal); }
.admin-user { display: inline-flex; gap: 8px; align-items: center; color: var(--royal); font-weight: 600; padding: 0 6px; }
.admin-content { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.admin-topbar { display: flex; align-items: center; gap: 16px; padding: 14px 32px; background: var(--bg-velvet); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 10; }
.topbar-title { font-family: var(--font-kicker); font-size: .8rem; letter-spacing: .24em; text-transform: uppercase; color: var(--kesari); }
.topbar-date { margin-left: auto; font-size: .82rem; color: var(--text-soft); display: inline-flex; gap: 8px; align-items: center; }
.sidebar-burger { display: none; width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--border-strong); align-items: center; justify-content: center; color: var(--royal); cursor: pointer; }
.sidebar-backdrop { display: none; }
.sidebar-close { display: none; }
.admin-main { width: min(1400px, 100% - 64px); margin: 28px auto 64px; }
.admin-main .alert { margin: 0 0 22px; }
.admin-title-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; margin-bottom: 26px; flex-wrap: wrap; }

/* Dashboard bits */
.summary-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-bottom: 26px; }
.summary-grid.three { grid-template-columns: repeat(3, 1fr); }
.summary-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 18px 20px; display: flex; flex-direction: column; gap: 6px; transition: border-color .3s, transform .3s; }
.summary-card:hover, .summary-card.active { border-color: var(--royal); transform: translateY(-2px); }
.summary-card span { font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; color: var(--text-soft); }
.summary-card strong { font-family: var(--font-head); font-size: 2rem; color: var(--royal); line-height: 1; }
.summary-card.s-new strong { color: #1d6fa5; } .summary-card.s-contacted strong { color: var(--kesari); } .summary-card.s-booked strong { color: #15803d; } .summary-card.s-closed strong { color: #6b6378; }
.filter-bar { display: flex; gap: 12px; align-items: center; margin-bottom: 20px; flex-wrap: wrap; }
.filter-bar .search { position: relative; flex: 1; min-width: 240px; }
.filter-bar .search i { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gold-dark); }
.filter-bar .search input { padding-left: 42px; }
.filter-bar select { width: auto; min-width: 170px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: 16px; background: var(--bg-card); }
.enquiries-table { width: 100%; border-collapse: collapse; font-size: .9rem; min-width: 1000px; }
.enquiries-table th { text-align: left; padding: 14px 16px; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; color: var(--royal); border-bottom: 1px solid var(--border-strong); background: var(--sand); }
.enquiries-table td { padding: 16px; border-bottom: 1px solid rgba(212,175,55,.12); vertical-align: top; }
.enquiries-table tr:last-child td { border-bottom: 0; }
.enquiries-table tr:hover td { background: rgba(212,175,55,.06); }
.enquiries-table td small { display: block; color: var(--text-soft); font-size: .78rem; margin-top: 4px; }
.enquiries-table td a { display: flex; gap: 8px; align-items: center; color: var(--text-soft); font-size: .85rem; margin-top: 4px; }
.enquiries-table td a:hover { color: var(--royal); }
.enquiries-table td a i { color: var(--gold-dark); font-size: .75rem; }
.enquiries-table td strong { color: var(--text); }
.enquiries-table td.msg { max-width: 360px; color: var(--text-soft); font-size: .86rem; line-height: 1.55; }
.enquiries-table .mono { font-family: ui-monospace, monospace; color: var(--text-soft); }
.enquiries-table .small { font-size: .78rem; }
.enquiries-table .nowrap { white-space: nowrap; }
.enquiries-table .empty { text-align: center; padding: 48px; color: var(--text-soft); }
.pill { display: inline-block; padding: 4px 10px; border-radius: 999px; background: rgba(212,175,55,.12); border: 1px solid var(--border); color: var(--gold-dark); font-size: .78rem; font-weight: 600; }
.pill.ok { background: rgba(21,128,61,.10); border-color: rgba(21,128,61,.4); color: #15803d; }
.pill.warn { background: var(--kesari-light); border-color: rgba(217,107,39,.45); color: #b4521a; }
.pill.ai-pill { align-self: flex-start; background: rgba(15,44,89,.07); border-color: rgba(15,44,89,.28); color: var(--royal); }
.ai-card { border-color: rgba(15,44,89,.28); background: linear-gradient(180deg, rgba(15,44,89,.04), transparent 40%), var(--bg-card); }
.wa-chip { color: #15803d !important; font-weight: 600; }
.wa-chip i { color: #25D366 !important; }
.status-select { padding: 8px 32px 8px 12px; border-radius: 999px; font-size: .8rem; font-weight: 700; width: auto; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' fill='none' stroke='%23D4AF37' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.status-select.s-new { border-color: rgba(29,111,165,.6); color: #1d6fa5; }
.status-select.s-contacted { border-color: rgba(217,107,39,.6); color: #b4521a; }
.status-select.s-booked { border-color: rgba(21,128,61,.6); color: #15803d; }
.status-select.s-closed { border-color: rgba(107,99,120,.5); color: #6b6378; }
.btn-icon { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); color: var(--text-soft); display: inline-flex; align-items: center; justify-content: center; transition: background-color .3s, color .3s, border-color .3s; background: #fff; }
.btn-icon:hover { color: var(--royal); border-color: var(--royal); }
.btn-icon.danger:hover { background: rgba(197,48,48,.1); color: #c53030; border-color: rgba(197,48,48,.5); }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.pagination a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; font-size: .88rem; color: var(--text-soft); }
.pagination a.active, .pagination a:hover { background: var(--royal); color: #fff; border-color: var(--royal); }

/* Forms, settings, gallery */
.form-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; box-shadow: 0 10px 30px rgba(15,44,89,.06); padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.form-group-title { font-family: var(--font-head); font-size: 1.15rem; color: var(--royal); padding-bottom: 10px; border-bottom: 1px solid var(--border); margin-top: 6px; }
.form-group-title:first-of-type { margin-top: 0; }
.form-group-title i { color: var(--kesari); margin-right: 6px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.span-2 { grid-column: 1 / -1; }
textarea { width: 100%; background: #FFFDF8; border: 1px solid var(--border-strong); color: var(--text); padding: 13px 15px; border-radius: 12px; font: inherit; font-size: .95rem; resize: vertical; min-height: 100px; line-height: 1.6; }
textarea:focus { outline: none; border-color: var(--royal); box-shadow: 0 0 0 3px rgba(15,44,89,.14); }
label.check { flex-direction: row; align-items: center; gap: 12px; text-transform: none; letter-spacing: 0; font-size: .92rem; color: var(--text); font-weight: 500; }
label.check input { width: 18px; height: 18px; accent-color: var(--royal); }
.form-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.settings-grid { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }
.settings-side { display: flex; flex-direction: column; gap: 24px; }
.tips ul, .tips ol { padding-left: 18px; color: var(--text-soft); font-size: .88rem; display: flex; flex-direction: column; gap: 8px; }
.tips code, code { background: rgba(212,175,55,.14); color: var(--gold-dark); padding: 2px 6px; border-radius: 6px; font-size: .82rem; }
.tips a, .guide a { color: var(--royal); text-decoration: underline; font-weight: 600; }
.small { font-size: .8rem; }
.owner-photo-row { display: flex; gap: 22px; align-items: center; }
.owner-preview { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); flex-shrink: 0; }
.owner-preview.initials { display: flex; align-items: center; justify-content: center; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold-dark); background: var(--sand); }
.owner-photo-fields { flex: 1; display: flex; flex-direction: column; gap: 12px; }
input[type="file"] { padding: 10px; font-size: .88rem; }
input[type="file"]::file-selector-button { background: var(--royal); color: #fff; border: 0; border-radius: 999px; padding: 8px 14px; font: inherit; font-weight: 700; font-size: .78rem; margin-right: 12px; cursor: pointer; }
.upload-card { margin-bottom: 28px; }
.dropzone { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; padding: 36px 20px; border: 2px dashed var(--border-strong); border-radius: 16px; background: var(--cream); text-align: center; cursor: pointer; text-transform: none; letter-spacing: 0; color: var(--text-soft); transition: border-color .3s, background-color .3s; position: relative; }
.dropzone:hover { border-color: var(--royal); background: rgba(15,44,89,.04); }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
.dropzone i { font-size: 2.2rem; color: var(--gold); margin-bottom: 6px; }
.dropzone strong { color: var(--royal); font-size: 1.05rem; }
.dropzone span { font-size: .82rem; }
.dropzone .file-count { color: var(--royal); font-weight: 700; margin-top: 6px; }
.photo-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }
.photo-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.photo-thumb { display: block; aspect-ratio: 4/3; overflow: hidden; }
.photo-thumb img { width: 100%; height: 100%; object-fit: cover; }
.photo-form { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.photo-form input, .photo-form select { padding: 9px 12px; font-size: .86rem; border-radius: 10px; }
.photo-actions { display: flex; justify-content: space-between; align-items: center; gap: 8px; margin-top: 4px; }
.btn-ghost.sm { padding: .55rem 1rem; font-size: .78rem; }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 56px 20px; color: var(--text-soft); border: 1px dashed var(--border); border-radius: 16px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.empty-state i { font-size: 2.4rem; color: var(--gold); }

/* Gallery drafts */
.drafts-card { background: var(--kesari-light); border: 1px solid rgba(217,107,39,.35); border-radius: 18px; padding: 24px; margin-bottom: 28px; }
.draft-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 18px; }
.draft-item { background: #fff; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; display: flex; flex-direction: column; }
.draft-thumb { display: block; aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.draft-thumb img { width: 100%; height: 100%; object-fit: cover; }
.draft-actions { display: flex; gap: 10px; align-items: center; padding: 0 14px 14px; flex-wrap: wrap; }
.draft-actions .btn-gold { padding: .7rem 1.2rem; font-size: .76rem; }

/* AI blog writer */
.ai-step { border: 1px solid var(--border); border-radius: 14px; padding: 18px 20px; background: #fff; display: flex; flex-direction: column; gap: 14px; }
.ai-step-head { display: flex; gap: 14px; align-items: flex-start; }
.ai-step-head strong { color: var(--royal); font-size: 1rem; }
.step-badge { width: 32px; height: 32px; border-radius: 50%; background: var(--royal); color: var(--gold-metal); font-family: var(--font-head); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ai-inline { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.ai-inline input { flex: 1; min-width: 240px; }
.ai-columns { display: grid; grid-template-columns: 1.2fr 1fr; gap: 22px; }
.mini-label { display: block; font-size: .74rem; text-transform: uppercase; letter-spacing: .14em; color: var(--gold-dark); font-weight: 700; margin-bottom: 10px; }
.mini-field { margin-top: 12px; }
.idea-list { display: flex; flex-direction: column; gap: 8px; }
.idea { flex-direction: row; gap: 12px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--text); padding: 12px 14px; border: 1px solid var(--border); border-radius: 12px; cursor: pointer; background: var(--cream); transition: border-color .25s, background-color .25s; }
.idea:hover { border-color: var(--royal); }
.idea.checked { border-color: var(--royal); background: rgba(15,44,89,.05); box-shadow: 0 0 0 1px var(--royal) inset; }
.idea input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--royal); flex-shrink: 0; }
.idea span { display: flex; flex-direction: column; gap: 3px; font-size: .92rem; line-height: 1.4; }
.idea small { color: var(--text-soft); font-size: .78rem; }
.kw-list { display: flex; flex-wrap: wrap; gap: 8px; }
.kw { flex-direction: row; align-items: center; gap: 8px; text-transform: none; letter-spacing: 0; font-weight: 500; color: var(--text); font-size: .84rem; padding: 7px 12px; border: 1px solid var(--border); border-radius: 999px; cursor: pointer; background: #fff; }
.kw:has(input:checked) { border-color: var(--royal); background: rgba(15,44,89,.06); color: var(--royal); }
.kw input { width: 15px; height: 15px; accent-color: var(--royal); }
.kw .demand { font-size: .62rem; font-style: normal; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 2px 6px; border-radius: 6px; background: var(--sand); color: var(--text-soft); }
.kw .demand.high { background: var(--kesari-light); color: #b4521a; }

@media (max-width: 1000px) { .settings-grid { grid-template-columns: 1fr; } .grid-3 { grid-template-columns: 1fr; } .ai-columns { grid-template-columns: 1fr; } }
@media (max-width: 1100px) {
  .summary-grid, .summary-grid.three { grid-template-columns: repeat(2, 1fr); }
  .admin-main { width: min(100% - 32px, 1400px); }
  .admin-topbar { padding: 12px 16px; }
  .sidebar-burger { display: inline-flex; }
  .admin-sidebar { position: fixed; left: 0; top: 0; bottom: 0; z-index: 40; transform: translateX(-100%); transition: transform .3s ease; box-shadow: 0 0 40px rgba(15,44,89,.25); }
  .sidebar-toggle-input:checked ~ .admin-shell .admin-sidebar { transform: translateX(0); }
  .sidebar-toggle-input:checked ~ .admin-shell .sidebar-backdrop { display: block; position: fixed; inset: 0; background: rgba(8,27,59,.45); z-index: 30; }
  .topbar-date { display: none; }
  .sidebar-close { display: inline-flex; position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 10px; border: 1px solid var(--border-strong); align-items: center; justify-content: center; color: var(--royal); cursor: pointer; background: #fff; }
}
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } .owner-photo-row { flex-direction: column; align-items: flex-start; } .draft-grid { grid-template-columns: 1fr; } }
.venue-admin-card.is-hidden .photo-thumb img { opacity: .45; filter: grayscale(.6); }
.venue-admin-card .photo-form { flex: 1; } .venue-admin-card .photo-actions { margin-top: auto; flex-wrap: wrap; }
