/* Panel oscuro #2B3535, texto e iconos blancos */
.somos-evt-shortcode {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Lista vacía (sin eventos próximos o pasados) */
.somos-evt-empty {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  padding: 1.25rem 1.35rem;
  border-radius: 4px;
  background: var(--somos-evt-bg, #2b3535);
  color: #ffffff;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.somos-evt-empty__ico {
  display: inline-flex;
  flex-shrink: 0;
}

.somos-evt-empty__svg.somos-evt__svg {
  width: 1.65rem;
  height: 1.65rem;
  color: #fbc02d;
}

.somos-evt-empty__msg {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.somos-evt {
  --somos-evt-bg: #2b3535;
  --somos-evt-fg: #ffffff;
  color: var(--somos-evt-fg);
}

.somos-evt__panel {
  background: var(--somos-evt-bg);
  color: var(--somos-evt-fg);
}

.somos-evt__svg {
  display: block;
  color: var(--somos-evt-fg);
}

.somos-evt__svg--sm {
  flex-shrink: 0;
}

/* ——— Single ——— */
.somos-evt--single .somos-evt__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.75rem;
  padding: 2rem 1.75rem;
  max-width: 56rem;
}

.somos-evt--single .somos-evt__icon--house {
  flex-shrink: 0;
}

.somos-evt--single .somos-evt__icon--house .somos-evt__svg {
  width: clamp(4rem, 12vw, 6rem);
  height: auto;
}

.somos-evt__tipo {
  margin: 0 0 0.35rem;
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.95;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.somos-evt__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.15;
  font-family: Georgia, 'Times New Roman', Times, serif;
}

.somos-evt__row,
.somos-evt__excerpt,
.somos-evt__cta {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.somos-evt__row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.somos-evt__row-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.somos-evt__cta {
  display: inline-block;
  margin-top: 0.75rem;
  color: var(--somos-evt-fg);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-size: 0.9375rem;
}

.somos-evt__cta:hover,
.somos-evt__cta:focus {
  opacity: 0.88;
}

/* ——— Full (banner imagen + panel) ——— */
.somos-evt--full {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 14rem;
  overflow: hidden;
}

.somos-evt--full .somos-evt__media {
  position: relative;
  min-height: 12rem;
  background: #1a2121;
}

.somos-evt__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.somos-evt__media-placeholder {
  width: 100%;
  height: 100%;
  min-height: 12rem;
  background: linear-gradient(135deg, #3d4a4a 0%, #2b3535 100%);
}

.somos-evt--full .somos-evt__panel {
  display: flex;
  align-items: center;
  padding: 2rem 1.75rem;
}

.somos-evt--full .somos-evt__title {
  font-style: italic;
}

.somos-evt__excerpt {
  margin: 0.75rem 0 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  opacity: 0.92;
}

@media (max-width: 782px) {
  .somos-evt--single .somos-evt__inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .somos-evt--full {
    grid-template-columns: 1fr;
  }

  .somos-evt--full .somos-evt__media {
    min-height: 11rem;
    max-height: 40vh;
  }
}
