/**
 * AC Single Page Pro - Main Layout Structure
 * Version: 1.0.0
 * Description: 62:38 split layout with full-width gallery
 */

/* ========================================
   MAIN WRAPPER
   ======================================== */

.ac-spp-profile-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
}

/* ========================================
   GALLERY - FULL WIDTH
   ======================================== */

.ac-spp-gallery-container {
    width: 100%;
    margin-bottom: 40px;
}

.ac-spp-section.ac-spp-gallery {
    width: 100%;
}

/* ========================================
   TWO COLUMN LAYOUT (62:38 SPLIT)
   ======================================== */

.ac-spp-two-column-layout {
    display: grid;
    grid-template-columns: 62% 38%;
    gap: 40px;
    align-items: start;
}

/* ========================================
   MAIN CONTENT COLUMN (LEFT - 62%)
   ======================================== */

.ac-spp-main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* ========================================
   SIDEBAR COLUMN (RIGHT - 38%)
   ======================================== */

.ac-spp-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========================================
   SECTION STYLING
   ======================================== */

.ac-spp-section {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ac-spp-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 24px;
    color: #333;
}

/* ========================================
   TABLET RESPONSIVE (1024px and below)
   ======================================== */

@media (max-width: 1024px) {
    .ac-spp-two-column-layout {
        grid-template-columns: 60% 40%;
        gap: 30px;
    }

    .ac-spp-sidebar {
        top: 15px;
    }

    .ac-spp-gallery-container {
        margin-bottom: 30px;
    }
}

/* ========================================
   MOBILE RESPONSIVE (768px and below)
   ======================================== */

@media (max-width: 768px) {
    .ac-spp-two-column-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ac-spp-sidebar {
        position: static;
        order: 2;
    }

    .ac-spp-main-content {
        order: 1;
        gap: 20px;
    }

    .ac-spp-section {
        padding: 20px;
    }

    .ac-spp-gallery-container {
        margin-bottom: 20px;
    }
}

/* ========================================
   SMALL MOBILE (480px and below)
   ======================================== */

@media (max-width: 480px) {
    .ac-spp-profile-wrapper {
        padding: 0 10px;
    }

    .ac-spp-section {
        padding: 16px;
        border-radius: 8px;
    }

    .ac-spp-section h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .ac-spp-main-content {
        gap: 16px;
    }

    .ac-spp-sidebar {
        gap: 16px;
    }
}
