/* ===================================================
   THE METALLIQUE HANDICRAFT
   LAYOUT SYSTEM
=================================================== */

/* Main Container */

.container {
    width: min(1440px, calc(100% - 80px));
    margin-inline: auto;
}

/* Standard Section */

.section {
    padding: var(--space-section) 0;
}

/* Small Section */

.section-sm {
    padding: 120px 0;
}

/* Full Screen Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* Two Column Layout */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Three Column Layout */

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Center Content */

.center {
    text-align: center;
}

/* Maximum Text Width */

.text-column {
    max-width: var(--text-column);
}

/* Image Wrapper */

.image-column img {
    width: 100%;
    height: auto;
    object-fit: cover;
}