/* ==========================================================================
   Content service pages (Blog Writing / Article Writing)
   Prefix: .cs-   — scoped so nothing here can collide with style.css
   Palette follows the site: brand #4194F2, deep blue #003F7A / #043F78,
   tint #E3EFFD, body copy #5C5C5C, radius 8px.
   ========================================================================== */

.cs-sec {
    padding: 50px 0;
}

.cs-sec-tint {
    background: #F4F8FE;
}

.cs-head {
    max-width: 760px;
    margin: 0 auto 10px;
    text-align: center;
}

.cs-head p {
    color: #5C5C5C;
    margin: 0;
}

.cs-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #4194F2;
    background: #E3EFFD;
    border-radius: 100px;
    padding: 6px 16px;
    margin: 0 0 14px 0;
}

.cs-head .text-h2 {
    text-align: center !important;
}

/* --------------------------------------------------------------- stats bar */

.cs-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-stats li {
    flex: 1 1 0;
    min-width: 150px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 18px 20px;
    box-shadow: 0 6px 18px rgba(2, 132, 199, .06);
}

.cs-stats strong {
    display: block;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 700;
    color: #003F7A;
}

.cs-stats span {
    display: block;
    font-size: 14px;
    color: #5C5C5C;
    margin-top: 4px;
}

/* ------------------------------------------------------------- type cards */

.cs-card {
    height: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 26px 24px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cs-card:hover {
    transform: translateY(-4px);
    border-color: #C7DEFB;
    box-shadow: 0 14px 30px rgba(2, 132, 199, .12);
}

.cs-card-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: #4194F2;
    margin: 0 0 10px 0;
}

.cs-card h3 {
    font-size: 21px;
    font-weight: 600;
    line-height: 28px;
    color: #282828;
    margin: 0 0 8px 0;
}

.cs-card p {
    font-size: 15px;
    line-height: 25px;
    color: #5C5C5C;
    margin: 0;
}

.cs-card-meta {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #003F7A;
    background: #EEF5FF;
    border-radius: 100px;
    padding: 5px 14px;
    width: max-content;
    margin: 14px 0 0 0;
}

/* -------------------------------------------------------- process timeline */

.cs-steps {
    counter-reset: cs-step;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.cs-steps li {
    counter-increment: cs-step;
    position: relative;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 34px 22px 24px;
}

.cs-steps li::before {
    content: "0" counter(cs-step);
    position: absolute;
    top: -18px;
    left: 22px;
    height: 44px;
    min-width: 44px;
    padding: 0 10px;
    border-radius: 100px;
    background: #003F7A;
    border: 2px solid #fff;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(0, 63, 122, .22);
}

.cs-steps h3 {
    font-size: 19px;
    font-weight: 600;
    color: #282828;
    margin: 0 0 8px 0;
}

.cs-steps p {
    font-size: 15px;
    line-height: 24px;
    color: #5C5C5C;
    margin: 0;
}

/* ---------------------------------------------------------- deliverables */

.cs-includes {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-includes li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px dashed #D9E6F7;
}

.cs-includes li:last-child {
    border-bottom: 0;
}

.cs-includes i {
    flex: 0 0 22px;
    height: 22px;
    width: 22px;
    border-radius: 100px;
    background: #4194F2;
    color: #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.cs-includes p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    color: #5C5C5C;
}

.cs-includes strong {
    display: block;
    color: #282828;
    font-weight: 600;
    font-size: 16px;
}

/* -------------------------------------------------------------- tier cards */

.cs-plan {
    height: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.cs-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(2, 132, 199, .12);
}

.cs-plan-featured {
    border-color: #4194F2;
    box-shadow: 0 14px 30px rgba(65, 148, 242, .18);
}

.cs-plan-flag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #fff;
    background: #4194F2;
    border-radius: 100px;
    padding: 4px 14px;
    margin: 0 0 12px 0;
    width: max-content;
}

.cs-plan h3 {
    font-size: 22px;
    font-weight: 700;
    color: #003F7A;
    margin: 0 0 6px 0;
}

.cs-plan-rate {
    font-size: 15px;
    font-weight: 500;
    color: #4194F2;
    margin: 0 0 14px 0;
}

.cs-plan ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px 0;
    flex: 1 1 auto;
}

.cs-plan ul li {
    position: relative;
    padding: 0 0 0 24px;
    margin: 0 0 10px 0;
    font-size: 15px;
    line-height: 24px;
    color: #5C5C5C;
}

.cs-plan ul li::before {
    content: "\f00c";
    font-family: "FontAwesome";
    position: absolute;
    left: 0;
    top: 0;
    color: #4194F2;
    font-size: 13px;
}

/* --------------------------------------------------------- post anatomy */

.cs-anatomy {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 10px 26px rgba(2, 132, 199, .08);
}

.cs-anatomy-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 18px 0;
}

.cs-anatomy-bar span {
    font-size: 12px;
    font-weight: 500;
    color: #003F7A;
    background: #EEF5FF;
    border-radius: 100px;
    padding: 5px 13px;
}

.cs-anatomy h3 {
    font-size: 26px;
    line-height: 34px;
    font-weight: 700;
    color: #282828;
    margin: 0 0 10px 0;
}

.cs-anatomy .cs-anatomy-lede {
    font-size: 16px;
    line-height: 27px;
    color: #5C5C5C;
    margin: 0 0 18px 0;
}

.cs-anatomy-rule {
    border: 0;
    border-top: 1px dashed #D9E6F7;
    margin: 18px 0;
}

.cs-anatomy-note {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
}

.cs-anatomy-note b {
    flex: 0 0 128px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: #4194F2;
    padding-top: 2px;
}

.cs-anatomy-note p {
    margin: 0;
    font-size: 15px;
    line-height: 24px;
    color: #5C5C5C;
}

/* ------------------------------------------------------ blog vs article */

.cs-compare {
    width: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
}

.cs-compare th,
.cs-compare td {
    padding: 16px 20px;
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    border-bottom: 1px solid #EAF1FA;
    vertical-align: top;
}

.cs-compare thead th {
    background: #003F7A;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-bottom: 0;
}

.cs-compare tbody th {
    width: 26%;
    color: #282828;
    font-weight: 600;
    background: #F6FAFF;
}

.cs-compare td {
    color: #5C5C5C;
}

.cs-compare tr:last-child th,
.cs-compare tr:last-child td {
    border-bottom: 0;
}

.cs-table-wrap {
    overflow-x: auto;
}

/* --------------------------------------------------------- related reads */

.cs-read {
    display: block;
    height: 100%;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 24px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.cs-read:hover {
    transform: translateY(-4px);
    border-color: #C7DEFB;
    box-shadow: 0 14px 30px rgba(2, 132, 199, .12);
}

.cs-read span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: #4194F2;
    margin: 0 0 10px 0;
}

.cs-read h3 {
    font-size: 19px;
    line-height: 27px;
    font-weight: 600;
    color: #282828;
    margin: 0 0 10px 0;
}

.cs-read p {
    font-size: 15px;
    line-height: 24px;
    color: #5C5C5C;
    margin: 0 0 14px 0;
}

.cs-read em {
    font-style: normal;
    font-size: 14px;
    font-weight: 600;
    color: #003F7A;
}

.cs-read em::after {
    content: "\f105";
    font-family: "FontAwesome";
    margin-left: 8px;
}

/* ------------------------------------------------------ placement channels */

.cs-channels {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.cs-channels li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 8px;
    padding: 18px 20px;
}

.cs-channels i {
    flex: 0 0 38px;
    height: 38px;
    width: 38px;
    border-radius: 100px;
    background: #4194F2;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.cs-channels h3 {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.cs-channels p {
    font-size: 14px;
    line-height: 22px;
    color: rgba(255, 255, 255, .78);
    margin: 0;
}

/* ------------------------------------------------------------------ misc */

.cs-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.cs-note {
    font-size: 14px;
    line-height: 23px;
    color: #5C5C5C;
    background: #E3EFFD;
    border-left: 3px solid #4194F2;
    border-radius: 0 8px 8px 0;
    padding: 14px 18px;
    margin: 20px 0 0 0;
}

/* ----------------------------------------------------------- responsive */

@media (max-width: 991px) {
    .cs-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cs-channels {
        grid-template-columns: minmax(0, 1fr);
    }

    .cs-stats strong {
        font-size: 26px;
    }
}

@media (max-width: 767px) {
    .cs-sec {
        padding: 35px 0;
    }

    .cs-steps {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }

    .cs-anatomy {
        padding: 22px;
    }

    .cs-anatomy h3 {
        font-size: 22px;
        line-height: 30px;
    }

    .cs-anatomy-note {
        flex-direction: column;
        gap: 4px;
    }

    .cs-anatomy-note b {
        flex: none;
    }

    .cs-stats li {
        flex: 1 1 100%;
    }

    .cs-btn-row .btn {
        width: 100%;
    }
}
