/* ─────────────────────────────────────────────────
   TOKENS
───────────────────────────────────────────────── */
:root {
  --navy:        #0b2d6e;
  --navy-dark:   #071c48;
  --navy-deeper: #040f28;
  --red:         #d63031;
  --red-hover:   #b52828;
  --gold:        #f0a500;
  --white:       #ffffff;
  --off-white:   #f5f7fa;
  --gray-50:     #f0f2f6;
  --gray-100:    #e2e6ef;
  --gray-200:    #c8cfdf;
  --gray-400:    #8a94a8;
  --gray-600:    #4a5568;
  --gray-800:    #1a2235;
  --ink:         #101828;

  --font-sans:      'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-mono:      'Share Tech Mono', monospace;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.10), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.12), 0 4px 8px rgba(0,0,0,.06);

  --nav-h: 64px;
  --wrap:  1100px;
}

/* ─────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); }
ul, ol { list-style: none; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

/* ─────────────────────────────────────────────────
   SKIP LINK
───────────────────────────────────────────────── */
.skip-link {
  position: absolute; top: -999px; left: 1rem;
  z-index: 9999;
  background: var(--gold); color: #000;
  font-family: var(--font-mono); font-size: .875rem; font-weight: bold;
  padding: .5rem 1rem; text-decoration: none;
  border: 2px solid #000;
}
.skip-link:focus { top: .75rem; }

/* ─────────────────────────────────────────────────
   BASE TYPOGRAPHY
───────────────────────────────────────────────── */
body {
  font-family: var(--font-sans);
  font-size: 1rem; font-weight: 400; line-height: 1.7;
  color: var(--ink);
  background-color: var(--off-white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='250' height='250'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='250' height='250' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 250px 250px;
}

h1, h2, h3, h4 {
  font-family: var(--font-condensed);
  font-weight: 700; line-height: 1.15; color: var(--navy-dark);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────────
   UTILITY
───────────────────────────────────────────────── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.wrapper {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}

.section-eyebrow {
  display: block;
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: .5rem;
}

/* ─────────────────────────────────────────────────
   TOPBAR
───────────────────────────────────────────────── */
.topbar {
  background: var(--navy-deeper);
  color: rgba(255,255,255,.55);
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .06em; padding: .4rem 0;
}
.topbar .wrapper {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .25rem 1rem;
}
.topbar strong { color: rgba(255,255,255,.85); }
.topbar-right { display: flex; gap: 1.25rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--navy); height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.site-nav .wrapper {
  height: 100%; display: flex;
  align-items: center; justify-content: space-between; gap: 1rem;
}

.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; flex-shrink: 0;
}
.nav-logo {
  width: 50px; height: 50px; border-radius: 50%; overflow: hidden;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  flex-shrink: 0;
}
.nav-logo img { width: 100%; height: 100%; object-fit: cover; }
.nav-brand-text { line-height: 1.2; }
.nav-callsign {
  display: block; font-family: var(--font-mono);
  font-size: 1.1rem; color: var(--white); letter-spacing: .08em;
}
.nav-subtitle {
  display: block; font-size: .68rem;
  color: rgba(255,255,255,.5); letter-spacing: .04em; white-space: nowrap;
}

.nav-toggle {
  display: none; background: none;
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius-sm);
  padding: .4rem .6rem; cursor: pointer;
  color: var(--white); font-size: 1.2rem; line-height: 1; flex-shrink: 0;
}
.nav-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.nav-links { display: flex; align-items: center; gap: .15rem; }
.nav-links a {
  display: flex; align-items: center;
  height: var(--nav-h); padding: 0 .9rem;
  font-family: var(--font-condensed); font-size: .85rem;
  font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.7); text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s; white-space: nowrap;
}
.nav-links a:hover,
.nav-links a:focus-visible { color: var(--white); border-bottom-color: rgba(255,255,255,.35); outline: none; }
.nav-links a[aria-current="page"] { color: var(--white); border-bottom-color: var(--red); }

/* mobile nav */
@media (max-width: 700px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-links {
    display: none; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--navy-dark); flex-direction: column;
    align-items: stretch; gap: 0;
    border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    height: auto; padding: .85rem 1.25rem;
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-left: 3px solid transparent; font-size: .95rem;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible {
    border-bottom: 1px solid rgba(255,255,255,.07);
    border-left-color: var(--red); background: rgba(255,255,255,.05);
  }
  .nav-links a[aria-current="page"] { border-bottom-color: inherit; border-left-color: var(--red); }
}

/* ─────────────────────────────────────────────────
   HERO
───────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(160deg, rgba(7,28,72,.96) 0%, rgba(4,15,40,.97) 100%),
    url('/static/images/garc_logo_1200.png') center/cover no-repeat;
  padding: clamp(3rem,8vw,6rem) 0 clamp(2.5rem,6vw,5rem);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 55%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 47%  8%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 70%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 22%, rgba(255,255,255,.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 91% 80%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 40%, rgba(200,220,255,.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 72% 50%, rgba(200,220,255,.3) 0%, transparent 100%);
  pointer-events: none;
}
.hero .wrapper {
  position: relative; display: grid;
  grid-template-columns: 1fr auto; gap: 2rem clamp(1rem,5vw,150px); align-items: center;
}
.hero-content { min-width: 0; max-width: 550px; }
.hero-eyebrow {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 1rem;
  display: flex; align-items: center; gap: .6rem;
}
.hero-eyebrow::before {
  content: ''; display: inline-block;
  width: 24px; height: 1px; background: var(--red);
}
.hero h1 {
  font-family: var(--font-condensed); font-size: clamp(2.4rem,6vw,4rem);
  font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: .02em;
  line-height: 1.05; margin-bottom: 1.25rem;
}
.hero h1 .callsign {
  display: block; font-family: var(--font-mono);
  font-size: clamp(1.4rem,3.5vw,2rem);
  letter-spacing: .12em; color: var(--gold); margin-bottom: .3rem;
}
.hero-desc {
  font-size: clamp(.9rem,2vw,1.05rem); line-height: 1.75;
  color: rgba(255,255,255,.62); max-width: 520px; margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .75rem; }

.hero-logo {
  display: flex; flex-direction: row;
  align-items: center; justify-content: center;
  gap: 0; flex-shrink: 0;
}
.hero-logo img {
  width: clamp(120px,18vw,300px); height: auto;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,.5));
}
.hero-patch {
  filter: drop-shadow(0 2px 12px rgba(0,0,0,.4));
  margin-left: clamp(-60px,-7vw,-20px);
}

@media (max-width: 900px) {
  .hero-patch { display: none; }
}
@media (max-width: 600px) {
  .hero .wrapper { grid-template-columns: 1fr; }
  .hero-logo { display: none; }
}

/* ─────────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.4rem;
  font-family: var(--font-condensed); font-size: .9rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
}
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover,
.btn-primary:focus-visible { background: var(--red-hover); border-color: var(--red-hover); outline: none; }
.btn-outline { background: transparent; color: rgba(255,255,255,.75); border-color: rgba(255,255,255,.3); }
.btn-outline:hover,
.btn-outline:focus-visible { background: rgba(255,255,255,.08); color: var(--white); border-color: rgba(255,255,255,.6); outline: none; }

/* ─────────────────────────────────────────────────
   STATUS STRIP
───────────────────────────────────────────────── */
.status-strip {
  background: var(--navy-dark);
  border-top: 3px solid var(--red);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.status-strip .wrapper {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px,1fr));
}
.status-item {
  padding: .9rem 1.25rem; border-right: 1px solid rgba(255,255,255,.07);
  text-align: center;
}
.status-item:last-child { border-right: none; }
.status-label {
  display: block; font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: .2rem;
}
.status-value {
  display: block; font-family: var(--font-mono);
  font-size: .95rem; color: var(--white); letter-spacing: .04em;
}
.status-value.highlight { color: var(--gold); }
.live-dot {
  display: inline-block; width: 7px; height: 7px; border-radius: 50%;
  background: #2ecc71; margin-right: 5px; vertical-align: middle;
  animation: livepulse 2.2s ease-in-out infinite;
}
@keyframes livepulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

@media (max-width: 500px) {
  .status-strip .wrapper { grid-template-columns: 1fr 1fr; }
  .status-item { border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ─────────────────────────────────────────────────
   PAGE BODY — TWO-COLUMN LAYOUT
───────────────────────────────────────────────── */
.page-body { padding: clamp(2rem,5vw,3.5rem) 0; }
.page-body .wrapper {
  display: grid; grid-template-columns: 1fr 300px;
  gap: 2.5rem 3rem; align-items: start;
}
.page-body.full-width .wrapper { grid-template-columns: 1fr; }

@media (max-width: 860px) {
  .page-body .wrapper { grid-template-columns: 1fr; }
  .page-sidebar { order: 2; }
  .page-main    { order: 1; }
}

/* ─────────────────────────────────────────────────
   MAIN COLUMN SECTIONS
───────────────────────────────────────────────── */
.content-section {
  margin-bottom: 2.5rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--gray-100);
}
.content-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.content-section h2 {
  font-family: var(--font-condensed); font-size: clamp(1.5rem,4vw,2rem);
  font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
  color: var(--navy-dark); margin-bottom: .75rem;
  display: flex; align-items: center; gap: .6rem;
}
.content-section h2::before {
  content: ''; display: inline-block;
  width: 4px; height: 1.1em; background: var(--red);
  border-radius: 2px; flex-shrink: 0;
}
.content-section p { font-size: .975rem; color: var(--gray-600); line-height: 1.8; }

/* ─────────────────────────────────────────────────
   ACTIVITY CARDS
───────────────────────────────────────────────── */
.activity-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1rem; margin-top: 1rem;
}
@media (max-width: 540px) { .activity-grid { grid-template-columns: 1fr; } }

.activity-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.activity-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.activity-card-icon { font-size: 1.5rem; margin-bottom: .5rem; line-height: 1; }
.activity-card h3 {
  font-family: var(--font-condensed); font-size: 1rem;
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--navy); margin-bottom: .3rem;
}
.activity-card p { font-size: .83rem; color: var(--gray-400); line-height: 1.55; margin-bottom: 0; }

/* ─────────────────────────────────────────────────
   PHOTO PAIR (facilities)
───────────────────────────────────────────────── */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.25rem; }
@media (max-width: 480px) { .photo-grid { grid-template-columns: 1fr; } }

.photo-card {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); background: var(--navy-deeper); position: relative;
}
.photo-card img {
  width: 100%; height: 180px; object-fit: cover;
  display: block; transition: transform .35s ease;
}
.photo-card:hover img { transform: scale(1.04); }
.photo-caption {
  padding: .6rem .9rem; font-family: var(--font-mono);
  font-size: .7rem; letter-spacing: .08em;
  color: rgba(255,255,255,.6); text-transform: uppercase;
  background: var(--navy-dark);
}

/* ─────────────────────────────────────────────────
   ANNOUNCEMENT CARDS (home page main content)
───────────────────────────────────────────────── */
.announcement-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }

.announcement-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}

.announcement-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}

.announcement-card-author { color: var(--red); }
.announcement-card-date   { color: var(--gray-400); }

.announcement-card h3 {
  font-family: var(--font-condensed);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-dark);
  margin-bottom: .4rem;
  letter-spacing: .02em;
}

.announcement-card-content {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ─────────────────────────────────────────────────
   ARTICLE CARDS (articles list page)
───────────────────────────────────────────────── */
.article-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
  transition: box-shadow .2s, transform .2s;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.article-card:last-child { margin-bottom: 0; }
.article-meta {
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: .5rem;
}
.article-card h2 {
  font-size: 1.4rem; margin-bottom: .5rem;
  display: flex; align-items: center; gap: .5rem;
}
.article-card h2 a { text-decoration: none; color: var(--navy-dark); }
.article-card h2 a:hover { color: var(--red); }
.article-card h2::before { display: none; }
.article-summary { font-size: .9rem; color: var(--gray-600); line-height: 1.7; }
.article-readmore {
  display: inline-block; margin-top: .75rem;
  font-family: var(--font-condensed); font-size: .8rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--red); text-decoration: none;
}
.article-readmore:hover { color: var(--red-hover); }

/* ─────────────────────────────────────────────────
   ALBUM GRID (photos page)
───────────────────────────────────────────────── */
.album-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 1.25rem;
}
.album-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.album-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.album-cover {
  width: 100%; height: 180px; object-fit: cover;
  background: var(--navy-deeper);
  display: flex; align-items: center; justify-content: center;
}
.album-cover img { width: 100%; height: 100%; object-fit: cover; }
.album-cover-placeholder {
  font-family: var(--font-mono); font-size: 2rem;
  color: rgba(255,255,255,.2);
}
.album-info { padding: 1rem 1.1rem; }
.album-info h3 {
  font-family: var(--font-condensed); font-size: 1.1rem;
  color: var(--navy-dark); margin-bottom: .25rem;
}
.album-info a { text-decoration: none; color: inherit; }
.album-info a:hover h3 { color: var(--red); }
.album-count {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase; color: var(--gray-400);
}

/* ─────────────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────────────── */
.sidebar-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 1.25rem;
}
.sidebar-card:last-child { margin-bottom: 0; }
.sidebar-card-head {
  background: var(--navy); padding: .6rem 1rem;
  display: flex; align-items: center; gap: .5rem;
}
.sidebar-card-head h3 {
  font-family: var(--font-mono); font-size: .68rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.65);
}
.sidebar-card-body { padding: 1rem 1.1rem; }

.freq-big {
  font-family: var(--font-mono); font-size: 2.4rem;
  color: var(--navy-dark); letter-spacing: .04em; line-height: 1; margin-bottom: .15rem;
}
.freq-unit {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--gray-400); margin-bottom: 1rem;
}

.spec-list { width: 100%; border-collapse: collapse; font-size: .82rem; }
.spec-list tr { border-bottom: 1px solid var(--gray-50); }
.spec-list tr:last-child { border-bottom: none; }
.spec-list th {
  text-align: left; font-weight: 400; color: var(--gray-400);
  padding: .4rem .5rem .4rem 0; vertical-align: top; width: 42%; white-space: nowrap;
}
.spec-list td {
  text-align: left; color: var(--ink); padding: .4rem 0;
  font-family: var(--font-mono); font-size: .78rem; vertical-align: top;
}

.echolink-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: #eef3fc; border: 1px solid #b5d0f5; border-radius: 100px;
  padding: .25rem .7rem; font-family: var(--font-mono);
  font-size: .68rem; color: var(--navy); letter-spacing: .06em; margin-top: .75rem;
}

.net-list { margin: 0; }
.net-item {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .65rem 0; border-bottom: 1px solid var(--gray-50);
}
.net-item:last-child { border-bottom: none; }
.net-time {
  font-family: var(--font-mono); font-size: .75rem; color: var(--navy);
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm); padding: .1rem .4rem;
  white-space: nowrap; flex-shrink: 0; margin-top: 2px;
}
.net-desc strong { display: block; font-size: .85rem; color: var(--ink); font-weight: 500; margin-bottom: .1rem; }
.net-desc span { font-size: .75rem; color: var(--gray-400); }

.contact-name {
  font-family: var(--font-condensed); font-size: 1.1rem;
  font-weight: 600; color: var(--navy-dark); letter-spacing: .03em; margin-bottom: .15rem;
}
.contact-call {
  font-family: var(--font-mono); font-size: .8rem;
  color: var(--red); letter-spacing: .1em; margin-bottom: .75rem;
}
.contact-email {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .78rem; color: var(--navy);
  text-decoration: none; background: var(--gray-50);
  border: 1px solid var(--gray-100); border-radius: var(--radius-sm);
  padding: .3rem .6rem; word-break: break-all; transition: background .15s;
}
.contact-email:hover,
.contact-email:focus-visible { background: var(--navy); color: var(--white); border-color: var(--navy); outline: none; }

.sidebar-patch { text-align: center; padding: .5rem 0; }
.sidebar-patch img { width: 96%; height: auto; margin: 0 auto; display: block; filter: drop-shadow(0 2px 8px rgba(0,0,0,.12)); }

/* Announcement items in sidebar */
.announcement-item { margin-bottom: .9rem; padding-bottom: .9rem; border-bottom: 1px solid var(--gray-50); }
.announcement-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.announcement-item strong { display: block; font-size: .9rem; color: var(--navy-dark); margin-bottom: .2rem; }
.announcement-item p { font-size: .8rem; color: var(--gray-600); line-height: 1.55; margin: 0; }

/* ─────────────────────────────────────────────────
   PAGE HEADER (inner pages)
───────────────────────────────────────────────── */
.page-header {
  background: var(--navy-dark);
  padding: clamp(1.5rem,4vw,2.5rem) 0;
  border-bottom: 3px solid var(--red);
}
.page-header h1 {
  font-family: var(--font-condensed); font-size: clamp(1.8rem,5vw,2.8rem);
  font-weight: 700; text-transform: uppercase; color: var(--white);
  letter-spacing: .03em;
}
.page-header .section-eyebrow { margin-bottom: .35rem; }

/* ─────────────────────────────────────────────────
   EMPTY STATE
───────────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 3rem 1rem;
  color: var(--gray-400); font-family: var(--font-mono);
  font-size: .85rem; letter-spacing: .05em;
}
.empty-state-icon { font-size: 2.5rem; margin-bottom: 1rem; }

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-deeper); color: rgba(255,255,255,.45);
  padding: clamp(2rem,4vw,3rem) 0 1.5rem;
  border-top: 3px solid var(--red);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-bottom: 2rem;
}
@media (max-width: 400px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col-title {
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.25); margin-bottom: .75rem;
}
.footer-about p { font-size: .82rem; line-height: 1.7; color: rgba(255,255,255,.4); margin-bottom: 0; }
.footer-about .callsign {
  font-family: var(--font-mono); font-size: 1.3rem;
  color: var(--gold); letter-spacing: .1em; display: block; margin-bottom: .5rem;
}
.footer-links-list { display: flex; flex-direction: column; gap: .4rem; }
.footer-links-list a {
  font-size: .82rem; color: rgba(255,255,255,.4);
  text-decoration: none; transition: color .15s;
}
.footer-links-list a:hover,
.footer-links-list a:focus-visible { color: rgba(255,255,255,.85); outline: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07); padding-top: 1rem;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .06em; color: rgba(255,255,255,.2);
}

/* ─────────────────────────────────────────────────
   ADMIN — SITE SERVICES CARD
───────────────────────────────────────────────── */
.service-links { display: flex; flex-wrap: wrap; gap: .75rem; }

.service-link {
  display: flex; align-items: center; gap: .85rem;
  padding: .85rem 1.1rem; flex: 1; min-width: 180px;
  background: var(--gray-50); border: 1px solid var(--gray-100);
  border-radius: var(--radius-md); text-decoration: none;
  transition: background .15s, border-color .15s, transform .1s;
}
.service-link:hover {
  background: var(--white); border-color: var(--navy);
  transform: translateY(-1px); box-shadow: var(--shadow-sm);
}
.service-link-icon { font-size: 1.6rem; line-height: 1; flex-shrink: 0; }
.service-link-title {
  font-family: var(--font-condensed); font-size: 1rem;
  font-weight: 600; color: var(--navy-dark); letter-spacing: .02em;
}
.service-link-desc { font-size: .78rem; color: var(--gray-400); margin-top: .1rem; }

/* ─────────────────────────────────────────────────
   ADMIN — QUILL WYSIWYG EDITOR
───────────────────────────────────────────────── */
.quill-wrapper {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.quill-wrapper .ql-toolbar {
  border: none !important;
  border-bottom: 1px solid var(--gray-200) !important;
  background: var(--gray-50);
  font-family: var(--font-sans);
}
.quill-wrapper .ql-container {
  border: none !important;
  font-family: var(--font-sans);
  font-size: .95rem;
}
.quill-wrapper .ql-editor {
  min-height: 380px;
  line-height: 1.75;
  color: var(--ink);
}
.quill-wrapper .ql-editor:focus { outline: none; }
.quill-wrapper:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,45,110,.1);
}

/* ─────────────────────────────────────────────────
   ADMIN — LAYOUT
───────────────────────────────────────────────── */
.admin-topbar {
  background: var(--navy-deeper);
  border-bottom: 3px solid var(--red);
  padding: .75rem 0;
}
.admin-topbar .wrapper {
  display: flex; justify-content: space-between;
  align-items: center; gap: 1rem; flex-wrap: wrap;
}
.admin-topbar-brand {
  font-family: var(--font-mono); font-size: .9rem;
  color: var(--gold); letter-spacing: .12em;
}
.admin-topbar-brand span {
  color: rgba(255,255,255,.35); font-size: .7rem;
  letter-spacing: .08em; margin-left: .6rem;
}
.admin-topbar-right {
  display: flex; align-items: center; gap: 1rem;
  font-family: var(--font-mono); font-size: .72rem;
  color: rgba(255,255,255,.45); letter-spacing: .06em;
}
.admin-topbar-right a {
  color: rgba(255,255,255,.55); text-decoration: none;
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm);
  padding: .25rem .75rem; transition: background .15s, color .15s;
}
.admin-topbar-right a:hover { background: rgba(255,255,255,.08); color: var(--white); }

.admin-content { padding: 2rem 0; }

/* Flash messages */
.flash-list { list-style: none; margin-bottom: 1.25rem; }
.flash {
  padding: .75rem 1rem; border-radius: var(--radius-sm);
  font-size: .875rem; margin-bottom: .5rem;
  font-family: var(--font-sans);
}
.flash-success { background: #d1fae5; color: #065f46; border: 1px solid #6ee7b7; }
.flash-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }

/* Admin cards */
.admin-card {
  background: var(--white); border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem; overflow: hidden;
}
.admin-card-head {
  background: var(--navy); padding: .7rem 1.25rem;
  display: flex; justify-content: space-between; align-items: center;
}
.admin-card-head h2 {
  font-family: var(--font-mono); font-size: .7rem; font-weight: 400;
  letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin: 0;
}
.admin-card-body { padding: 1.25rem; }

/* Forms */
.form-group { margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label {
  display: block; font-family: var(--font-condensed); font-size: .82rem;
  font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--navy-dark); margin-bottom: .35rem;
}
.form-input,
.form-textarea {
  display: block; width: 100%;
  padding: .6rem .85rem; font-family: var(--font-sans); font-size: .9rem;
  color: var(--ink); background: var(--white);
  border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11,45,110,.1);
}
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-check { display: flex; align-items: center; gap: .5rem; margin-top: .25rem; }
.form-check input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--navy); cursor: pointer; }
.form-check label { font-size: .9rem; color: var(--gray-600); cursor: pointer; }
.form-hint { font-size: .75rem; color: var(--gray-400); margin-top: .25rem; }

/* Admin table */
.admin-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.admin-table th {
  text-align: left; font-family: var(--font-condensed); font-size: .72rem;
  font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gray-400); padding: .5rem .75rem;
  border-bottom: 2px solid var(--gray-100); white-space: nowrap;
}
.admin-table td {
  padding: .75rem; border-bottom: 1px solid var(--gray-50);
  color: var(--ink); vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.admin-table .col-action { width: 48px; text-align: center; }

/* Badges */
.badge {
  display: inline-block; padding: .15rem .55rem; border-radius: 100px;
  font-family: var(--font-mono); font-size: .62rem;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge-active   { background: #d1fae5; color: #065f46; }
.badge-inactive { background: var(--gray-50); color: var(--gray-400); border: 1px solid var(--gray-200); }

/* Delete button */
.btn-icon-delete {
  background: none; border: none; cursor: pointer;
  color: var(--gray-400); padding: .3rem .4rem;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s; line-height: 1; font-size: 1rem;
}
.btn-icon-delete:hover { color: var(--red); background: #fef2f2; }
.btn-icon-rotate {
  background: none; border: none; cursor: pointer;
  color: var(--gray-400); padding: .3rem .4rem;
  border-radius: var(--radius-sm);
  transition: color .15s, background .15s; line-height: 1; font-size: 1rem;
}
.btn-icon-rotate:hover { color: var(--navy); background: var(--gray-50); }

/* Login page */
.login-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: var(--navy-deeper);
  background-image:
    radial-gradient(1px 1px at 15% 25%, rgba(255,255,255,.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 50% 10%, rgba(255,255,255,.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, rgba(255,255,255,.35) 0%, transparent 100%),
    radial-gradient(1px 1px at 35% 75%, rgba(255,255,255,.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 20%, rgba(255,255,255,.4) 0%, transparent 100%);
  padding: 2rem 1rem;
}
.login-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); width: 100%; max-width: 480px; overflow: hidden;
}
.login-card-head {
  background: var(--navy); padding: 2rem 2rem 1.5rem; text-align: center;
}
.login-card-head img { width: 400px; max-width: 100%; height: auto; object-fit: contain; margin: 0 auto 1rem; }
.login-card-head .callsign {
  display: block; font-family: var(--font-mono); font-size: 1.3rem;
  color: var(--gold); letter-spacing: .12em; margin-bottom: .2rem;
}
.login-card-head span {
  font-family: var(--font-mono); font-size: .65rem;
  color: rgba(255,255,255,.4); letter-spacing: .15em; text-transform: uppercase;
}
.login-card-body { padding: 1.75rem 2rem; }
.login-error {
  background: #fee2e2; color: #991b1b; border: 1px solid #fca5a5;
  border-radius: var(--radius-sm); padding: .6rem .85rem;
  font-size: .85rem; margin-bottom: 1rem;
}

/* ─────────────────────────────────────────────────
   FOCUS & ACCESSIBILITY
───────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ─────────────────────────────────────────────────
   PRINT
───────────────────────────────────────────────── */
@media print {
  .site-nav, .topbar, .status-strip, .site-footer { display: none; }
  body { background: white; background-image: none; color: black; font-size: 11pt; }
  .page-body .wrapper { display: block; }
  .page-sidebar { margin-top: 2rem; }
}

/* ─────────────────────────────────────────────────
   PROPAGATION PAGE
───────────────────────────────────────────────── */
.prop-info-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); box-shadow: var(--shadow-sm);
  margin-bottom: 2rem; overflow: hidden;
}
.prop-info-head {
  background: var(--navy); color: rgba(255,255,255,.75);
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .2em; text-transform: uppercase;
  padding: .6rem 1.25rem;
}
.prop-info-body {
  padding: 1.1rem 1.25rem;
  font-size: .88rem; color: var(--gray-600); line-height: 1.75;
}
.prop-info-body p { margin: 0 0 .75rem; }
.prop-info-body p:last-child { margin-bottom: 0; }
.prop-info-body a { color: var(--navy); }
.prop-info-body strong { color: var(--ink); }
.prop-label-inline {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .1em; text-transform: uppercase;
  font-weight: 600; padding: .1rem .45rem;
  border-radius: var(--radius-sm); vertical-align: middle;
}
.prop-label-inline.tx { background: var(--gold); color: var(--navy-dark); }
.prop-label-inline.rx { background: #4ade80; color: #14532d; }

.prop-map-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
#prop-map {
  height: 550px; width: 100%;
}

.prop-tabs {
  display: flex; flex-wrap: wrap; gap: .4rem;
  margin-bottom: 1.5rem;
}
.prop-tab {
  font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .35rem .85rem; border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  background: #fff; color: var(--gray-500);
  cursor: pointer; transition: all .15s;
}
.prop-tab:hover { border-color: var(--navy); color: var(--navy); }
.prop-tab[aria-selected="true"] {
  background: var(--navy); color: #fff; border-color: var(--navy);
}
.prop-band-title {
  font-family: var(--font-condensed); font-size: 1.6rem;
  color: var(--navy-dark); margin-bottom: 1.5rem;
  padding-bottom: .6rem; border-bottom: 3px solid var(--gold);
  display: inline-block;
}
.prop-grid {
  display: flex; flex-direction: column; gap: 2rem;
}
.prop-section {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.prop-section-head {
  padding: .75rem 1.25rem; background: var(--navy);
  display: flex; align-items: center; gap: 1rem;
}
.prop-section-label {
  font-family: var(--font-mono); font-size: .68rem;
  letter-spacing: .15em; text-transform: uppercase;
  font-weight: 600; padding: .2rem .65rem;
  border-radius: var(--radius-sm);
}
.prop-section-label.tx { background: var(--gold); color: var(--navy-dark); }
.prop-section-label.rx { background: #4ade80; color: #14532d; }
.prop-section-sub {
  font-size: .75rem; color: rgba(255,255,255,.5);
  font-family: var(--font-mono);
}
.prop-table-wrap { overflow-x: auto; }
.prop-table {
  width: 100%; border-collapse: collapse;
  font-size: .82rem;
}
.prop-table th {
  font-family: var(--font-mono); font-size: .65rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-500); padding: .65rem 1rem;
  border-bottom: 2px solid var(--gray-200);
  text-align: left; white-space: nowrap;
  background: var(--gray-50);
}
.prop-table td {
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
}
.prop-table tr:last-child td { border-bottom: none; }
.prop-table tbody tr:nth-child(even) td { background: #fafbfd; }
.prop-table tbody tr:hover td { background: #f0f4ff; }
.prop-table .mono { font-family: var(--font-mono); }
.prop-table .strong { font-weight: 600; color: var(--navy-dark); }
.prop-table .muted { color: var(--gray-400); font-size: .75rem; }
.prop-table .snr-good  { color: #16a34a; font-weight: 600; }
.prop-table .snr-ok    { color: var(--navy); }
.prop-table .snr-weak  { color: var(--gray-400); }
.prop-empty {
  padding: 2rem 1.25rem; font-size: .82rem;
  color: var(--gray-400); font-family: var(--font-mono);
  text-align: center;
}

@media (max-width: 800px) {
  #prop-map { height: 300px; }

  .prop-tabs { gap: .3rem; }
  .prop-tab {
    font-size: .65rem; padding: .3rem .6rem;
  }

  .prop-band-title { font-size: 1.2rem; }

  /* Tables: hide less critical columns, keep key ones readable */
  .prop-table th:nth-child(3),  /* TX Grid */
  .prop-table td:nth-child(3),
  .prop-table th:nth-child(5),  /* RX Grid */
  .prop-table td:nth-child(5),
  .prop-table th:nth-child(7),  /* PWR */
  .prop-table td:nth-child(7) { display: none; }

  .prop-table th, .prop-table td {
    padding: .35rem .5rem; font-size: .72rem;
  }

  .prop-section-head { flex-wrap: wrap; gap: .3rem; }

  .prop-map-card > div:last-child {
    flex-direction: column; gap: .5rem;
  }
}

/* ─────────────────────────────────────────────────
   PUBLIC PHOTO GALLERY
───────────────────────────────────────────────── */
.pub-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.pub-photo-card {
  display: flex; flex-direction: column;
}
.pub-photo-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--gray-100);
  cursor: pointer;
}
.pub-photo-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .25s;
  display: block;
}
.pub-photo-item:hover img { transform: scale(1.05); }
.pub-photo-overlay {
  position: absolute; inset: auto 0 0;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
  padding: 1.5rem .75rem .6rem;
  display: flex; flex-direction: column;
}
.pub-photo-overlay strong {
  font-family: var(--font-condensed); font-size: .9rem;
  color: #fff; line-height: 1.2;
}
.pub-photo-caption {
  padding: .4rem .1rem .1rem;
  display: flex; flex-direction: column; gap: .1rem;
}
.pub-photo-caption strong {
  font-family: var(--font-condensed); font-size: .9rem;
  color: var(--navy-dark); line-height: 1.2;
}
.pub-photo-caption span {
  font-size: .78rem; color: var(--gray-500); line-height: 1.45;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,.92);
  display: flex; align-items: center; justify-content: center;
}
.lightbox { display: none; }
.lightbox-inner {
  max-width: min(92vw, 1100px);
  max-height: 90vh;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.lightbox-inner img {
  max-width: 100%; max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lightbox-caption {
  color: rgba(255,255,255,.8);
  font-size: .85rem; text-align: center;
  font-family: var(--font-body); line-height: 1.5;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: none; color: #fff; cursor: pointer;
  font-size: 1.6rem; line-height: 1;
  transition: background .15s;
  border-radius: var(--radius-sm);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 1rem; right: 1rem; padding: .4rem .75rem; }
.lightbox-prev  { left: 1rem;  top: 50%; transform: translateY(-50%); padding: .75rem 1rem; }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); padding: .75rem 1rem; }

@media (max-width: 600px) {
  .pub-photo-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
  .lightbox-prev { left: .25rem; }
  .lightbox-next { right: .25rem; }
}

/* ─────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .live-dot { animation: none; }
  .photo-card:hover img, .activity-card:hover, .album-card:hover { transform: none; }
  .pub-photo-item:hover img { transform: none; }
  html { scroll-behavior: auto; }
}

/* ─────────────────────────────────────────────────
   GALLERY ADMIN
───────────────────────────────────────────────── */
.btn-sm {
  font-family: var(--font-condensed); font-size: .78rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: var(--radius-sm);
  background: var(--navy); color: #fff; border: none; cursor: pointer;
  transition: background .15s;
}
.btn-sm:hover { background: var(--navy-dark); }

.gallery-admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.gallery-admin-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.gallery-admin-thumb {
  display: block;
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--gray-50);
}
.gallery-admin-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .2s;
}
.gallery-admin-thumb:hover img { transform: scale(1.04); }
.gallery-admin-thumb-empty {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; color: var(--gray-400); font-family: var(--font-mono);
}
.gallery-admin-info { padding: .75rem; }
.gallery-admin-title {
  font-family: var(--font-condensed); font-size: 1rem; font-weight: 600;
  color: var(--navy); text-decoration: none; letter-spacing: .03em;
  display: block; margin-bottom: .2rem;
}
.gallery-admin-title:hover { color: var(--navy-dark); }
.gallery-admin-desc {
  font-size: .78rem; color: var(--gray-500); margin: 0 0 .5rem;
  line-height: 1.4;
}
.gallery-admin-meta {
  display: flex; align-items: center; justify-content: space-between;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.gallery-photo-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.gallery-photo-thumb {
  width: 100%; aspect-ratio: 4/3;
  overflow: hidden; background: var(--gray-50);
}
.gallery-photo-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-photo-meta {
  padding: .6rem;
  display: flex; flex-direction: column; gap: .4rem;
}
.gallery-photo-input {
  padding: .3rem .5rem !important;
  font-size: .8rem !important;
}
.gallery-photo-textarea {
  padding: .3rem .5rem !important;
  font-size: .8rem !important;
  resize: vertical;
  min-height: 52px;
}
.gallery-photo-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: .2rem;
}
