@charset "UTF-8";
/* =====================================================================
   Încorporări externe (iframe)
   ===================================================================== */

.embed {
  position: relative;
  margin: 2rem 0;
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  background: var(--navy-050, #EEF3FB);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(23,43,77,.08));
}

/* Varianta cu proporție: se adaptează la orice lățime de ecran */
.embed { aspect-ratio: var(--embed-ratio, 16 / 9); }

/* Varianta cu înălțime fixă: pentru orare, formulare, aplicații care nu au
   o proporție naturală. Pe telefon o reducem, altfel ocupă tot ecranul. */
.embed--fix {
  aspect-ratio: auto;
  height: var(--embed-h, 600px);
}
@media (max-width: 700px) {
  .embed--fix { height: min(var(--embed-h, 600px), 78vh); }
}

.embed > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* Cât se încarcă, un fundal discret în loc de dreptunghi gol */
.embed::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(
    -45deg, #F4F6FA, #F4F6FA 12px, #EDF1F7 12px, #EDF1F7 24px);
}
.embed > iframe { z-index: 1; }

@media print {
  .embed { display: none; }
}
