/* Blog Hero Styles */
.blog-hero {
    margin-top: 120px;
}

.blog-hero .container {
    max-width: 940px;
    margin: 0 auto;
}

.blog-hero .blog-title {
    font-size: 68px;
    font-weight: 500;
    line-height: 90px;
    margin-bottom: 40px;
    text-align: left;
    visibility: hidden;
}

.blog-hero .read-time {
    font-size: 18px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 60px;
    opacity: 0;
}

.blog-hero .section-line {
    transform: scaleX(0);
}

.blog-hero .read-time::before {
    content: "■";
    font-size: 8px;
}

/* Blog Content Styles */
.blog-content .container {
    max-width: 940px;
    margin: 0 auto;
}

.blog-image {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 80px;
}

.blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-text {
    width: 100%;
}

.blog-text h2 {
    font-size: 40px;
    font-weight: 400;
    line-height: 54px;
    margin-bottom: 20px;
}

.blog-text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 25px;
    margin-bottom: 40px;
}

.blog-text p:last-child {
    margin-bottom: 0;
}

/* Other Blogs Section */
.other-blogs {
    margin-top: 120px;
}

.other-blogs .container {
    max-width: 1420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.section-header {
    margin-bottom: 0;
}

.other-blogs .section-title {
    font-size: 50px;
    font-weight: 500;
    line-height: 65px;
    margin-bottom: 30px;
}

.other-blogs .section-line {
    width: 100%;
    height: 1px;
    background-color: #D9D9D9;
    margin-bottom: 60px;
}

.blog-list {
    width: 700px;
    display: flex;
    flex-direction: column;
    align-self: flex-end;
}

.blog-post {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 30px 0;
    width: 100%;
}

.blog-post .blog-title {
    font-size: 28px;
    font-weight: 500;
    line-height: 38px;
    text-align: left;
}

.blog-post .read-time {
    font-size: 18px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.blog-post .read-time::before {
    content: "■";
    font-size: 8px;
}

.blog-line {
    width: 700px;
    height: 1px;
    background-color: #D9D9D9;
    margin-top: 30px;
}

.blog-post:last-child .blog-line {
    display: none;
}

.blog-list-items {
    margin-bottom: 20px;
}

.blog-list-items li {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
}

.blog-list-items li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}

.blog-list-items li:last-child {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    /* Blog Hero Section */
    .blog-hero {
        margin-top: 0;
        padding-top: 60px;
    }

    .blog-hero .blog-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 16px;
    }

    .blog-hero .read-time {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    /* Blog Content */
    .blog-content {
        margin-top: 40px;
    }

    .blog-content .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .blog-text h2 {
        font-size: 24px;
        font-weight: 400;
        line-height: 32px;
        margin: 40px 0 16px 0;
    }

    /* Other Blogs Section */
    .other-blogs {
        margin-top: 80px;
        margin-bottom: 80px;
    }

    .other-blogs .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .blog-list {
        width: 100%;
    }

    .blog-line {
        width: 100%;
        margin-top: 20px;
    }

    .other-blogs .section-title {
        font-size: 32px;
        line-height: 42px;
        margin-bottom: 30px;
    }

    .other-blogs .section-line {
        margin-bottom: 30px;
    }

    /* Mobile Menu */
    .desktop-menu {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .blog-post {
        padding: 20px 0;
        gap: 4px;
    }

    .blog-post .blog-title {
        font-size: 24px;
        line-height: 32px;
    }

    .blog-post .read-time {
        font-size: 16px;
        line-height: 24px;
    }

    /* Blog post'lar arasındaki mesafeyi kaldırıyoruz çünkü padding ve line ile zaten sağlanıyor */
    .blog-post + .blog-post {
        margin-top: 0;
    }
} 

/* WordPress editör listeleri — statik .blog-list-items ile aynı */
.blog-text ul,
.blog-text .wp-block-list {
    margin-bottom: 20px;
    padding-left: 0;
}

.blog-text ul li,
.blog-text .wp-block-list li {
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 20px;
    padding-left: 24px;
    position: relative;
    list-style: none;
}

.blog-text ul li::before,
.blog-text .wp-block-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #000000;
}