/* --- BLOG DETAY PAGE STYLES --- */
.page-blog-detay {
    background-color: var(--clr-bg-dark);
}

.blog-detay-hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: clamp(120px, 15vw, 200px);
    overflow: hidden;
}



.bd-gradient-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, var(--clr-bg-dark) 100%);
    z-index: 2;
}

.bd-hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 0 15px;
    text-align: center;
}

.bd-read-time {
    background-color: #1E1E1E;
    color: #FFFFFF;
    font-family: 'Halenoir', sans-serif;
    font-size: clamp(12px, 1.2vw, 15px);
    padding: 6px 16px;
    border-radius: 4px;
    /* Optional slight rounding looks good on pills */
}

.bd-title {
    font-family: 'Joyride 2.0', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
    color: #FFFFFF;
    margin-top: 25px;
    width: 900px;
    max-width: 100%;
    word-break: break-word;
}

.bd-can-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: clamp(40px, 6vw, 80px);
}

.bd-can-img {
    width: 100%;
    height: auto;
    display: block;
    /* Daha fazla çaprazlık için değerler artırıldı */
    clip-path: polygon(0 12%, 100% 0, 100% 88%, 0 100%);
    /* Alt kenardan yüksekliği biraz azaltmak için max-height eklendi */
    max-height: 70%;
    object-fit: cover;
}

.bd-content-section {
    position: relative;
    z-index: 4;
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(40px, 6vw, 80px);
    max-width: 800px;
    margin: 0 auto;
}

.bd-lead {
    font-family: 'Halenoir', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 29px;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-align: center;
}

.bd-body-text {
    font-family: 'Halenoir', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    line-height: 29px;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-align: center;
    opacity: 0.9;
}

.bd-share-container {
    display: flex;
    justify-content: center;
}

.bd-share-box {
    background-color: #1E1E1E;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 4vw, 57px);
    padding: 20px 40px;
    border-radius: 8px;
}

.bd-share-sep {
    width: 1px;
    height: 18px;
    background-color: var(--clr-accent);
}

.bd-share-box a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.bd-share-box a:hover {
    opacity: 0.7;
}

@media only screen and (max-width: 991px)
{
    .kralligini-hisset-section {
        height: 250px !important;
        margin: 0 !important;
    }
    .kralligini-marquee-container
    {
        bottom: 0!important;
    }
}

@media (max-width: 768px) {
    .bd-share-box {
        padding: 15px 30px;
        gap: 30px;
    }

    .blog-detay-hero {
        padding-top: 180px;
        /* Mobilde daha aşağıdan başlasın */
    }
}