/* =============================================
   Cubic Promote – Cool Dry Shirts Blog Styles
   CSS-only, no HTML changes
   ============================================= */

/* ── Base & Reset ───────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    background: #fff;
    margin: 0;
}

/* ── Container ──────────────────────────────── */
.container {
    /* max-width: 1100px; */
    margin: 0 auto;
    padding: 0 20px;
}

.content-area--single {
    padding: 30px 0 60px;
}

/* ── Rows ───────────────────────────────────── */
.vc-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.vc-row-type-in_container {
    padding: 0px 0;
    border-bottom: 1px solid #eee;
}

.vc-row-type-in_container:last-of-type {
    border-bottom: none;
}

/* Full-width tinted rows */
.vc-row-type-full_width_background {
    background-color: #f0f6f9;
    padding: 48px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
}

/* ── Columns ────────────────────────────────── */
.vc-column {
    padding: 0 15px;
    flex-shrink: 0;
}

.vc-col-12 {
    width: 100%;
}

.vc-col-6 {
    width: 50%;
}

.vc-col-4 {
    width: 33.333%;
}

.vc-col-3 {
    width: 25%;
}

/* ── Headings ───────────────────────────────── */
.vc-custom-heading {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 16px;
    line-height: 1.3;
}

h3.vc-custom-heading {
    font-size: 20px;
    margin-bottom: 12px;
}

h3.vc-custom-heading.color-theme-blue {
    color: var(--banner-teal);
    font-size: 18px;
    text-align: center;
    margin-top: 12px;
}

h6.vc-custom-heading {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 4px 0;
}

/* ── Body Text ──────────────────────────────── */
.vc-column-text {
    color: #444;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 12px;
}

.vc-column-text p {
    margin: 0 0 12px;
}

.vc-column-text ul {
    margin: 8px 0 12px 20px;
    padding: 0;
}

.vc-column-text ul li {
    margin-bottom: 5px;
}

.vc-column-text strong {
    color: #222;
}

/* ── Images ─────────────────────────────────── */
.vc-image-animation img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.vc-image-animation.vc-align-center img {
    max-width: 120px;
    margin: 0 auto 10px;
    border-radius: 50%;
    object-fit: cover;
}

/* ── Comparison & Checklist Tables ──────────── */
.cp-setup-wrap {
    overflow-x: auto;
    margin-top: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.cp-setup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* Header row */
.cp-setup-table thead tr {
    background-color: var(--banner-teal);
    color: #fff;
}

.cp-setup-table thead th {
    padding: 14px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.3px;
    border: none;
}

/* Body rows */
.cp-setup-table tbody tr:nth-child(odd) {
    background-color: #e8f3f7;
}

.cp-setup-table tbody tr:nth-child(even) {
    background-color: #fff;
}

.cp-setup-table tbody tr:hover {
    background-color: #d4eaf1;
    transition: background-color 0.2s;
}

.cp-setup-table tbody th,
.cp-setup-table tbody td {
    padding: 13px 16px;
    border-bottom: 1px solid #dde9ef;
    vertical-align: top;
    line-height: 1.55;
}

.cp-setup-table tbody th {
    font-weight: 700;
    color: #1a4a5e;
    white-space: nowrap;
    width: 160px;
}

/* ── Benefits Section – 3 Columns ───────────── */
/* Inner nested row inside benefits */
.vc-row-type-in_container .vc-row .vc-col-4 {
    text-align: center;
    padding: 20px 20px;
}

.vc-row-type-in_container .vc-row .vc-col-4 .vc-image-animation {
    margin-bottom: 8px;
}

.vc-row-type-in_container .vc-row .vc-col-4 .vc-column-text ul {
    text-align: left;
}

/* ── Care Instructions – 4-column grid ──────── */
/* The care section sits in a nested vc-row */
.vc-row-type-in_container .vc-row .vc-col-3 .vc-column-text {
    background: #f0f6f9;
    border: 1px solid #c8dde6;
    border-radius: 6px;
    padding: 18px 12px;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vc-row-type-in_container .vc-row .vc-col-3 .vc-column-text h6 {
    font-size: 13px;
    font-weight: 700;
    color: #1a4a5e;
    margin: 0;
    line-height: 1.4;
}

/* ── Full-width two-column image+text rows ───── */
.vc-row-type-full_width_background .vc-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 30px;
}

.vc-row-type-full_width_background .vc-custom-heading {
    font-size: 24px;
    margin-top: 0;
}

/* ── "Shop From Our Range" section ──────────── */
.vc-row-type-full_width_background .vc-col-12 {
    width: 100%;
    padding: 0 15px;
}

.vc-row-type-full_width_background .vc-col-12 h3.vc-custom-heading {
    text-align: center;
    color: var(--banner-teal);
    font-size: 22px;
    margin-bottom: 30px;
}

.vc-row-type-full_width_background .vc-col-12 .vc-row {
    justify-content: center;
    gap: 0;
}

.vc-row-type-full_width_background .vc-col-12 .vc-col-3 {
    text-align: center;
}

.vc-row-type-full_width_background .vc-col-12 .vc-col-3 img {
    border-radius: 8px;
    margin-bottom: 10px;
    max-height: 220px;
    object-fit: cover;
}

.vc-row-type-full_width_background .vc-col-12 h6.vc-custom-heading {
    font-size: 14px;
    color: #1a4a5e;
    margin-top: 8px;
}

/* ── "Why You Should Care" standalone section ── */
.vc-row-type-in_container:last-of-type .vc-column-text {
    font-size: 15.5px;
    color: #444;
    max-width: 820px;
}

/* ── Author / Team Member Bio ────────────────── */
.vc-team-member {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: #f7fbfd;
    border: 1px solid #d2e8f0;
    border-radius: 10px;
    padding: 28px 28px;
    margin-top: 20px;
}

.vc-team-image {
    flex-shrink: 0;
}

.vc-team-image img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #5F96AA;
    display: block;
}

.vc-team-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 2px;
}

.vc-team-job {
    font-size: 13px;
    color: var(--banner-teal);
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vc-team-desc {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
}

/* ── Utility – hide inline style tag ────────── */
.vc-row-type-in_container style {
    display: none;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {

    .vc-col-6,
    .vc-col-4,
    .vc-col-3 {
        width: 100%;
    }

    .vc-row-type-full_width_background .vc-col-6 {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0 15px 20px;
    }

    .vc-row-type-full_width_background {
        padding: 30px 20px;
    }

    .vc-custom-heading {
        font-size: 20px;
    }

    .cp-setup-table tbody th {
        width: auto;
        white-space: normal;
    }

    .vc-team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

.single-post .site-main .container .content-area--single a {
    color: #f9a32f;
}

.single-post .site-main .container .content-area--single a:hover {
    color: #000;
}

.single-post h1 {
    color: #2b2a2a !important;
    font-size: 2.25rem !important;
}

.single-post h2 {
    color: #2b2a2a !important;
    font-size: 1.75rem !important;
}

.single-post h4 {
    font-size: 18px !important;
    margin-bottom: 8px !important;
}

section.blog-hero.single-blog-hero h1 {
    color: #fff !important;
}

.content-area.content-area--single {
    padding-top: 0 !important;
}

table.normaltbl {
    border-left: 1px solid #ececec;
    border-collapse: collapse;
    width: 100%;
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

table.normaltbl th {
    border: 1px solid #ececec;
    font-weight: 700;
    padding: 10px;
    text-align: left;
    white-space: nowrap;
}

table.normaltbl td {
    border: 1px solid #ececec;
    font-size: 14px;
    padding: 10px;
}