/* assets/css/ver_mas.css */

/* ESTRUCTURA GENERAL */
.page-container {
    display: flex;
    justify-content: center;
    /* CAMBIO: Reducimos aún más el espacio superior (de 7.5rem a 6.0rem) */
    padding-top: 6.0rem; 
    height: calc(100vh - 6.0rem);
    box-sizing: border-box;
}

.content-column {
    width: 100%;
    max-width: 900px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* TÍTULO */
.page-title {
    flex-shrink: 0;
    text-align: left;
    color: #FFF;
    font-size: 1.5rem;
    font-weight: bold;
    text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

/* MARCO Y SCROLL */
.content-frame {
    flex-grow: 1; 
    position: relative; 
    background-color: rgba(0,0,0,0.4);
    border-radius: 0.5rem;
    min-height: 0;
    display: flex;
}

.publications-list-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.publications-list {
    height: 100%;
    width: 100%;
    overflow-y: scroll; 
    scroll-snap-type: y mandatory; 
    scrollbar-width: none; 
}
.publications-list::-webkit-scrollbar {
    display: none; 
}

/* TARJETAS */
.post-card-link {
    display: block;
    height: 100%;
    width: 100%;
    scroll-snap-align: start; 
    position: relative;
    flex-shrink: 0;
}
.post-card {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
    position: relative;
    overflow: hidden;
}

/* CONTENIDO MULTIMEDIA */
.post-card img,
.post-card video {
    width: 100%;
    height: 100%;
    object-fit: contain; 
}
.post-card .video-container,
.post-card .video-container iframe {
    width: 100%;
    height: 100%;
}

/* DESCRIPCIÓN Y FLECHAS */
.post-card-description {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #fff;
    padding: 4rem 1.5rem 1.5rem 1.5rem;
    box-sizing: border-box;
    text-align: center;
}
.text-card {
    padding: 2rem;
    box-sizing: border-box;
    background-color: #222;
}
.scroll-arrows {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.arrow-up, .arrow-down {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.2s;
    user-select: none;
}
.arrow-up:hover, .arrow-down:hover {
    color: rgba(255, 255, 255, 1);
}
