/* File: render-news-post.css
   Description: Shared owner-sidebar inner styling + shared news/event-style post card styling.
*/

/* =========================
   OWNER SIDEBAR (INNER CONTENT ONLY)
   NOTE:
   - Outer shell/grid layout now belongs in render-post-core.css via .ll-post-shell*.
   - These classes are emitted by ll_render_post_owner_sidebar().
   ========================= */

.ll-news-owner-intro {
  margin-bottom: 16px;
}

.ll-news-owner-eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2563eb;
  margin-bottom: 6px;
  text-align: center;
}

.ll-news-owner-title {
  font-size: 28px;
  line-height: 1.1;
  margin: 0 0 8px;
  color: #111827;
}

.ll-news-owner-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #4b5563;
}

.ll-news-owner-link-wrap,
.ll-news-owner-public-link-wrap {
  margin: 0 0 1px;
  text-align: center;
}


/* =========================
   ← Return to Business Dashboard and View Public Event 
   ========================= */

.ll-news-owner-action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #1d4ed8;
  font-weight: 500;
  text-decoration: none;
}

.ll-news-owner-action-link:hover {
  text-decoration: underline;
}



.ll-view-public__icon {
  display: inline-flex;
  vertical-align: middle;
  margin-left: 0.2rem;
}

.ll-news-owner-edit-btn {
  margin: 12px 0;
}

.ll-news-owner-card {
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  margin-bottom: 14px;
}

.ll-news-owner-card__title {
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 12px;
}

.ll-news-owner-meta-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  margin-bottom: 10px;
}

.ll-news-owner-meta-row:last-child {
  margin-bottom: 0;
}

.ll-news-owner-meta-label {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

.ll-news-owner-meta-value {
  font-size: 14px;
  line-height: 1.45;
  color: #1f2937;
  word-break: break-word;
}

.ll-news-owner-business-name {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.ll-news-owner-card-link {
  display: inline-flex;
  justify-content: center;
  text-align: center;
  text-decoration: none;
}

.ll-news-owner-card-link:hover {
  text-decoration: none;
}

/* =========================
   PUBLIC POST WRAPPER / CARD
   Shared across news/event/offer-style renderers
   ========================= */

.ll-event-page {
  padding: 18px 12px;
}

.ll-event-card {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

/* =========================
   TOP ACTIONS
   ========================= */

.ll-event-top-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  gap: 10px;
}

.ll-event-top-actions__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   MAIN GRID
   ========================= */

.ll-event-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.ll-event-left {
  padding: 14px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ll-event-right {
  padding: 14px;
}

/* =========================
   HERO IMAGE
   ========================= */

.ll-event-hero {
  border-radius: 10px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.04);
}

.ll-event-hero__img {
  display: block;
  width: 100%;
  height: auto;
}

.ll-event-hero__placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* =========================
   MAP BLOCK
   ========================= */

.ll-event-map {
  margin-top: 12px;
}

.ll-event-map iframe {
  width: 100% !important;
  height: 260px !important;
  border: 0 !important;
  border-radius: 10px;
}

/* =========================
   SHARE ROW
   ========================= */

.ll-event-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 0 8px;
}

.ll-event-share__label {
  font-size: 14px;
  opacity: 0.75;
}

.ll-event-share__icons {
  display: flex;
  gap: 10px;
}

.ll-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: inherit;
}

.ll-share-icon:hover {
  transform: translateY(-1px);
}

/* =========================
   ACTION BUTTONS ROW
   ========================= */

.ll-event-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 10px;
}

/* =========================
   TITLE BLOCK
   ========================= */

.ll-event-title {
  font-size: 30px;
  line-height: 1.15;
  margin: 0 0 10px;
}

.ll-event-datetime {
  margin: 6px 0 6px;
  font-size: 18px;
}

.ll-event-add-to-calendar {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  margin-top: 4px;
}

/* =========================
   DETAIL BLOCKS
   ========================= */

.ll-event-block {
  margin-top: 1px;
}

.ll-event-block__label {
  font-weight: 800;
  margin-bottom: 6px;
}

.ll-event-block__value {
  font-size: 18px;
  line-height: 1.45;
}

.ll-event-description p {
  margin: 0 0 10px;
}

/* =========================
   SPONSORED BY
   ========================= */

.ll-event-sponsored {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 18px;
}

.ll-event-sponsored__label {
  font-weight: 800;
  margin-bottom: 10px;
}

/* =========================
   WIDE LAYOUT
   ========================= */

@media (min-width: 860px) {
  .ll-event-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ll-event-left {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding: 18px;
  }

  .ll-event-right {
    padding: 8px;
  }
}