/* Hero Section */
.hero-section {
    background-color: #FFFFFF;
    border-radius:30px;
    margin-top:1px;
    padding-top:80px;
    padding-bottom:80px;
}
.hero-title {
    font-size: 72px;
    font-family: 'tn-condensed-medium';
    line-height: 100%;
    text-transform: uppercase;
}
.hero-title-mobile {
    font-size: 28px;
    font-family: 'tn-condensed-medium';
    line-height: 100%;
    text-transform: uppercase;
}
.hero-para-row {
    margin-top: 60px;
}
.hero-para {
    font-size: 28px;
    font-family: 'tn-regular';
    line-height: 140%;
}
.hero-para-mobile {
    font-size: 18px;
    font-family: 'tn-regular';
    line-height: 140%;
}
.hero-label {
    font-size: 18px;
    color: #404145;
    font-family: 'tn-regular';
}
.hero-img {
    margin-top: 40px;
    width: 100%;
    aspect-ratio: 5/2;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

/* Description Section */
.description-section {
    background-color: #FFFFFF;
    border-radius:30px;
    margin-top:1px;
    padding-top:80px;
    padding-bottom:80px;
}

.blog-detail-title{
    font-size: 32px;
    font-family: 'tn-medium';
    line-height: 100%;

}
.blog-detail-pera{
    font-size: 18px;
    font-family: 'tn-regular';
    line-height: 140%;
}
.blog-details-all{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.quote{
    font-style: italic;
    border-left: 1px solid black;
    padding-left: 20px;
}

.tab-button, .share-button{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
}
.topics-btn {
    background: #E6E6E6;
    color: #000;
    margin-left: 0px;
    font-family: 'tn-regular';
    text-transform: capitalize;
    font-size: 18px;
    padding: 10px 30px;
    border: none;
    width: fit-content;
}
.topics-btn:hover {
    background: #000;
    color: #fff;
}

.share-btn{
    background: #000;
    color: #fff;
    margin-left: 0px;
    font-family: 'tn-regular';
    text-transform: capitalize;
    font-size: 18px;
    padding: 10px 30px;
    border: none;
    width: fit-content;
}
.share-btn:hover{
    background: #241BDC;
    color: #fff;
}
.share-btn svg{
    color: #FFFFFF;
    fill: #FFFFFF;
}

/* Other Articles Section */
.other-article-section {
    background-color: #FFFFFF;
    border-radius:30px;
    margin-top:1px;
    padding-top:80px;
    padding-bottom:80px;
}
.other-article-main-title {
    font-size: 72px;
    font-family: 'tn-condensed-medium';
    text-transform: uppercase;
}
.blog-grid-row {
    margin-top: 40px;
}
[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-title{
    font-size: 32px;
    font-family: 'tn-medium';
    margin-top: 20px;
}
.blog-label {
    font-size: 18px;
    font-family: 'tn-regular';
    color: #404145;
}
.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-box:hover .blog-arrow-icon{
    border: 1px solid #241BDC;
    background-color: #241BDC;
    fill: #FFFFFF;
}

/* Tablet view only (portrait + landscape) */
@media (max-width: 991px) {
    [id^="projectImgBox"] {
        aspect-ratio: 5 / 3;
    }
}


@media (max-width: 768px) {
    .hero-img {
        height: 250px;
    }
    .hero-section {
        padding-bottom: 40px;
        padding-top: 40px;
    }
    .description-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .blog-detail-title{
        font-size: 20px;
    }
    .blog-detail-pera{
        font-size: 16px;
    }
    .other-article-main-title{
        font-size: 36px;
    }
    .other-article-section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    [id^="blogImgBox"] {
        height: 250px;
        border-radius: 16px;
    }
    [id^="blogTexBox"] {
        margin-top: 20px;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: flex-start;
    }
    .blog-grid-row {
        gap: 30px;
        margin-top: 10px;
    }
    .blog-grid-row .col-sm-6{
        padding: 0;
    }
    .blog-list-section{
        padding-top: 10px;
        padding-bottom: 60px;
    }
    .blog-title {
        font-size: 24px;
    }
}