/* ====================================
   Pure Horror Styles
==================================== */

.purehorror-wrapper {
    display: flex;
    justify-content: center;
    padding: var(--spacing-lg, 2rem);
}
  
.purehorror-container {
    display: flex; 
    flex-direction: row; 
    gap: var(--spacing-sm, 1rem);
    padding: var(--spacing-lg, 2rem);
    justify-content: center;
    align-items: stretch;
    width: var(--max-width-md, 60rem);
}
  
.purehorror-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: var(--spacing-sm, 1rem);
    flex: 1; 
}
  
.purehorror-grid-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s;
}
  
.purehorror-grid-image:hover {
    transform: scale(1.05);
}
  
.purehorror-final {
    flex: 1; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.purehorror-final-image {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 0.3s;
}
  
.purehorror-final-image:hover {
    transform: scale(1.05);
}
  
.purehorror-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--lightbox-bg-color, rgba(0, 0, 0, 0.75));
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
  
.purehorror-modal-image {
    max-width: 90%;
    max-height: 90%;
    margin: auto;
}
  
.purehorror-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: var(--color-white, #fff);
    cursor: pointer;
    z-index: 1001;
}
  
.purehorror-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: none;
    border: none;
    color: var(--color-white, #fff);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
  
.purehorror-arrow:disabled {
    color: grey;
    cursor: not-allowed;
}
  
.purehorror-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: none;
    border: none;
    color: var(--color-white, #fff);
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}
  
#purehorror-prev-arrow {
    left: 30%; 
}

#purehorror-next-arrow {
    right: 30%; 
}

.purehorror-title {
    font-size: var(--font-size-xxl, 2rem);
    color: var(--color-dark, #333);
    text-align: center; 
    margin: var(--spacing-lg, 2rem);
}
  