/* Blog Hero Section */
.hero-section {
    background-color: #FFFFFF;
    border-radius:30px;
    margin-top:1px;
    padding-top:80px;
    padding-bottom:80px;
}
.hero-title {
    font-size: 120px;
    font-family: 'tn-condensed-medium';
    text-transform: uppercase;
}
.hero-title-mobile {
    font-size: 62px;
    font-family: 'tn-condensed-medium';
    text-transform: uppercase;
}
.hero-para {
    width: 60%;
    font-size: 32px;
    font-family: 'tn-regular';
    line-height: 120%;
}
.hero-para-mobile {
    font-size: 18px;
    font-family: 'tn-regular';
    line-height: 120%;
}

/* Blog List Section */
.blog-arrow-icon{
    width: 56px;
    height: 56px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #404145;
    border-radius: 50%;
    padding: 16px;
    transform: rotate(-45deg);
    transition: all 0.3s ease-in-out;
}
.blog-arrow-icon:hover{
    border: 1px solid #241BDC;
    background-color: #241BDC;
    fill: #FFFFFF;
    transform: rotate(0deg) !important;
    transition: all 0.3s ease-in-out;
}
.blog-list-section {
    background-color: #FFFFFF;
    border-radius:30px;
    margin-top:1px;
    padding-top:80px;
    padding-bottom:80px;
}
.blog-grid-row {
    margin-top: 48px;
}
[id^="blogImgBox"] {
    width: 100%;
    aspect-ratio: 5 / 3;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
}
[id^="blogTexBox"] {
    margin-top: 40px;
    display: flex;
    gap: 30px
}
.blog-label {
    font-size: 18px;
    color: #404145;
    font-family: 'tn-regular';
}
.blog-title {
    font-family: 'tn-medium';
    font-size: 32px;
    line-height: 110%;
    margin-top: 20px;
}

.blog-box:hover .blog-arrow-icon{
    border: 1px solid #241BDC;
    background-color: #241BDC;
    fill: #FFFFFF;

}

@media (max-width: 991px) { /* Tablet breakpoint */
    .hero-para {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    [id^="blogImgBox"] {
        border-radius: 16px;
    }
    [id^="blogTexBox"] {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-all{
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .blog-grid-row {
        gap: 30px;
        margin-top: 0;
    }
    .blog-list-section{
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .blog-title {
        font-size: 24px;
    }
}