/* Sell inquiry page — content sections only (form untouched) */
@media (min-width: 1024px) {

  .sell-content-wrap {
    padding: 56px 0 64px;
  }

  /* ── Page hero (H1) ── */
  .sell-page-hero {
    max-width: 820px;
    margin: 0 auto 28px;
    padding: 0 12px;
    text-align: left;
  }

  .sell-page-hero h1 {
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    color: #0f2942;
    line-height: 1.2;
    letter-spacing: -0.3px;
  }

  /* ── Intro (H2) — left-aligned, equal line width ── */
    .sell-content-intro {
        max-width: 820px;
        margin: 0 auto 40px;
        text-align: center;
        padding: 0 12px;
    }

        .sell-content-intro h1 {
            /*margin: 0 0 16px;
    font-size: 26px;
    font-weight: 700;
    color: #0f2942;
    line-height: 1.35;
    letter-spacing: -0.1px;*/
            font-size: 30px;
            color: #333333;
            font-weight: 600;
            text-align: center;
            padding-bottom: 15px;
            border-bottom-style: solid;
            border-bottom-width: 3.1px;
            width: fit-content;
            border-color: #f35e75;
            margin: 0px auto 40px auto;
        }

  .sell-content-intro p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.75;
    color: #4f6073;
    max-width: 100%;
  }

    .sell-content-intro .sell-content-highlight {
        margin: 20px 0 0;
        max-width: 100%;
        padding: 14px 18px;
        border-radius: 10px;
        background: #f0f8ff;
        border-left: 4px solid #049db9;
        border-right: 4px solid #049db9;
        text-align: center;
    }
        .sell-content-intro .sell-content-highlight h2 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            color: #0f2942;
            line-height: 1.65;
            text-align: center;
        }
        .sell-content-intro .sell-content-highlight span {
            margin: 0 auto;
            line-height: 20px;
            font-size: 13px;
            font-weight: normal;
            color: #555;
            text-align: center;
            display: block;
        }
        /* ── Content sections ── */
        .sell-content-sections {
            background: #f5f8fc;
            padding: 48px 0 72px;
        }

  .sell-content-sections .container {
    max-width: 960px;
  }

  .sell-content-card {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(18, 38, 63, 0.07);
    padding: 32px 36px;
    margin-bottom: 24px;
  }

  .sell-section-title {
    margin: 0 0 22px;
    font-size: 26px;
    font-weight: 800;
    color: #0f2942;
    line-height: 1.25;
  }

  /* ── Process accordion ── */
  .sell-step-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sell-step-item {
    border: 1px solid #e3edf9;
    border-radius: 10px;
    background: #f8fbff;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
  }

  .sell-step-item[open] {
    box-shadow: 0 4px 14px rgba(18, 38, 63, 0.08);
    border-color: #c8dff0;
  }

  .sell-step-item summary {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 44px 16px 18px;
    /*cursor: pointer;*/
    font-size: 15px;
    font-weight: 600;
    color: #29425c;
    line-height: 1.6;
    list-style: none;
    position: relative;
  }

  .sell-step-item summary::-webkit-details-marker {
    display: none;
  }

  .sell-step-item summary::after {
    /*content: "";*/
    position: absolute;
    right: 18px;
    top: 22px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #049db9;
    border-bottom: 2px solid #049db9;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .sell-step-item[open] summary::after {
    transform: rotate(-135deg);
    top: 26px;
  }

  .sell-step-num {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f35e75 0%, #df4f66 100%);
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 1px;
  }

  .sell-step-body {
    padding: 0 18px 16px 64px;
    font-size: 14px;
    line-height: 1.65;
    color: #51667d;
  }

  .sell-step-body ul {
    margin: 0;
    padding-left: 18px;
  }

  .sell-step-body li {
    margin-bottom: 8px;
  }

  /* ── Two-column cards ── */
  .sell-content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
  }

  .sell-content-mini {
    background: #fff;
    border: 1px solid #e8edf4;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(18, 38, 63, 0.07);
    padding: 28px 30px;
  }

  .sell-content-mini h3 {
    margin: 0 0 14px;
    font-size: 20px;
    font-weight: 800;
    color: #0f2942;
    line-height: 1.3;
  }

  .sell-content-mini p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.7;
    color: #51667d;
  }

  .sell-content-mini ul {
    margin: 0;
    padding-left: 20px;
  }

    .sell-content-mini li {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.6;
        color: #51667d;
        list-style: circle;
    }

  /* ── FAQ accordion ── */
  .sell-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .sell-faq-item {
    border: 1px solid #e4edf8;
    border-radius: 10px;
    background: #fbfdff;
    overflow: hidden;
    transition: box-shadow 0.2s ease;
  }

  .sell-faq-item[open] {
    box-shadow: 0 4px 14px rgba(18, 38, 63, 0.07);
    border-color: #c8dff0;
  }

  .sell-faq-item summary {
    padding: 16px 44px 16px 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #11314e;
    line-height: 1.45;
    list-style: none;
    position: relative;
  }

  .sell-faq-item summary h3 {
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    line-height: inherit;
    display: inline;
  }

  .sell-faq-item summary::-webkit-details-marker {
    display: none;
  }

  .sell-faq-item summary::after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -5px;
    border-right: 2px solid #049db9;
    border-bottom: 2px solid #049db9;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
  }

  .sell-faq-item[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -2px;
  }

  .sell-faq-body {
    padding: 0 18px 16px;
    font-size: 15px;
    line-height: 1.7;
    color: #536b83;
  }

  .sell-faq-body p {
    margin: 0 0 8px;
    font-size:14px;
  }

  .sell-faq-body ul {
    margin: 8px 0 0;
    padding-left: 20px;
  }

  .sell-faq-body li {
    margin-bottom: 6px;
  }
}
