/* =========================================================
   SEAACADEMYIK - İŞ ARAMA İPUÇLARI ÖZEL CSS
   Dosya: is-arama-ipuclari.css
========================================================= */

:root {
    --jobtips-blue: #0b2f5b;
    --jobtips-blue-2: #16477c;
    --jobtips-orange: #f97316;
    --jobtips-text: #0f172a;
    --jobtips-muted: #475569;
    --jobtips-soft: #f8fafc;
    --jobtips-border: #e2e8f0;
    --jobtips-shadow: 0 24px 70px rgba(15, 23, 42, .12);
}

.jobtips-page {
    background:
        radial-gradient(circle at top left, rgba(249, 115, 22, .10), transparent 28%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #ffffff 100%);
    color: var(--jobtips-text);
}

.jobtips-container {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.jobtips-hero {
    position: relative;
    padding: 74px 0 58px;
    background:
        linear-gradient(135deg, rgba(11, 47, 91, .96), rgba(22, 71, 124, .95)),
        url('/sea-is-ilanlari/assets/images/blog/default-guide.webp') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.jobtips-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -160px;
    width: 390px;
    height: 390px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .24);
    filter: blur(10px);
}

.jobtips-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 380px;
    gap: 40px;
    align-items: center;
}

.jobtips-badge {
    display: inline-flex;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(249, 115, 22, .18);
    border: 1px solid rgba(251, 146, 60, .38);
    color: #fed7aa;
    font-weight: 900;
    margin-bottom: 18px;
}

.jobtips-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(38px, 6vw, 70px);
    line-height: .98;
    letter-spacing: -0.045em;
}

.jobtips-hero p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.75;
    color: rgba(255, 255, 255, .88);
}

.jobtips-actions,
.jobtips-toc {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.jobtips-actions {
    margin-top: 28px;
}

.jobtips-btn {
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease;
}

.jobtips-btn:hover {
    transform: translateY(-2px);
}

.jobtips-btn-primary {
    background: var(--jobtips-orange);
    color: #fff;
    box-shadow: 0 14px 28px rgba(249, 115, 22, .28);
}

.jobtips-btn-outline {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .08);
}

.jobtips-btn-light {
    background: #fff;
    color: var(--jobtips-blue);
}

.jobtips-toc {
    margin-top: 24px;
}

.jobtips-toc a {
    color: rgba(255, 255, 255, .86);
    text-decoration: none;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 14px;
    font-weight: 800;
}

.jobtips-hero-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 30px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: var(--jobtips-shadow);
}

.jobtips-hero-card img {
    width: 100%;
    height: 230px;
    display: block;
    object-fit: cover;
}

.jobtips-hero-card div {
    padding: 22px;
}

.jobtips-hero-card strong {
    display: block;
    font-size: 20px;
    margin-bottom: 8px;
}

.jobtips-section {
    padding: 60px 0;
}

.jobtips-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.jobtips-sticky {
    position: sticky;
    top: 90px;
    background: #fff;
    border: 1px solid var(--jobtips-border);
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 14px 38px rgba(15, 23, 42, .07);
}

.jobtips-sticky h2 {
    font-size: 18px;
    margin: 0 0 14px;
}

.jobtips-sticky a {
    display: block;
    color: var(--jobtips-muted);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eef2f7;
    font-weight: 800;
    font-size: 14px;
}

.jobtips-sticky a:last-child {
    border-bottom: 0;
}

.jobtips-sticky a:hover {
    color: var(--jobtips-orange);
}

.jobtips-content {
    background: #fff;
    border: 1px solid var(--jobtips-border);
    border-radius: 30px;
    padding: clamp(24px, 4vw, 46px);
    box-shadow: var(--jobtips-shadow);
}

.jobtips-image {
    margin: 0 0 30px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
}

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

.jobtips-content h2 {
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.12;
    margin: 42px 0 16px;
    letter-spacing: -0.03em;
    color: var(--jobtips-blue);
}

.jobtips-content h3 {
    font-size: 22px;
    margin: 28px 0 12px;
    color: var(--jobtips-text);
}

.jobtips-content p,
.jobtips-content li {
    color: var(--jobtips-muted);
    font-size: 17px;
    line-height: 1.82;
}

.jobtips-content ul {
    padding-left: 22px;
}

.jobtips-note {
    margin: 28px 0;
    padding: 22px 24px;
    border-radius: 20px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #7c2d12;
    line-height: 1.75;
}

.jobtips-step-grid,
.jobtips-channel-grid,
.jobtips-mistake-grid {
    display: grid;
    gap: 18px;
    margin: 28px 0;
}

.jobtips-step-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.jobtips-step,
.jobtips-channel,
.jobtips-mistake {
    border: 1px solid var(--jobtips-border);
    border-radius: 22px;
    padding: 22px;
    background: linear-gradient(180deg, #fff, #f8fafc);
    box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.jobtips-step span {
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: var(--jobtips-orange);
    color: #fff;
    border-radius: 14px;
    font-weight: 900;
    margin-bottom: 12px;
}

.jobtips-step h3,
.jobtips-channel h3 {
    margin: 0 0 10px;
}

.jobtips-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jobtips-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.jobtips-tags span {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
}

.jobtips-table-wrap {
    overflow-x: auto;
    margin: 26px 0;
    border-radius: 18px;
    border: 1px solid var(--jobtips-border);
}

.jobtips-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    background: #fff;
}

.jobtips-table th,
.jobtips-table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--jobtips-border);
    color: var(--jobtips-muted);
    line-height: 1.6;
}

.jobtips-table th {
    background: var(--jobtips-blue);
    color: #fff;
}

.jobtips-table tr:last-child td {
    border-bottom: 0;
}

.jobtips-two-col {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin: 26px 0;
}

.jobtips-two-col > div {
    border: 1px solid var(--jobtips-border);
    border-radius: 22px;
    padding: 22px;
    background: #fff;
}

.jobtips-mistake-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.jobtips-mistake {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.jobtips-mistake strong {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--jobtips-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.jobtips-mistake span {
    color: var(--jobtips-muted);
    font-weight: 800;
    line-height: 1.6;
}

.jobtips-checklist {
    display: grid;
    gap: 12px;
    margin: 24px 0;
}

.jobtips-checklist label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--jobtips-border);
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--jobtips-muted);
    font-weight: 800;
}

.jobtips-checklist input {
    margin-top: 5px;
    accent-color: var(--jobtips-orange);
}

.jobtips-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    margin: 42px 0;
    padding: 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(249, 115, 22, .30), transparent 32%),
        linear-gradient(135deg, var(--jobtips-blue), var(--jobtips-blue-2));
    color: #fff;
    box-shadow: var(--jobtips-shadow);
}

.jobtips-cta span {
    color: #fed7aa;
    font-weight: 900;
}

.jobtips-cta h2 {
    color: #fff;
    margin: 8px 0 8px;
}

.jobtips-cta p {
    color: rgba(255, 255, 255, .86);
    margin: 0;
}

.jobtips-faq-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.jobtips-faq {
    background: #fff;
    border: 1px solid var(--jobtips-border);
    border-radius: 18px;
    padding: 20px;
}

.jobtips-faq h3 {
    margin: 0 0 8px;
    color: var(--jobtips-blue);
}

.jobtips-faq p {
    margin: 0;
}

.jobtips-related {
    background: #f8fafc;
}

.jobtips-section-head {
    display: flex;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 24px;
}

.jobtips-section-head span {
    display: inline-flex;
    color: var(--jobtips-orange);
    font-weight: 900;
    margin-bottom: 8px;
}

.jobtips-section-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin: 0 0 8px;
    color: var(--jobtips-blue);
    letter-spacing: -0.03em;
}

.jobtips-section-head p {
    color: var(--jobtips-muted);
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 1080px) {
    .jobtips-hero-grid,
    .jobtips-layout {
        grid-template-columns: 1fr;
    }

    .jobtips-sidebar {
        display: none;
    }

    .jobtips-hero-card {
        max-width: 520px;
    }

    .jobtips-step-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .jobtips-container {
        width: min(100% - 24px, 1180px);
    }

    .jobtips-hero {
        padding: 48px 0 36px;
    }

    .jobtips-hero h1 {
        font-size: 38px;
    }

    .jobtips-hero p {
        font-size: 16px;
    }

    .jobtips-section {
        padding: 38px 0;
    }

    .jobtips-content {
        border-radius: 22px;
        padding: 22px;
    }

    .jobtips-step-grid,
    .jobtips-channel-grid,
    .jobtips-two-col,
    .jobtips-mistake-grid,
    .jobtips-cta {
        grid-template-columns: 1fr;
    }

    .jobtips-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .jobtips-btn {
        width: 100%;
    }

    .jobtips-toc a {
        width: 100%;
        text-align: center;
    }

    .jobtips-cta {
        padding: 24px;
    }
}

@media (max-width: 420px) {
    .jobtips-hero h1 {
        font-size: 32px;
    }

    .jobtips-content h2 {
        font-size: 28px;
    }

    .jobtips-content p,
    .jobtips-content li {
        font-size: 16px;
    }
}
