* {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

/* blog banner  */
.blog-banner {
    background: url(../images/site/banner/blog-banner.jpg) top left / cover no-repeat;
    width: 100%;
    height: 100vh;
    aspect-ratio: 1.78 / 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.blog-banner h2 {
    height: auto;
    /* width: 100%; */
    display: flex;
    justify-content: left;
    align-items: normal;
    text-align: right;
    line-height: 35px;
    margin-top: 2%;
    padding-left: 40%;
    color: rgb(252, 246, 214);
}

.blog-banner h1 {
    height: auto;
    /* width: 100%; */
    display: flex;
    font-size: 4rem;
    justify-content: left;
    text-align: right;
    line-height: 55px;
    align-items: normal;
    margin-top: 2%;
    padding-left: 30%;
    color: rgb(255, 255, 255);
}

/* blog-content-heading */
.blog-category-heading {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.blog-category-heading .section-title {
    font-family: Poppins, "sans-serif";
    margin-top: 2%;
    margin-bottom: 1%;
}

h2.section-sub-title {
    font-weight: 300;
    font-size: 1.2rem;
    color: #515151;
    letter-spacing: .2rem;
    text-transform: uppercase;
    text-align: center;
    /* text-shadow: 0rem 0rem .5rem #333333c4; */
}

/* blog-content */
.blogs-cards-section {
    width: 90%;
    height: auto;
    margin-top: 5%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5% 0 5%;
}

.blog-card {
    width: 21rem;
    height: auto;
    display: flex;
    flex-direction: column;
}

/* blog card image  */
.blog-card-image-section {
    width: 100%;
    height: 15rem;
    overflow: visible;
    border-radius: 10px;
}

.blog-card-image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    border-radius: 10px;
}

.image-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-overlay img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.blog-overlay{
    background-color: aquamarine;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(243, 21, 21, 0.85), rgba(0, 0, 0, 0.2));
    /* Stronger gradient */
    border-radius: 10px;
    /* Match image border-radius */
}

.place-name {
    width: 100%;
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-align: center;
    line-height: 26px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

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

/* blog details  */
.blog-desc {
    width: 100%;
    margin-bottom: 15%;
}

.authon-name-and-views {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 15px;
}

/* .authon-name-and-views p{
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    color: #EE7004;
} */
.authon-name-and-views h1 {
    font-size: 0.8rem;
    width: 6rem;
    text-align: right;
    margin: 0px;
}

h1.blog-title {
    font-size: 1.2rem;
    font-family: "Lora", serif;
    color: rgb(24, 24, 24);
    font-weight: 500;
    line-height: 26px;
    min-height: 52px;
    margin-top: 15px;
    position: relative;
    transition: color 0.3s ease;
}

h1.blog-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background-color: rgb(70, 70, 70);
    transition: width 0.3s ease;
}

h1.blog-title:hover::after {
    width: 100%;
}

.blog-destinations .inner-container {
    /* margin-top: -1%; */
}