/* =========================================================
   GÜNCEL İHTİYAÇLAR
   ========================================================= */

.needs-page {
    background: #f6f2eb;
    padding: 72px 0 88px;
    min-height: calc(100vh - 160px);
}

.needs-card {
    max-width: 980px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid rgba(30, 47, 35, .08);
    border-radius: 22px;
    box-shadow: 0 12px 35px rgba(23, 54, 29, .06);
    overflow: hidden;
}


/* =========================================================
   HEADER
   ========================================================= */

.needs-header {
    padding: 48px 58px 38px;
    background: #fbf9f5;
    border-bottom: 1px solid #ebe5dc;
}

.needs-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #ef6c28;

    font: 900 12px/1.5 "DM Sans", sans-serif;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.needs-kicker i {
    font-size: 13px;
}

.needs-header h1 {
    margin: 12px 0 10px;

    color: #17361d;

    font: 900 clamp(34px, 4vw, 48px)/1.08 "Nunito", sans-serif;
    letter-spacing: -1px;
}

.needs-header > p {
    max-width: 720px;
    margin: 0;

    color: #68716a;

    font: 400 16px/1.65 "DM Sans", sans-serif;
}

.needs-header > p strong {
    color: #17361d;
    font-weight: 700;
}


/* =========================================================
   CONTENT
   ========================================================= */

.needs-content {
    padding: 44px 58px 54px;
}

.needs-intro {
    margin-bottom: 34px;
}

.needs-section-label {
    display: block;

    margin-bottom: 8px;

    color: #ef6c28;

    font: 900 11px/1.5 "DM Sans", sans-serif;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.needs-intro h2 {
    margin: 0 0 7px;

    color: #17361d;

    font: 900 28px/1.2 "Nunito", sans-serif;
    letter-spacing: -.4px;
}

.needs-intro p {
    margin: 0;

    color: #68716a;

    font: 400 15px/1.65 "DM Sans", sans-serif;
}


/* =========================================================
   CATEGORY
   ========================================================= */

.needs-category {
    margin: 0 0 34px;
}

.needs-category:last-child {
    margin-bottom: 0;
}

.needs-category-heading {
    display: flex;
    align-items: center;

    margin-bottom: 10px;
}

.needs-category-heading h3 {
    margin: 0;

    color: #17361d;

    font: 900 20px/1.3 "Nunito", sans-serif;
}


/* =========================================================
   NEED LIST
   ========================================================= */

.needs-list {
    border-top: 1px solid #ebe7df;
}

.need-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    min-height: 58px;

    padding: 11px 0;

    border-bottom: 1px solid #ebe7df;
}

.need-name {
    display: flex;
    align-items: center;
    gap: 12px;

    min-width: 0;

    color: #303a33;

    font: 600 15px/1.45 "DM Sans", sans-serif;
}

.need-dot {
    width: 7px;
    height: 7px;
    flex: 0 0 7px;

    border-radius: 50%;
    background: #ef6c28;
}

.need-support-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    min-width: 112px;
    height: 42px;
    padding: 0 16px;

    background: #f26522;
    color: #fff;

    border-radius: 10px;

    font-size: 11px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;

    box-shadow: 0 6px 16px rgba(242, 101, 34, .18);

    transition:
        background .18s ease,
        transform .18s ease,
        box-shadow .18s ease;
}

.need-support-link i {
    font-size: 10px;
    transition: transform .18s ease;
}

.need-support-link:hover {
    background: #d95517;
    color: #fff;

    transform: translateY(-2px);

    box-shadow: 0 9px 20px rgba(242, 101, 34, .24);
}

.need-support-link:hover i {
    transform: translateX(3px);
}


/* =========================================================
   NOTE
   ========================================================= */

.needs-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    margin-top: 42px;
    padding: 18px 20px;

    background: #fbf9f5;
    border: 1px solid #ebe5dc;
    border-radius: 14px;
}

.needs-note > i {
    flex: 0 0 auto;

    margin-top: 3px;

    color: #ef6c28;
    font-size: 15px;
}

.needs-note p {
    margin: 0;

    color: #68716a;

    font: 400 13px/1.65 "DM Sans", sans-serif;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

    .needs-page {
        padding: 55px 0 70px;
    }

    .needs-header {
        padding: 40px 36px 32px;
    }

    .needs-content {
        padding: 36px 36px 44px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .needs-page {
        padding: 38px 0 55px;
    }

    .needs-card {
        border-radius: 16px;
    }

    .needs-header {
        padding: 34px 24px 28px;
    }

    .needs-kicker {
        font-size: 11px;
    }

    .needs-header h1 {
        font-size: 32px;
    }

    .needs-header > p {
        font-size: 14px;
    }

    .needs-content {
        padding: 30px 24px 36px;
    }

    .needs-intro {
        margin-bottom: 28px;
    }

    .needs-intro h2 {
        font-size: 25px;
    }

    .needs-intro p {
        font-size: 14px;
    }

    .needs-category {
        margin-bottom: 30px;
    }

    .needs-category-heading h3 {
        font-size: 19px;
    }

    .need-row {
        align-items: flex-start;
        gap: 14px;
        min-height: 0;
        padding: 13px 0;
    }

    .need-name {
        font-size: 14px;
        line-height: 1.5;
    }
.need-support-link {
    min-width: 100px;
    height: 40px;
    padding: 0 13px;

    font-size: 12px;
    white-space: nowrap;
}

    .needs-note {
        margin-top: 34px;
        padding: 16px;
    }

    .needs-note p {
        font-size: 12.5px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .needs-page {
        padding-top: 28px;
    }

    .needs-header {
        padding: 30px 20px 25px;
    }

    .needs-content {
        padding: 28px 20px 32px;
    }

    .needs-header h1 {
        font-size: 29px;
    }

    .need-row {
        gap: 10px;
    }

    .need-name {
        font-size: 13.5px;
    }

    .need-support-link {
        font-size: 11.5px;
    }

}