
.gallery-main{
  max-width:1200px;
  margin:6rem auto 3rem;
  padding:0 1.5rem 3rem;
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,1.4fr);
  gap:2.5rem;
}
@media (max-width: 900px){
  .gallery-main{
    grid-template-columns: minmax(0,1fr);
  }
}
.gallery-title{
  font-size:1.8rem;
  font-weight:700;
  color:#fff;
  margin-bottom:0.35rem;
}
.gallery-subtitle{
  color:var(--muted);
  font-size:0.9rem;
  margin-bottom:1.5rem;
}
.gallery-panel, .gallery-media-section{
  background:rgba(15,23,42,0.8);
  border-radius:1.5rem;
  border:1px solid rgba(148,163,184,0.28);
  padding:1.5rem 1.6rem 1.8rem;
  box-shadow:0 18px 60px rgba(0,0,0,0.45);
}
.gallery-media-section h2{
  font-size:1.2rem;
  margin-bottom:0.75rem;
  color:#fff;
}
.gallery-meta-card h2,
.gallery-message-card h2{
  font-size:1.1rem;
  margin-bottom:0.6rem;
  color:#fff;
}
.gallery-meta{
  display:grid;
  grid-template-columns:1fr;
  gap:0.5rem;
}
.gallery-meta dt{
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.08em;
  color:var(--muted);
}
.gallery-meta dd{
  margin:0;
  font-size:0.95rem;
  color:#e5e7eb;
}
.gallery-message-body{
  white-space:pre-line;
  color:#e5e7eb;
  font-size:0.95rem;
}
.gallery-actions{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-top:1.4rem;
}
.gallery-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.55rem 1.2rem;
  border-radius:999px;
  font-size:0.9rem;
  font-weight:500;
  text-decoration:none;
  border:1px solid rgba(148,163,184,0.5);
  background:linear-gradient(135deg,var(--green),var(--green-light));
  color:#f9fafb;
  box-shadow:0 8px 30px rgba(15,106,55,0.55);
  cursor:pointer;
}
.gallery-button.secondary{
  background:transparent;
  color:#e5e7eb;
  border-color:rgba(148,163,184,0.6);
  box-shadow:none;
}
.gallery-button[disabled]{
  opacity:0.6;
  cursor:default;
  pointer-events:none;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:0.75rem;
  margin-top:0.75rem;
}
.gallery-item{
  position:relative;
  border-radius:0.9rem;
  overflow:hidden;
  background:rgba(15,23,42,0.9);
  border:1px solid rgba(148,163,184,0.35);
}
.gallery-item img,
.gallery-item video{
  display:block;
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
  margin:0 auto;
}
.gallery-item-footer{
  padding:0.45rem 0.6rem 0.55rem;
  font-size:0.8rem;
  color:#e5e7eb;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:0.4rem;
}
.gallery-item-footer span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.gallery-item-footer a{
  font-size:0.75rem;
  color:var(--green-light);
  text-decoration:none;
}
.gallery-item-footer a:hover{
  text-decoration:underline;
}
.gallery-empty{
  font-size:0.9rem;
  color:var(--muted);
}


.gallery-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 0.75rem;
}
