.blog-listing-section,
.blog-detail-section {
    /* padding: 48px 0 72px; */
    background: #ffffff;
}

.blog-page-heading {
    text-align: center;
    margin-bottom: 34px;
}

.blog-page-heading h1,
.blog-related-section h2 {
    margin: 0;
    color: #111111;
    font-size: 30px;
    font-weight: 900;
    text-transform: uppercase;
}

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

.blog-card {
    background: #f3f3f3;
    border: 1px solid #e3e3e3;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.blog-card-image {
    display: block;
    aspect-ratio: 1.22 / 1;
    background: #e9e9e9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}

.blog-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-date {
    margin: 0 0 10px;
    color: #777777;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-card-date span {
    margin-left: 8px;
}

.blog-card-title {
    color: #111111;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
    text-decoration: none;
    text-transform: uppercase;
}

.blog-card-title:hover {
    color: #111111;
}

.blog-card-excerpt {
    margin: 12px 0 18px;
    color: #555555;
    font-size: 13px;
    line-height: 1.65;
    flex: 1;
}

.blog-card-link,
.blog-back-link {
  color:#000;
    text-decoration:none;
}




.blog-pagination {
    margin-top: 36px;
}

.blog-empty {
    padding: 48px 20px;
    background: #f7f7f7;
    border: 1px dashed #d8d8d8;
    text-align: center;
}

.blog-empty p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    font-weight: 700;
}

.blog-detail-header {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: center;
}

.blog-detail-header h1 {
    margin: 18px 0 12px;
    color: #111111;
    font-size: 42px;
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-detail-header p {
    margin: 0;
    color: #777777;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.blog-detail-header p span {
    margin-left: 8px;
}

.blog-detail-image {
    max-width: 1040px;
    margin: 0 auto 36px;
    aspect-ratio: 16 / 8;
    background: #eeeeee;
    overflow: hidden;
}

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

.blog-detail-content {
    max-width: 860px;
    margin: 0 auto;
    color: #333333;
    font-size: 16px;
    line-height: 1.9;
}

.blog-related-section {
    padding: 0 0 72px;
}

.blog-related-section h2 {
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .blog-detail-header h1 {
        font-size: 34px;
    }
}

@media (max-width: 575px) {
    .blog-listing-section,
    .blog-detail-section {
        /* padding: 34px 0 52px; */
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-detail-header h1 {
        font-size: 28px;
    }

    .blog-detail-image {
        aspect-ratio: 4 / 3;
    }
}
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    border-top: solid 2px #fff;
    padding: 10px 0px;
    border-bottom: solid 2px #fff;
}

.blog-card-footer .soicals {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-card-footer .soicals a i {
   color:#000;
}