/* =====================================
   HOME PAGE
   ===================================== */

.newest-artwork-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.home-featured-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.home-section-title {
    margin-bottom: 3rem;
}

.home-section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.home-section-title p {
    color: #666;
}

#featured-artwork-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.home-art-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-art-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.home-art-info {
    padding: 1.2rem;
}

.home-art-info h3 {
    margin-bottom: 0.35rem;
}

.home-art-info p {
    color: #666;
    font-size: 0.95rem;
}

.hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5rem;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero-text p {
    max-width: 560px;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

@media (max-width: 900px) {

    .hero {
        display: flex;
        flex-direction: column;
        min-height: auto;
    }

    .hero-image {
        order: 1;
        width: 100%;
        height: 340px;
        min-height: 340px;
    }

    .hero-image img {
        object-fit: cover;
        object-position: center center;
    }

    .hero-text {
        order: 2;
        padding: 2.25rem 2rem 2rem;
    }

    .hero-text h1 {
        font-size: clamp(2.4rem, 9vw, 3.8rem);
        line-height: .95;
    }

    .hero-text p {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    }
}