.arch-6e94cae7-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 60px 20px;
    box-sizing: border-box;
    font-family: inherit;
    background-color: transparent;
}

/* Header styling */
.arch-6e94cae7-header-wrapper {
    margin-bottom: 40px;
    max-width: 800px;
}

.arch-6e94cae7-line-heading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.arch-6e94cae7-accent-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #C85A32;
    flex-shrink: 0;
}

.arch-6e94cae7-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin: 0;
    color: #1a1a1a;
    text-transform: uppercase;
}

.arch-6e94cae7-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
    padding-left: 65px; /* Aligns with text right of accent line */
}

/* Gallery Panels Accordion container */
.arch-6e94cae7-gallery-wrapper {
    display: flex;
    width: 100%;
    height: 520px;
    gap: 12px;
    transition: all 0.5s ease-in-out;
}

/* Individual Panel */
.arch-6e94cae7-panel {
    position: relative;
    flex: 1; /* Narrow by default */
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    overflow: hidden;
    transition: flex 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Initially muted via background darkening overlay */
.arch-6e94cae7-panel .arch-6e94cae7-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    opacity: 1;
    transition: opacity 0.5s ease;
}

/* Active Panel (either initially center or hovered) */
.arch-6e94cae7-panel.active {
    flex: 5; /* Expands visually */
}

.arch-6e94cae7-panel.active .arch-6e94cae7-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
}

/* Panel Internal Content styling */
.arch-6e94cae7-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    box-sizing: border-box;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
    pointer-events: none;
}

/* Show content only when active */
.arch-6e94cae7-panel.active .arch-6e94cae7-panel-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.arch-6e94cae7-panel-text {
    max-width: 75%;
}

.arch-6e94cae7-panel-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.arch-6e94cae7-panel-desc {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Premium arrow button */
.arch-6e94cae7-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 2px solid #C85A32;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    transition: background-color 0.3s, transform 0.3s;
}

.arch-6e94cae7-btn:hover {
    background-color: #C85A32;
    transform: scale(1.05);
}

.arch-6e94cae7-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile & Tablet Responsiveness */
@media screen and (max-width: 991px) {
    /* Hide some panels on tablet to keep display premium & functional */
    .arch-6e94cae7-panel:nth-child(n+7) {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .arch-6e94cae7-desc {
        padding-left: 0;
        margin-top: 10px;
    }
    
    /* Convert accordion to a vertical stack or simpler viewport grid */
    .arch-6e94cae7-gallery-wrapper {
        flex-direction: column;
        height: auto;
    }
    
    .arch-6e94cae7-panel {
        height: 250px;
        flex: none !important;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .arch-6e94cae7-panel-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        padding: 20px;
    }
    
    .arch-6e94cae7-panel-title {
        font-size: 18px;
    }
    
    .arch-6e94cae7-btn {
        width: 40px;
        height: 40px;
    }
}
