.pls-wrapper-7480eccc {
    background-color: transparent !important;
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

.pls-header-7480eccc {
    margin-bottom: 2.5rem;
}

.pls-title-7480eccc {
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.pls-subtitle-7480eccc {
    margin: 0;
    color: #666;
}

.pls-grid-7480eccc {
    display: flex;
    flex-wrap: nowrap; /* Forced to single line */
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    overflow: hidden; /* Prevent horizontal scrolling */
}

.pls-item-7480eccc {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
    cursor: pointer; /* Change cursor for download link */
    flex: 1 1 0; /* Distribute space evenly, allow shrinking */
    min-width: 0; /* Critical for flex items to shrink below content size */
    text-decoration: none; /* Remove underline if it's a link */
}

.pls-item-img-7480eccc {
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
    width: 100%;
    max-width: 100%; /* Ensure image doesn't break flex container */
}

/* Grayscale Mode */
.pls-wrapper-7480eccc.has-grayscale .pls-item-img-7480eccc {
    filter: grayscale(100%);
}

/* Hover State */
.pls-item-7480eccc:hover {
    opacity: 1 !important;
}

.pls-wrapper-7480eccc.has-grayscale .pls-item-7480eccc:hover .pls-item-img-7480eccc {
    filter: grayscale(0%);
}

/* Fade In Animation */
.pls-wrapper-7480eccc.has-fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pls-wrapper-7480eccc.has-fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}
