.blog-section {
    padding: 60px 8%;
    text-align: center;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.blog-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    border: 5px solid #e4de32;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
    text-align: left;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
    color: #5a4a7d;
}

.blog-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

.blog-meta {
    margin-top: 10px;
    font-size: 0.85rem;
    color: #777;
    display: flex;
    justify-content: space-between;
}

.read-btn {
    display: inline-block;
    margin-top: 12px;
    background: #ff6b6b;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
}

.read-btn:hover {
    background: #ff4757;
}

/* REELS SECTION */
.reels-gallery {
    padding: 80px 8%;
    text-align: center;
    background: linear-gradient(135deg, #ffe8f3, #e8f9ff);
}

.reel-desc {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #555;
}

/* GRID */
.reels-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.instagram-media {
    border-radius: 20px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* REEL CARD */
.reel-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    cursor: pointer;
    transform: translateY(0px);
    transition: opacity 0.6s, transform 0.6s;
}

/* video */

.reel-card video {
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    display: block;
}

/* play button */

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* hover animation */

.reel-card:hover {
    transform: translateY(-8px) scale(1.03);
}

/* FOLLOW BUTTON */
.insta-follow {
    margin-top: 40px;
}

.insta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6ec7, #ff9a44);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.insta-btn:hover {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .reels-gallery {
        padding: 20px 6%;
    }

    .reel-card {
        width: 90vw;
    }
}