/* =========================================================
   SEO KELİME SAYFASI
========================================================= */

.word-seo-page {
    min-height: 100vh;

    padding: 38px 0 60px;

    background: #f3f6fa;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.word-seo-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 18px;

    color: #7a8b9e;

    font-size: 13px;
}

.word-seo-breadcrumb a {
    color: #147df5;

    text-decoration: none;

    font-weight: 700;
}

.word-seo-breadcrumb a:hover {
    text-decoration: underline;
}

.word-seo-breadcrumb strong {
    color: #23394f;
}


/* =========================================================
   ANA KART
========================================================= */

.word-seo-card {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    border: 1px solid #dfe7f0;
    border-radius: 16px;

    box-shadow:
        0 14px 38px
        rgba(30, 58, 85, .07);
}


/* =========================================================
   GÖRSEL
========================================================= */

.word-seo-image {
    width: 360px;
    height: 360px;

    align-self: start;

    overflow: hidden;

    background: #edf2f7;
}

.word-seo-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 0;
}


/* =========================================================
   İÇERİK
========================================================= */

.word-seo-content {
    min-width: 0;

    padding: 32px 36px;
}

.word-seo-content .section-kicker {
    display: inline-block;

    margin-bottom: 5px;

    color: #11884f;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: .5px;
}

.word-seo-content h1 {
    margin: 5px 0 22px;

    color: #071b35;

    font-size: 34px;
    line-height: 1.2;
}


/* =========================================================
   TÜRKÇE ANLAM
========================================================= */

.word-meaning-box {
    margin-bottom: 16px;

    padding: 18px 20px;

    background: #eef6ff;

    border: 1px solid #d7e9fc;

    border-radius: 12px;
}

.word-meaning-box span {
    display: block;

    margin-bottom: 6px;

    color: #147df5;

    font-size: 11px;

    font-weight: 900;
}

.word-meaning-box p {
    margin: 0;

    color: #102a43;

    font-size: 21px;

    font-weight: 700;

    line-height: 1.45;
}


/* =========================================================
   ÖRNEK CÜMLE
========================================================= */

.word-example-box {
    margin-bottom: 22px;

    padding: 18px 20px;

    background: #f7f9fc;

    border: 1px solid #e3e9ef;

    border-radius: 12px;
}

.word-example-box > span {
    display: block;

    margin-bottom: 7px;

    color: #11884f;

    font-size: 11px;

    font-weight: 900;
}

.example-en {
    margin: 0 0 6px;

    color: #172b43;

    font-size: 17px;

    font-weight: 700;

    line-height: 1.55;
}

.example-tr {
    margin: 0;

    color: #718398;

    font-size: 14px;

    line-height: 1.55;
}


/* =========================================================
   AÇIKLAMA
========================================================= */

.word-seo-info {
    margin-top: 22px;

    padding-top: 22px;

    border-top: 1px solid #e5ebf1;
}

.word-seo-info h2 {
    margin: 0 0 10px;

    color: #071b35;

    font-size: 23px;
}

.word-seo-info p {
    margin: 0 0 11px;

    color: #5f7488;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 950px) {

    .word-seo-card {
        grid-template-columns: 300px minmax(0, 1fr);
    }

    .word-seo-content {
        padding: 26px;
    }

    .word-seo-content h1 {
        font-size: 30px;
    }

    .word-seo-image {
        width: 300px;
        height: 320px;
        min-height: 0;
    }
}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 700px) {

    .word-seo-page {
        padding-top: 24px;
    }

    .word-seo-card {
        grid-template-columns: 1fr;
    }

    .word-seo-image {
        width: 100%;

        height: 240px;

        min-height: 0;
    }

    .word-seo-content {
        padding: 20px 18px;
    }

    .word-seo-content h1 {
        font-size: 28px;
    }

    .word-meaning-box p {
        font-size: 19px;
    }
}


/* =========================================================
   KÜÇÜK TELEFON
========================================================= */

@media (max-width: 430px) {

    .word-seo-page {
        padding-top: 18px;
    }

    .word-seo-image {
        height: 220px;

        min-height: 220px;
    }

    .word-seo-content {
        padding: 17px 15px;
    }

    .word-seo-content h1 {
        font-size: 26px;
    }
}

/* =========================================================
   İLGİLİ KELİMELER
========================================================= */

.related-words {
    margin-top: 35px;
}

.related-words-head {
    margin-bottom: 18px;
}

.related-words-head h2 {
    margin: 5px 0 7px;

    color: #071b35;

    font-size: 27px;
}

.related-words-head p {
    margin: 0;

    color: #718398;

    font-size: 14px;
}


/* KARTLAR */

.related-words-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 14px;
}

.related-word-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    padding: 18px;

    background: #ffffff;

    border: 1px solid #dfe7f0;
    border-radius: 13px;

    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.related-word-card:hover {
    transform: translateY(-2px);

    border-color: #bdd8f3;

    box-shadow:
        0 10px 25px
        rgba(30, 58, 85, .08);
}

.related-word-card strong {
    color: #071b35;

    font-size: 18px;
}

.related-word-card span {
    margin-top: 5px;

    color: #718398;

    font-size: 13px;

    line-height: 1.5;
}

.related-word-card small {
    margin-top: 14px;

    color: #147df5;

    font-size: 12px;

    font-weight: 800;
}


/* TABLET */

@media (max-width: 900px) {

    .related-words-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}


/* MOBİL */

@media (max-width: 600px) {

    .related-words {
        margin-top: 28px;
    }

    .related-words-grid {
        grid-template-columns: 1fr;
    }

    .related-words-head h2 {
        font-size: 23px;
    }
}

/* =========================================================
   KELİME SEO BİLGİ BÖLÜMLERİ
========================================================= */

.word-info-section {
    padding: 20px 0;

    border-top: 1px solid #e7edf3;
}

.word-info-section:first-child {
    padding-top: 0;

    border-top: 0;
}

.word-info-section:last-child {
    padding-bottom: 0;
}

.word-info-section h2 {
    margin: 0 0 10px;

    color: #071b35;

    font-size: 22px;

    line-height: 1.35;
}

.word-info-section p {
    margin: 0 0 10px;

    color: #5f7488;

    font-size: 14px;

    line-height: 1.75;
}

.word-info-section p:last-child {
    margin-bottom: 0;
}


/* ÖRNEK KULLANIM */

.word-usage-example {
    margin: 12px 0;

    padding: 15px 17px;

    background: #f7f9fc;

    border-left: 3px solid #147df5;

    border-radius: 8px;
}

.word-usage-example .usage-en {
    margin: 0 0 5px;

    color: #172b43;

    font-size: 16px;

    font-weight: 700;
}

.word-usage-example .usage-tr {
    margin: 0;

    color: #718398;

    font-size: 13px;
}