@media (min-width: 768px) {
    /* Blog Post Styles */
.post-content {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

/* Hero Section Styles */
.post-hero {
    position: relative;
    width: 100%;
    min-height: 60vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.3s ease;
}

.post-hero:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.6) 50%,
        rgba(0,0,0,0.8) 100%
    );
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 40px;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.hero-category,
.hero-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-summary {
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 800px;
    margin-bottom: 20px;
    opacity: 0.9;
}


.entry-title {
    font-size: 2.5rem;
    color: #2d3436;
    margin: 20px 0;
    line-height: 1.3;
}

.post-category a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #007ced;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.post-category a:hover {
    background: #0056b3;
}

.post-date {
    color: #666;
    font-size: 0.9rem;
    margin-left: 15px;
}

.post-summary {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}

/* Content Layout */
.post-content {
    position: relative;
    margin-top: -60px;
    border-radius: 30px 30px 0 0;
    padding: 40px 0 0;
}

/* Project Info Cards */
.project-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #fff 100%);
    border-radius: 30px 30px 0 0;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-icon {
    font-size: 2rem;
    color: #007ced;
    margin-bottom: 15px;
}

.info-card h3 {
    color: #2d3436;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Content Sections */
.content-sections {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.content-section:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: rgba(0,123,237,0.2);
}

.content-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: #2d3436;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #007ced;
}

.section-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Section Specific Styles */
.idea-section { border-left: 4px solid #ffd43b; }
.challenges-section { border-left: 4px solid #ff6b6b; }
.learnings-section { border-left: 4px solid #51cf66; }
.conclusion-section { border-left: 4px solid #339af0; }

  }


@media (max-width: 767px) {
    /* Genel sıfırlama */
    .post-content,
    .post-hero,
    .hero-image-container,
    .hero-image-wrapper,
    .hero-image,
    .hero-overlay,
    .hero-content,
    .hero-meta,
    .hero-category,
    .hero-date,
    .hero-title,
    .hero-summary,
    .entry-title,
    .post-category a,
    .post-date,
    .post-summary,
    .project-info-grid,
    .info-card,
    .card-icon,
    .content-sections,
    .content-section,
    .section-content,
    .idea-section,
    .challenges-section,
    .learnings-section,
    .conclusion-section {
        all: unset;
        display: block;
    }

    /* --- Hero Image --- */
  .post-hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9; /* otomatik yükseklik */
    overflow: hidden;
  }

  .hero-image-wrapper,
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }


    /* --- Entry Title --- */
    .entry-title {
        
        font-size: 1.5rem;
        font-weight: 700;
        color: red;
        margin: 20px 15px;
        line-height: 1.3;
        text-align: center; /* başlık ortaya gelsin */
    }

    /* Eğer hero içerik varsa mobilde basit padding */
    .hero-content {
        padding: 15px;
        text-align: center;
    }
}
