.fashion-blogs {
    padding: 40px;
    background: #FFFFFF;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0.5rem;
  }

.intro-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--primary-color);
    max-width: 1000px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
    font-family: 'Georgia', serif;
    text-align: center;
  }

.blog-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
}
  
.blog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-card h2 {
    color: var(--primary-color);
}
  
.image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}
  
.image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity 0.4s ease;
}
  
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: #FFFFFF;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.4s ease;
}
  
.image-wrapper:hover img {
    opacity: 0.7;
}
  
.image-wrapper:hover .overlay {
    opacity: 1;
}
  
.post-title {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

/* Responsive Styling */
@media (max-width: 1024px) {
    .page-title {
        font-size: 2.5rem;
    }

    .intro-text {
        font-size: 1.1rem;
        line-height: 1.5;
        max-width: 800px;
    }
}

@media (max-width: 435px) {
    .page-title {
        font-size: 2rem;
    }

    .intro-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}