.blog-section {
    margin-top: 50px;
    margin-bottom: 100px;
}

.blog-top-pic-holder {
    width: 100%;
    height: 600px;
}

.blog-top-pic-holder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blog-heading-holder {
    text-align: center;
    margin-bottom: 50px;
}

.blog-heading-holder h1 {
    margin-bottom: 20px;
    font-size: 42px;
}

.blog-heading-holder p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

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

.blog-card {
    background: #ffffff;
    box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0px 10px 24px rgba(0, 0, 0, 0.16);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.blog-card-image-holder {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-card-image-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-content {
    padding: 24px;
}

.blog-date {
    color: rgb(255, 111, 0);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.blog-card-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #111;
}

.blog-excerpt {
    color: #555;
    line-height: 1.8;
    margin-bottom: 22px;
}

.read-more-btn {
    display: inline-block;
    color: rgb(255, 111, 0);
    font-weight: 700;
    border-bottom: 2px solid transparent;
    transition: 0.3s ease;
}

.blog-card:hover .read-more-btn {
    border-bottom: 2px solid rgb(255, 111, 0);
}

@media screen and (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-top-pic-holder {
        height: 420px;
    }
}

@media screen and (max-width: 767px) {
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .blog-top-pic-holder {
        height: 260px;
    }

    .blog-heading-holder h1 {
        font-size: 32px;
    }

    .blog-card-content h3 {
        font-size: 22px;
    }
}