/* Widget Wrapper */
.ap-wrapper-42d168d7 {
    background-color: #3D3D3D;
    border-radius: 12px;
    padding: 60px 40px;
    color: #F5F5F5;
    font-family: inherit;
    box-sizing: border-box;
    overflow: hidden;
    /* Entrance Animation */
    opacity: 0;
    animation: apFadeIn-42d168d7 0.6s ease-out forwards;
}

@keyframes apFadeIn-42d168d7 {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header Section */
.ap-header-42d168d7 {
    text-align: center;
    margin-bottom: 40px;
}

.ap-badge-42d168d7 {
    display: inline-block;
    padding: 6px 12px;
    border: 1px solid #F5F5F5;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #F5F5F5;
}

.ap-title-42d168d7 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #F5F5F5;
    line-height: 1.2;
}

.ap-subtitle-42d168d7 {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Animated Highlight */
.ap-highlight-42d168d7 {
    background: linear-gradient(90deg, #F5F5F5 0%, #C9A96E 50%, #F5F5F5 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    display: inline-block;
    animation: apColorSweep-42d168d7 3s linear infinite;
}

@keyframes apColorSweep-42d168d7 {
    to { background-position: 200% center; }
}

/* Image Grid Layout */
.ap-grid-42d168d7 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* Photo Slots */
.ap-slot-42d168d7 {
    background-color: #E0E0E0;
    border: 2px solid #555555;
    border-radius: 8px;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    
    /* Staggered Fade Up */
    opacity: 0;
    animation: apFadeUp-42d168d7 0.6s ease-out forwards;
}

/* Animation Delays */
.ap-slot-42d168d7.delay-1 { animation-delay: 0.6s; } /* Starts after wrapper finishes */
.ap-slot-42d168d7.delay-2 { animation-delay: 0.75s; }
.ap-slot-42d168d7.delay-3 { animation-delay: 0.9s; }

@keyframes apFadeUp-42d168d7 {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Placeholder Styling */
.ap-slot-placeholder-42d168d7 {
    color: #666666;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.ap-slot-placeholder-42d168d7 svg {
    width: 32px;
    height: 32px;
    fill: #666666;
    margin-bottom: 8px;
}

/* Real Images */
.ap-slot-img-42d168d7 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

/* Responsive (Mobile Stack) */
@media (max-width: 767px) {
    .ap-wrapper-42d168d7 {
        padding: 40px 20px;
    }
    .ap-grid-42d168d7 {
        grid-template-columns: 1fr;
    }
    .ap-title-42d168d7 {
        font-size: 28px;
    }
}
