/* Blog detay sayfası v2 — modern tasarım */

/* HERO */
.post-hero {
    position: relative;
    min-height: 360px;
    padding: 90px 0 60px;
    background: #222 center/cover no-repeat;
    color: #fff;
    display: flex;
    align-items: flex-end;
}
.post-hero .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
}
.post-breadcrumb {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 14px;
}
.post-breadcrumb a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}
.post-breadcrumb a:hover {
    color: #FF8400;
}
.post-breadcrumb span {
    margin: 0 6px;
    color: rgba(255,255,255,0.6);
}
.post-breadcrumb .current {
    color: #fff;
    font-weight: 500;
}
.post-hero .post-title {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 12px;
    max-width: 800px;
}
.post-hero .post-lead {
    color: rgba(255,255,255,0.95);
    font-size: 17px;
    line-height: 1.55;
    max-width: 720px;
    margin: 0 0 18px;
}
.post-hero .post-meta {
    font-size: 13px;
    color: rgba(255,255,255,0.85);
}
.post-hero .post-meta span {
    margin-right: 18px;
    display: inline-block;
}
.post-hero .post-meta i {
    margin-right: 5px;
    color: #FF8400;
}
@media (max-width: 768px) {
    .post-hero { min-height: 260px; padding: 60px 0 36px; }
    .post-hero .post-title { font-size: 26px; }
    .post-hero .post-lead { font-size: 15px; }
}

/* SECTION */
.post-detail-section {
    background: #fff;
    padding: 50px 0 70px;
}

/* ARTICLE CONTENT */
.post-article {
    color: #333;
}
.post-body {
    font-size: 16.5px;
    line-height: 1.75;
    color: #444;
}
.post-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #222;
    margin: 40px 0 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF8400;
    display: inline-block;
}
.post-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    margin: 32px 0 12px;
}
.post-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 10px;
}
.post-body p {
    margin: 0 0 18px;
}
.post-body ul, .post-body ol {
    margin: 0 0 20px;
    padding-left: 28px;
}
.post-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.post-body strong {
    color: #222;
    font-weight: 600;
}
.post-body a {
    color: #FF8400;
    text-decoration: underline;
}
.post-body blockquote {
    border-left: 4px solid #FF8400;
    padding: 12px 0 12px 20px;
    color: #555;
    font-style: italic;
    margin: 24px 0;
    background: #fff8f0;
}

/* GALLERY */
.post-gallery {
    margin: 40px 0 20px;
}
.post-gallery h3 {
    font-size: 22px;
    margin-bottom: 18px;
}
.gallery-item {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform .2s;
}
.gallery-item:hover { transform: translateY(-2px); }
.gallery-item img { width: 100%; height: auto; }

/* SHARE BUTTONS */
.post-share {
    margin: 36px 0 24px;
    padding: 18px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.post-share-label {
    font-weight: 600;
    color: #555;
    margin-right: 8px;
}
.share-btn {
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform .15s, opacity .15s;
}
.share-btn:hover { transform: scale(1.1); color: #fff; }
.share-fb { background: #1877f2; }
.share-tw { background: #1da1f2; }
.share-wa { background: #25d366; }
.share-ml { background: #6c757d; }

/* INLINE CTA */
.post-cta {
    margin: 30px 0;
    padding: 32px;
    background: linear-gradient(135deg, #FF8400 0%, #ff9e33 100%);
    border-radius: 6px;
    color: #fff;
    text-align: center;
}
.post-cta h3 {
    color: #fff;
    margin: 0 0 10px;
    font-size: 22px;
    font-weight: 700;
}
.post-cta p {
    margin: 0 0 18px;
    opacity: 0.95;
    font-size: 15px;
}
.post-cta .awe-btn {
    background: #fff;
    color: #FF8400;
    padding: 12px 28px;
    font-weight: 700;
}
.post-cta .awe-btn:hover {
    background: #222;
    color: #fff;
}

/* SIDEBAR */
.post-sidebar {
    padding-top: 10px;
}
.sidebar-widget {
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FF8400;
    display: inline-block;
}
.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.sidebar-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.sidebar-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    text-decoration: none;
    font-size: 13.5px;
    line-height: 1.4;
    transition: color .15s;
}
.sidebar-list a:hover { color: #FF8400; }
.sidebar-list img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

/* BOOKING WIDGET */
.booking-sticky {
    background: #fff;
    border: 1px solid #eee;
}
.booking-input {
    display: block;
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-bottom: 8px;
    font-size: 14px;
    box-sizing: border-box;
}
.booking-submit {
    width: 100%;
    margin-top: 6px;
}

/* RELATED POSTS */
.post-related {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.post-related-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}
.related-card {
    display: block;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    margin-bottom: 20px;
    transition: transform .2s, box-shadow .2s;
}
.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    text-decoration: none;
    color: inherit;
}
.related-img {
    position: relative;
    padding-top: 58%;
    overflow: hidden;
    background: #f5f5f5;
}
.related-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-card h5 {
    padding: 14px 16px 18px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
}

@media (max-width: 991px) {
    .post-sidebar { margin-top: 40px; }
}
