/* CONTENT ITEM */
.page-content-item-wrapper{
    max-width: 800px;
    width: 90vw;
    margin: 30px auto;
    display: grid;
    align-items: flex-end;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.page-content-item-wrapper img{
    width: 300px;
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0px 4px 8px var(--shadow-strong);
}
@media (max-width: 768px) {
    .page-content-item-wrapper{
        grid-template-columns: 1fr;
    }
    .page-content-item-wrapper img{
        width: 75vw;
    }
}
.page-content-item-title{
    font-size: 18px;
    font-weight: 700;
    color: var(--text-secondary);
}
.page-content-item-text{
    font-size: 15px;
    font-weight: 500;
    color: var(--page-text);
    margin-top: 10px;
}
.page-content-item-boton{
    color: var(--page-text);
    border: 1px solid var(--page-text);
    border-radius: 15px;
    margin-top: 20px;
    padding: 0px 10px;
    text-align: center;
}
.page-content-item-boton:hover{
    background-color: var(--surface-hover-light);
    cursor: pointer;
}

/* ///// GALERIA ///// */
.page_galeria-screen-wrapper {
  padding: 0 20px;
  margin-top: 40px;
}

.page_galeria-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.page_galeria-screen iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.external-media-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  text-align: center;
  color: var(--text-on-light);
  background-color: var(--surface-soft);
}

.external-media-placeholder[hidden] {
  display: none;
}

.external-media-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.external-media-placeholder p,
.external-media-placeholder button {
  position: relative;
  z-index: 1;
}

.external-media-placeholder p {
  max-width: 440px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgb(230 239 255 / 92%);
}

.page_galeria-screen-flex {
  max-width: 640px;
  margin: 0px auto;
  box-shadow: var(--shadow-deep) 1px 4px 11px;
}

.page_galeria-pie {
  width: min(640px, calc(100% - 40px));
  margin-top: 1rem;
  margin-inline: auto;
  color: var(--text-on-light);
  font-size: 16px;
  text-align: center;
  font-weight: 500;
}

.page_galeria-pie span {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}
