:root {
    --psbd-black: #1E1E1C;
    --psbd-yellow: #F6AE2D;
    --psbd-cinnabar: #E0563B;
    --psbd-platinum: #DADADA;
    --psbd-white: #ffffff;
    --psbd-soft: #f7f4ef;
    --psbd-font: 'FF Neuwelt', 'Neuwelt', 'Inter', 'Arial', sans-serif;
}

/* Global box-sizing & metin taşma koruması */
.psbd-wrapper,
.psbd-wrapper *,
.psbd-wrapper *::before,
.psbd-wrapper *::after {
    box-sizing: border-box;
}

.psbd-wrapper h1,
.psbd-wrapper h2,
.psbd-wrapper h3,
.psbd-wrapper h4,
.psbd-wrapper h5,
.psbd-wrapper h6,
.psbd-wrapper p,
.psbd-wrapper li,
.psbd-wrapper span,
.psbd-wrapper a,
.psbd-wrapper blockquote,
.psbd-wrapper figcaption {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Ana kapsayıcı */
.psbd-wrapper {
    font-family: var(--psbd-font);
    background: var(--psbd-soft);
    color: var(--psbd-black);
    overflow-x: hidden;
    max-width: 100vw;
}

/* Header yüksekliği için güvenli üst boşluk */
.psbd-hero {
    padding: 190px 24px 80px;
    background:
        radial-gradient(circle at top right, rgba(246, 174, 45, 0.28), transparent 34%),
        linear-gradient(135deg, var(--psbd-black) 0%, #282824 52%, var(--psbd-cinnabar) 100%);
    color: var(--psbd-white);
    position: relative;
    overflow: hidden;
}

.psbd-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    background: var(--psbd-yellow);
    border-radius: 50%;
    opacity: 0.18;
    pointer-events: none;
}

.psbd-hero-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.psbd-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin-bottom: 42px;
    font-size: 14px;
    opacity: 0.82;
}

.psbd-breadcrumb a {
    color: var(--psbd-white);
    text-decoration: none;
}

.psbd-breadcrumb a:hover {
    color: var(--psbd-yellow);
}

.psbd-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
    gap: 56px;
    align-items: center;
}

.psbd-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.psbd-category {
    display: inline-flex;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--psbd-yellow);
    color: var(--psbd-black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.psbd-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.72);
}

.psbd-title {
    margin: 0;
    max-width: 100%;
    font-size: clamp(28px, 6vw, 82px);
    line-height: 1.22;
    letter-spacing: -0.055em;
    font-weight: 800;
}

.psbd-excerpt {
    max-width: 100%;
    margin-top: 28px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(16px, 2vw, 23px);
    line-height: 1.55;
}

.psbd-featured-image {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    min-height: 410px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
    transform: rotate(1.2deg);
}

.psbd-featured-image::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 24px;
    z-index: 2;
    pointer-events: none;
}

.psbd-featured-image img {
    width: 100%;
    height: 100%;
    min-height: 410px;
    object-fit: cover;
    display: block;
}

/* Blog butonu */
.psbd-back-blog {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 34px;
    padding: 15px 22px;
    border-radius: 999px;
    background: var(--psbd-yellow);
    color: var(--psbd-black);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 14px 30px rgba(246, 174, 45, 0.28);
}

.psbd-back-blog:hover {
    transform: translateY(-3px);
    background: var(--psbd-cinnabar);
    color: var(--psbd-white);
    box-shadow: 0 14px 30px rgba(224, 86, 59, 0.28);
}

/* İçerik alanı */
.psbd-content-section {
    padding: 86px 24px 54px;
}

.psbd-content-layout {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 58px;
    align-items: start;
}

/* Side-card — Redesigned: subtle & compact */
.psbd-side-card {
    position: sticky;
    top: 190px;
    padding: 22px 24px;
    border-radius: 20px;
    background: rgba(30, 30, 28, 0.04);
    border: 1px solid rgba(30, 30, 28, 0.08);
    color: var(--psbd-black);
}

.psbd-side-label {
    color: var(--psbd-cinnabar);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.psbd-side-title {
    font-size: 22px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.psbd-side-card p {
    color: rgba(30, 30, 28, 0.58);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

.psbd-side-card .psbd-back-blog {
    margin-top: 18px;
    padding: 11px 18px;
    font-size: 12px;
    box-shadow: none;
    background: var(--psbd-black);
    color: var(--psbd-white);
}

.psbd-side-card .psbd-back-blog:hover {
    background: var(--psbd-cinnabar);
}

.psbd-article {
    background: var(--psbd-white);
    border-radius: 36px;
    padding: clamp(28px, 5vw, 72px);
    box-shadow: 0 28px 80px rgba(30, 30, 28, 0.08);
}

.psbd-article-content {
    max-width: 780px;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

/* WordPress Block Editor içerik taşma koruması */
.psbd-article-content > *,
.psbd-article-content [class*="wp-block"],
.psbd-article-content .wp-block-image,
.psbd-article-content .wp-block-embed,
.psbd-article-content .wp-block-table,
.psbd-article-content .wp-block-code,
.psbd-article-content .wp-block-preformatted,
.psbd-article-content .wp-block-verse,
.psbd-article-content .wp-block-columns,
.psbd-article-content .wp-block-column,
.psbd-article-content .wp-block-group,
.psbd-article-content .wp-block-cover,
.psbd-article-content .wp-block-media-text,
.psbd-article-content .wp-block-gallery,
.psbd-article-content .wp-block-pullquote,
.psbd-article-content .wp-block-separator,
.psbd-article-content .wp-block-buttons,
.psbd-article-content .wp-block-button {
    max-width: 100% !important;
    box-sizing: border-box;
}

.psbd-article-content iframe,
.psbd-article-content video,
.psbd-article-content embed,
.psbd-article-content object {
    max-width: 100% !important;
    height: auto;
}

.psbd-article-content .wp-block-image img,
.psbd-article-content .wp-block-image figure {
    max-width: 100% !important;
    height: auto !important;
}

.psbd-article-content .wp-block-embed__wrapper {
    max-width: 100% !important;
    overflow: hidden;
}

.psbd-article-content [style*="width"],
.psbd-article-content [style*="max-width"] {
    max-width: 100% !important;
    box-sizing: border-box;
}

.psbd-article-content .wp-block-columns {
    flex-wrap: wrap !important;
}

.psbd-article-content .alignwide,
.psbd-article-content .alignfull {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* WordPress içerik tipografisi */
.psbd-article-content > *:first-child {
    margin-top: 0;
}

.psbd-article-content p {
    margin: 0 0 26px;
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.85;
    color: rgba(30, 30, 28, 0.82);
}

.psbd-article-content h2,
.psbd-article-content h3,
.psbd-article-content h4,
.psbd-article-content h5,
.psbd-article-content h6 {
    color: var(--psbd-black);
    letter-spacing: -0.035em;
    line-height: 1.2;
    margin: 54px 0 20px;
    max-width: 100%;
}

.psbd-article-content h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.psbd-article-content h3 {
    font-size: clamp(26px, 3vw, 36px);
}

.psbd-article-content h4 {
    font-size: clamp(20px, 3vw, 24px);
}

.psbd-article-content h5 {
    font-size: clamp(18px, 2.5vw, 22px);
}

.psbd-article-content h6 {
    font-size: clamp(16px, 2vw, 20px);
}

.psbd-article-content a {
    color: var(--psbd-cinnabar);
    font-weight: 800;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.psbd-article-content ul,
.psbd-article-content ol {
    margin: 0 0 30px 24px;
    padding: 0;
}

.psbd-article-content li {
    margin-bottom: 12px;
    font-size: clamp(16px, 2.5vw, 19px);
    line-height: 1.75;
    color: rgba(30, 30, 28, 0.82);
}

.psbd-article-content blockquote {
    position: relative;
    margin: 46px 0;
    padding: 34px 38px;
    border-left: 7px solid var(--psbd-yellow);
    background: #fbf2df;
    border-radius: 24px;
}

.psbd-article-content blockquote p {
    margin: 0;
    color: var(--psbd-black);
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.45;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.psbd-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 28px;
    margin: 28px 0;
    box-shadow: 0 20px 60px rgba(30, 30, 28, 0.12);
}

.psbd-article-content figure {
    margin: 44px 0;
    max-width: 100%;
}

.psbd-article-content figcaption {
    margin-top: 12px;
    font-size: 14px;
    color: rgba(30, 30, 28, 0.58);
    text-align: center;
}

/* Tablo responsive wrapper */
.psbd-article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 42px 0;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 0 0 1px rgba(30, 30, 28, 0.08);
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.psbd-article-content th,
.psbd-article-content td {
    padding: 16px;
    border-bottom: 1px solid rgba(30, 30, 28, 0.08);
    text-align: left;
    white-space: nowrap;
}

.psbd-article-content th {
    background: var(--psbd-black);
    color: var(--psbd-white);
}

.psbd-article-content code {
    padding: 3px 7px;
    border-radius: 7px;
    background: #f1eee8;
    color: var(--psbd-cinnabar);
    word-break: break-all;
}

.psbd-article-content pre {
    padding: 24px;
    border-radius: 22px;
    background: var(--psbd-black);
    color: var(--psbd-white);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    word-break: break-word;
    white-space: pre-wrap;
}

/* Önceki / Sonraki yazı */
.psbd-post-nav-section {
    padding: 20px 24px 72px;
}

.psbd-post-nav {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.psbd-nav-item {
    min-height: 150px;
    padding: 30px;
    border-radius: 28px;
    background: var(--psbd-black);
    color: var(--psbd-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.psbd-nav-next {
    text-align: right;
    background: var(--psbd-cinnabar);
    align-items: flex-end;
}

.psbd-nav-item span {
    display: block;
    margin-bottom: 14px;
    font-size: 13px;
    font-weight: 800;
    color: var(--psbd-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.psbd-nav-next span {
    color: var(--psbd-black);
}

.psbd-nav-item a {
    color: var(--psbd-white);
    text-decoration: none;
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    word-break: break-word;
}

.psbd-nav-item a:hover {
    color: var(--psbd-yellow);
}

/* Nav fallback — Tüm Yazılar */
.psbd-nav-fallback span {
    color: rgba(255, 255, 255, 0.5);
}

.psbd-nav-next.psbd-nav-fallback span {
    color: rgba(0, 0, 0, 0.4);
}

/* İlgili yazılar */
.psbd-related-section {
    padding: 80px 24px 110px;
    background: var(--psbd-black);
}

.psbd-related-inner {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}

.psbd-section-head {
    margin-bottom: 36px;
}

.psbd-section-head span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--psbd-yellow);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.psbd-section-head h2 {
    margin: 0;
    color: var(--psbd-white);
    font-size: clamp(36px, 5vw, 62px);
    line-height: 1.1;
    letter-spacing: -0.055em;
}

.psbd-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.psbd-related-card {
    background: var(--psbd-white);
    border-radius: 30px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.psbd-related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.22);
}

.psbd-related-image {
    display: block;
    height: 220px;
    overflow: hidden;
    background: var(--psbd-yellow);
}

.psbd-related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.psbd-related-card:hover .psbd-related-image img {
    transform: scale(1.06);
}

.psbd-placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.32), transparent 24%),
        linear-gradient(135deg, var(--psbd-yellow), var(--psbd-cinnabar));
}

.psbd-related-body {
    padding: 26px;
}

.psbd-related-date {
    margin-bottom: 12px;
    color: var(--psbd-cinnabar);
    font-size: 13px;
    font-weight: 800;
}

.psbd-related-body h3 {
    margin: 0 0 14px;
    font-size: clamp(18px, 3vw, 24px);
    line-height: 1.2;
    letter-spacing: -0.035em;
}

.psbd-related-body h3 a {
    color: var(--psbd-black);
    text-decoration: none;
}

.psbd-related-body h3 a:hover {
    color: var(--psbd-cinnabar);
}

.psbd-related-body p {
    margin: 0 0 22px;
    color: rgba(30, 30, 28, 0.68);
    font-size: clamp(13px, 2vw, 15px);
    line-height: 1.65;
}

.psbd-read-more {
    color: var(--psbd-black);
    font-weight: 900;
    text-decoration: none;
}

.psbd-read-more:hover {
    color: var(--psbd-cinnabar);
}

/* ===== RESPONSIVE ===== */

/* Geniş ekranlar */
@media (min-width: 1400px) {
    .psbd-hero-inner,
    .psbd-content-layout,
    .psbd-post-nav,
    .psbd-related-inner {
        width: min(1280px, 100%);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .psbd-hero {
        padding-top: 170px;
    }

    .psbd-hero-grid {
        grid-template-columns: 1fr;
    }

    .psbd-content-layout {
        grid-template-columns: 1fr;
    }

    .psbd-side-card {
        position: relative;
        top: auto;
        display: none;
    }

    .psbd-desktop-btn {
        display: none;
    }

    .psbd-related-grid {
        grid-template-columns: 1fr 1fr;
    }

    .psbd-featured-image,
    .psbd-featured-image img {
        min-height: 340px;
    }
}

/* Tablet dikey */
@media (max-width: 768px) {
    .psbd-hero {
        padding: 155px 20px 60px;
    }

    .psbd-title {
        font-size: clamp(36px, 10vw, 54px);
    }

    .psbd-featured-image {
        border-radius: 28px;
        transform: rotate(0.6deg);
    }

    .psbd-featured-image::before {
        inset: 12px;
        border-radius: 20px;
    }

    .psbd-content-section {
        padding: 60px 20px 40px;
    }

    .psbd-article {
        border-radius: 30px;
    }

    .psbd-article-content h2 {
        font-size: clamp(28px, 5vw, 38px);
    }

    .psbd-article-content h3 {
        font-size: clamp(24px, 4vw, 32px);
    }

    .psbd-article-content h4 {
        font-size: 22px;
    }

    .psbd-related-section {
        padding: 60px 20px 80px;
    }

    .psbd-nav-item {
        min-height: 130px;
        padding: 24px;
    }
}

/* Mobile */
@media (max-width: 700px) {
    .psbd-hero {
        padding: 145px 18px 56px;
    }

    .psbd-breadcrumb {
        font-size: 12px;
        margin-bottom: 28px;
    }

    .psbd-hero-grid {
        gap: 34px;
    }

    .psbd-title {
        font-size: clamp(34px, 11vw, 50px);
    }

    .psbd-excerpt {
        font-size: 17px;
        margin-top: 20px;
    }

    .psbd-featured-image,
    .psbd-featured-image img {
        min-height: 260px;
    }

    .psbd-featured-image {
        border-radius: 24px;
        transform: none;
    }

    .psbd-featured-image::before {
        inset: 10px;
        border-radius: 18px;
    }

    .psbd-content-section {
        padding: 48px 18px 34px;
    }

    .psbd-article {
        border-radius: 26px;
        padding: 28px 20px;
    }

    .psbd-article-content p,
    .psbd-article-content li {
        font-size: 17px;
        line-height: 1.75;
    }

    .psbd-article-content h2 {
        font-size: clamp(26px, 6vw, 34px);
        margin: 40px 0 16px;
    }

    .psbd-article-content h3 {
        font-size: clamp(22px, 5vw, 28px);
        margin: 36px 0 14px;
    }

    .psbd-article-content h4 {
        font-size: 20px;
        margin: 32px 0 12px;
    }

    .psbd-article-content blockquote {
        padding: 24px 22px;
        margin: 32px 0;
        border-radius: 18px;
    }

    .psbd-article-content blockquote p {
        font-size: clamp(18px, 4vw, 24px);
    }

    .psbd-article-content img {
        border-radius: 20px;
        margin: 20px 0;
    }

    .psbd-article-content figure {
        margin: 30px 0;
    }

    .psbd-article-content ul,
    .psbd-article-content ol {
        margin: 0 0 24px 18px;
    }

    .psbd-post-nav {
        grid-template-columns: 1fr;
    }

    .psbd-post-nav-section {
        padding: 16px 18px 56px;
    }

    .psbd-nav-next {
        text-align: left;
        align-items: flex-start;
    }

    .psbd-nav-item {
        min-height: 120px;
        padding: 24px;
        border-radius: 22px;
    }

    .psbd-nav-item a {
        font-size: clamp(18px, 5vw, 26px);
    }

    .psbd-related-section {
        padding: 60px 18px 80px;
    }

    .psbd-related-grid {
        grid-template-columns: 1fr;
    }

    .psbd-related-card {
        border-radius: 24px;
    }

    .psbd-related-image {
        height: 200px;
    }

    .psbd-related-body {
        padding: 22px;
    }

    .psbd-related-body h3 {
        font-size: 20px;
    }

    .psbd-section-head h2 {
        font-size: clamp(30px, 7vw, 44px);
    }
}

/* Küçük telefonlar */
@media (max-width: 480px) {
    .psbd-hero {
        padding: 130px 10px 44px;
    }

    .psbd-breadcrumb {
        font-size: 11px;
        gap: 6px;
        margin-bottom: 22px;
    }

    .psbd-hero-grid {
        gap: 28px;
    }

    .psbd-title {
        font-size: clamp(24px, 7vw, 36px);
        line-height: 1.28;
    }

    .psbd-excerpt {
        font-size: 15px;
        line-height: 1.5;
    }

    .psbd-featured-image,
    .psbd-featured-image img {
        min-height: 200px;
    }

    .psbd-featured-image {
        border-radius: 18px;
    }

    .psbd-featured-image::before {
        inset: 6px;
        border-radius: 14px;
    }

    .psbd-content-section {
        padding: 30px 10px 24px;
    }

    .psbd-article {
        border-radius: 20px;
        padding: 18px 12px;
    }

    .psbd-article-content p,
    .psbd-article-content li {
        font-size: 15px;
        line-height: 1.68;
    }

    .psbd-article-content h2 {
        font-size: clamp(22px, 5.5vw, 30px);
        margin: 34px 0 14px;
    }

    .psbd-article-content h3 {
        font-size: clamp(20px, 5vw, 26px);
        margin: 30px 0 12px;
    }

    .psbd-article-content h4 {
        font-size: 18px;
        margin: 26px 0 10px;
    }

    .psbd-article-content h5 {
        font-size: 17px;
    }

    .psbd-article-content h6 {
        font-size: 16px;
    }

    .psbd-article-content blockquote {
        padding: 16px 14px;
        border-radius: 14px;
        border-left-width: 4px;
    }

    .psbd-article-content blockquote p {
        font-size: 16px;
    }

    .psbd-article-content img {
        border-radius: 14px;
    }

    .psbd-article-content pre {
        padding: 14px;
        border-radius: 14px;
        font-size: 13px;
    }

    .psbd-article-content ul,
    .psbd-article-content ol {
        margin: 0 0 20px 14px;
    }

    .psbd-post-nav-section {
        padding: 10px 10px 40px;
    }

    .psbd-nav-item {
        min-height: 90px;
        padding: 18px;
        border-radius: 16px;
    }

    .psbd-nav-item span {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .psbd-nav-item a {
        font-size: clamp(15px, 4vw, 20px);
    }

    .psbd-related-section {
        padding: 40px 10px 54px;
    }

    .psbd-related-card {
        border-radius: 18px;
    }

    .psbd-related-image {
        height: 170px;
    }

    .psbd-related-body {
        padding: 16px;
    }

    .psbd-related-body h3 {
        font-size: 17px;
    }

    .psbd-related-body p {
        font-size: 13px;
    }

    .psbd-section-head h2 {
        font-size: clamp(24px, 6vw, 32px);
    }

    .psbd-back-blog {
        padding: 10px 16px;
        font-size: 12px;
    }
}

/* 440px altı — dar telefonlar */
@media (max-width: 440px) {
    .psbd-hero {
        padding: 120px 8px 38px;
    }

    .psbd-title {
        font-size: clamp(22px, 6.5vw, 32px);
        line-height: 1.3;
    }

    .psbd-excerpt {
        font-size: 14px;
    }

    .psbd-content-section {
        padding: 24px 8px 20px;
    }

    .psbd-article {
        border-radius: 16px;
        padding: 14px 10px;
    }

    .psbd-article-content p,
    .psbd-article-content li {
        font-size: 14px;
        line-height: 1.65;
    }

    .psbd-article-content h2 {
        font-size: clamp(20px, 5vw, 26px);
    }

    .psbd-article-content h3 {
        font-size: clamp(18px, 4.5vw, 24px);
    }

    .psbd-article-content h4 {
        font-size: 17px;
    }

    .psbd-article-content h5 {
        font-size: 16px;
    }

    .psbd-article-content h6 {
        font-size: 15px;
    }

    .psbd-article-content blockquote {
        padding: 14px 12px;
        border-radius: 12px;
    }

    .psbd-article-content blockquote p {
        font-size: 15px;
    }

    .psbd-article-content ul,
    .psbd-article-content ol {
        margin: 0 0 18px 12px;
    }

    .psbd-post-nav-section {
        padding: 8px 8px 36px;
    }

    .psbd-nav-item {
        min-height: 80px;
        padding: 16px;
        border-radius: 14px;
    }

    .psbd-nav-item a {
        font-size: clamp(14px, 3.8vw, 18px);
    }

    .psbd-related-section {
        padding: 36px 8px 48px;
    }

    .psbd-related-body {
        padding: 14px;
    }

    .psbd-related-body h3 {
        font-size: 16px;
    }

    .psbd-related-body p {
        font-size: 13px;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 360px) {
    .psbd-hero {
        padding: 110px 6px 32px;
    }

    .psbd-breadcrumb {
        font-size: 10px;
        gap: 4px;
    }

    .psbd-title {
        font-size: clamp(20px, 6vw, 28px);
        line-height: 1.32;
    }

    .psbd-excerpt {
        font-size: 13px;
        line-height: 1.45;
    }

    .psbd-featured-image,
    .psbd-featured-image img {
        min-height: 160px;
    }

    .psbd-featured-image {
        border-radius: 14px;
    }

    .psbd-featured-image::before {
        inset: 4px;
        border-radius: 10px;
    }

    .psbd-content-section {
        padding: 20px 6px 16px;
    }

    .psbd-article {
        padding: 12px 8px;
        border-radius: 14px;
    }

    .psbd-article-content p,
    .psbd-article-content li {
        font-size: 13px;
        line-height: 1.6;
    }

    .psbd-article-content h2 {
        font-size: clamp(18px, 5vw, 24px);
        margin: 28px 0 10px;
    }

    .psbd-article-content h3 {
        font-size: clamp(16px, 4.5vw, 22px);
        margin: 24px 0 8px;
    }

    .psbd-article-content h4 {
        font-size: 16px;
    }

    .psbd-article-content h5 {
        font-size: 15px;
    }

    .psbd-article-content h6 {
        font-size: 14px;
    }

    .psbd-article-content blockquote {
        padding: 12px 10px;
        border-radius: 10px;
        border-left-width: 3px;
    }

    .psbd-article-content blockquote p {
        font-size: 14px;
    }

    .psbd-article-content img {
        border-radius: 10px;
    }

    .psbd-article-content pre {
        padding: 10px;
        border-radius: 10px;
        font-size: 12px;
    }

    .psbd-article-content ul,
    .psbd-article-content ol {
        margin: 0 0 16px 10px;
    }

    .psbd-post-nav-section {
        padding: 6px 6px 30px;
    }

    .psbd-nav-item {
        min-height: 70px;
        padding: 14px;
        border-radius: 12px;
    }

    .psbd-nav-item span {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .psbd-nav-item a {
        font-size: clamp(13px, 3.5vw, 16px);
    }

    .psbd-related-section {
        padding: 30px 6px 40px;
    }

    .psbd-related-card {
        border-radius: 14px;
    }

    .psbd-related-image {
        height: 150px;
    }

    .psbd-related-body {
        padding: 12px;
    }

    .psbd-related-body h3 {
        font-size: 15px;
    }

    .psbd-related-body p {
        font-size: 12px;
    }

    .psbd-section-head h2 {
        font-size: clamp(20px, 6vw, 28px);
    }

    .psbd-back-blog {
        padding: 8px 14px;
        font-size: 11px;
    }
}