body {
    overflow-x: hidden;
}

.comunicado-entrada-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch; 
    
    width: 98vw; 
    max-width: 1200px;
    
    margin: 60px auto 80px auto;
    perspective: 1000px;
    
}

.comunicado-entry-page {
    flex: 1 1 50%;
    
    aspect-ratio: 3 / 4; 
    
    padding: clamp(15px, 2vw, 25px); 
    margin: clamp(5px, 1.5vw, 15px);
    
    position: relative;
    overflow: hidden; 
    
    transform: rotate(calc(var(--entry-page-rotation) * 1deg));
    filter: brightness(115%) contrast(105%);

    background-color: var(--color-blanco-sucio);
    border: 3px solid var(--color-negro-mugre);
    box-shadow: 15px 15px 0px var(--color-verde-punk);
}

.comunicado-entry-page:nth-child(1) { 
    --entry-page-rotation: -1.5;
    transform-origin: right center;
}

.comunicado-entry-page:nth-child(2) { 
    --entry-page-rotation: 1;
    transform-origin: left center;
}

.comunicado-cover-page {
    background-color: var(--color-negro-mugre);
    border: 3px solid var(--color-verde-punk);
    box-shadow: 15px 15px 0px var(--color-negro-mugre);
    
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.comunicado-cover-page .entry-cover-image {
    max-width: 95%;
    height: auto; 
    object-fit: contain; 
    
    display: block; 
    margin-left: auto;
    margin-right: auto;
    max-height: 85%; 

    background-color: var(--color-blanco-sucio);
    border: 5px solid var(--color-blanco-sucio);
    margin-bottom: 30px;
    transform: rotate(0.5deg);
}


.comunicado-index-page {
    padding: clamp(20px, 3vw, 40px); 
}

.entry-index-title {
    font-family: 'Tox Typewriter', monospace;
    font-size: clamp(1.1em, 2vw, 2.2em);
    color: var(--color-negro-mugre);
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px dashed var(--color-verde-punk);
    transform: rotate(1.5deg);
}

.entry-index-list {
    font-family: 'Tox Typewriter', monospace;
    font-size: clamp(0.8em, 1vw, 1.1em); 
    color: var(--color-negro-mugre);
    line-height: 1.3;
}

.entry-index-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 8px;
    padding: 0;
}

.left-side-wrapper {
    display: flex;
    flex-grow: 1; 
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0;
}

.entry-index-name {
    white-space: normal;
    word-break: break-word;
    overflow: visible; 
    text-overflow: clip; 
    
    padding-right: 0; 
    
    text-transform: uppercase;
    line-height: 1.5;
    max-width: calc(100% - 20px);
    flex-basis: auto;
    flex-shrink: 1;
    margin-right: 5px;

}

.entry-index-dots {
    flex: 1; 
    border-bottom: 2px dotted var(--color-negro-mugre); 
    display: block;
    margin: 0;
    margin-right: 5px;    
    height: 1.2em;    
    color: transparent; 
    white-space: nowrap; 
}

.entry-index-link {
    flex-shrink: 0;
    margin-left: 5px; 
    background-color: var(--color-verde-punk);
    color: var(--color-negro-mugre);
    text-decoration: none;
    padding: 2px 8px;
    border: 1px solid var(--color-negro-mugre);
    box-shadow: 1px 1px 0px var(--color-negro-mugre);
    text-transform: uppercase;
    transition: all 0.1s ease;
    transform: rotate(calc(var(--entry-link-rotation) * 1deg));
    --entry-link-rotation: 0.5;
    white-space: nowrap;
}

.entry-index-link:hover {
    background-color: var(--color-negro-mugre);
    color: var(--color-verde-punk);
    box-shadow: 2px 2px 0px var(--color-verde-punk);
    transform: rotate(0deg) scale(1.05);
}

.entry-index-footer-note {
    font-size: clamp(0.6em, 0.8vw, 0.9em); 
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--color-negro-mugre);
}


.edition-banner {
    text-align: center;
    position: relative;
    margin: 60px auto 60px auto;
    width: 85%;
    max-width: 900px;
    
    background-color: var(--color-blanco-sucio);
    border: 4px solid var(--color-negro-mugre); 
    box-shadow: 12px 12px 0px var(--color-verde-punk);
    
    padding: 25px 20px;
    transform: rotate(0.8deg);
    overflow: hidden;
}

.edition-banner h1 {
    font-size: clamp(2.2em, 4.5vw, 3.8em);
    color: var(--color-negro-mugre); 
    text-shadow: 2px 2px 0px var(--color-verde-punk); 
    margin: 0 0 10px 0;
    line-height: 1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.edition-banner h2 {
    font-size: clamp(0.9em, 1.8vw, 1.2em);
    color: var(--color-negro-mugre);
    margin-top: 5px;
    letter-spacing: 3px;
    line-height: 1.1;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}


