/** Shopify CDN: Minification failed

Line 38:11 Expected identifier but found whitespace
Line 38:12 Unexpected "1px"

**/
/* Grid Layout Modifications */
.blog-articles {
    display: grid;
    grid-gap: 4rem; /* Increased spacing between cards */
    margin: 0 auto;
    width: 100%;
    background-color: #f8f7f5; /* Our soft cream background */
    padding: 4rem 8%;
}

/* Single Column by default */
.blog-articles .article {
    width: 100%;
    margin: 0;
}

/* Two columns on larger screens */
@media screen and (min-width: 750px) {
    .blog-articles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Make first article full width if it's the only one */
    .blog-articles .article:first-child:last-child {
        grid-column: 1 / -1;
    }
}

/* Card Style Modifications */
/* .article-card-wrapper {
    background-color: rgba(252, 251, 249, 0.7); /* Very soft, translucent white */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.article-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

/* Card Content Styling */
.card__content {
    padding: 2.5rem;
}

.card__heading a {
    color: #1a1a1a;
    font-family: 'Cormorant', serif; /* Maintaining our luxury font */
}

.article-card__excerpt {
    color: #4a4a4a;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Image container modifications */
.article-card__image-wrapper {
    overflow: hidden;
}

.article-card__image-wrapper img {
    transition: transform 0.6s ease;
}

.article-card-wrapper:hover .article-card__image-wrapper img {
    transform: scale(1.05);
}

/* Spacing and typography adjustments */
.article-card__info {
    font-family: 'Cormorant', serif;
    color: #666;
    margin: 1rem 0;
}

/* Remove collage layout specific styles when using grid */
.blog-articles--collage > *:nth-child(3n + 1),
.blog-articles--collage > *:nth-child(3n + 2):last-child {
    grid-column: auto;
    text-align: left;
}
.main-blog{    
 height: 100vh;
    background-color: #f8f7f5;
    padding: 0 2rem;
    padding-top: 140px;
}