/* muestras-minimal.css */
body.minimal-muestras {
    background-color: #ffffff;
    color: #111111;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.close-container {
    padding: 40px;
    display: flex;
    justify-content: flex-end;
    /* Align right */
}

.close-btn {
    text-decoration: none;
    color: #111;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.close-btn:hover {
    color: #888;
}

.muestras-list-container {
    max-width: 1200px;
    margin: 40px auto 80px auto;
    padding: 0 40px;
}

.muestras-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    /* Space between items */
}

.muestras-list-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered cascading effect for items */
.muestras-list-item:nth-child(1) {
    animation-delay: 0.1s;
}

.muestras-list-item:nth-child(2) {
    animation-delay: 0.2s;
}

.muestras-list-item:nth-child(3) {
    animation-delay: 0.3s;
}

.muestras-list-item:nth-child(4) {
    animation-delay: 0.4s;
}

.muestras-list-item:nth-child(5) {
    animation-delay: 0.5s;
}

.muestras-list-item:nth-child(6) {
    animation-delay: 0.6s;
}

.muestras-list-item:nth-child(7) {
    animation-delay: 0.7s;
}

.muestras-list-item:nth-child(8) {
    animation-delay: 0.8s;
}

.muestras-list-item:nth-child(9) {
    animation-delay: 0.9s;
}

.muestras-list-item:nth-child(10) {
    animation-delay: 1.0s;
}

.muestras-list-item:nth-child(11) {
    animation-delay: 1.1s;
}

.muestras-list-item:nth-child(12) {
    animation-delay: 1.2s;
}

.muestras-list-item:nth-child(13) {
    animation-delay: 1.3s;
}

.muestras-list-item:nth-child(14) {
    animation-delay: 1.4s;
}

.muestras-list-item:nth-child(15) {
    animation-delay: 1.5s;
}

.muestras-list-item:last-child {
    border-bottom: none;
}

.muestras-link {
    text-decoration: none;
    color: #111;
    display: flex;
    flex-direction: column;
    /* Stack title and year if present, or just title */
    transition: color 0.3s ease, transform 0.3s ease;
}

.muestras-title {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    /* Large imposing text */
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
    transition: font-style 0.3s ease;
}

.muestras-description {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #666;
    margin-top: 0.8rem;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

/* Hover Effect - Elegant Italicization or shift */
.muestras-link:hover .muestras-title {
    color: #555;
    font-style: italic;
    font-family: 'Playfair Display', serif;
    /* Switch to serif on hover for a sophisticated feel */
}

.muestras-link:hover {
    transform: translateX(10px);
    /* Slight nudge */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .muestras-list-container {
        margin-top: 100px;
        padding: 0 20px;
    }

    .muestras-title {
        font-size: 2rem;
    }
}