/* ================================================================
 *  MooodyCow Elementor Frontend Styles — v1.52.0
 * ================================================================ */

/* ── Three Block Picture ── */
.mooodycow-tbp-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}
.mooodycow-tbp-wrapper.mooodycow-tbp-reversed {
    flex-direction: row-reverse;
}
.mooodycow-tbp-content {
    flex: 0 0 50%;
    max-width: 50%;
    min-width: 0;
}
.mooodycow-tbp-media {
    flex: 1 1 0%;
    min-width: 0;
    position: relative;
}
.mooodycow-tbp-header {
    margin-bottom: 30px;
}
.mooodycow-tbp-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.mooodycow-tbp-title {
    margin: 0;
    line-height: 1.1;
}

/* Body text */
.mooodycow-tbp-body {
    margin-top: 16px;
}
.mooodycow-tbp-body p:first-child {
    margin-top: 0;
}
.mooodycow-tbp-body p:last-child {
    margin-bottom: 0;
}

/* Links */
.mooodycow-tbp-links--top-border .mooodycow-tbp-link-row:first-child {
    border-top: 1px solid;
    border-top-color: inherit;
}
.mooodycow-tbp-link-row {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s ease;
    cursor: pointer;
}
.mooodycow-tbp-link-row:hover {
    text-decoration: none;
}
.mooodycow-tbp-link-row.mooodycow-tbp-arrow-right .mooodycow-tbp-arrow {
    margin-left: auto;
    padding-left: 16px;
}
.mooodycow-tbp-link-row.mooodycow-tbp-arrow-left .mooodycow-tbp-arrow {
    margin-right: 16px;
    order: -1;
}
.mooodycow-tbp-link-text {
    flex: 1;
    min-width: 0;
}
.mooodycow-tbp-link-title {
    font-weight: 700;
}
.mooodycow-tbp-link-desc {
    margin-top: 6px;
}
.mooodycow-tbp-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease, transform 0.2s ease;
}
.mooodycow-tbp-link-row:hover .mooodycow-tbp-arrow {
    transform: translateX(4px);
}

/* Image — square container by default */
.mooodycow-tbp-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
}
.mooodycow-tbp-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    border-radius: inherit;
}

/* Icon Box — centered icon + anchor-based positioning */
.mooodycow-tbp-icon-box {
    --mooodycow-ib-offset-x: 0px;
    --mooodycow-ib-offset-y: 0px;
    position: absolute;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 2;
    line-height: 1;
}
.mooodycow-tbp-icon-box:hover {
    text-decoration: none;
}
/* Ensure icon is centered within box */
.mooodycow-tbp-icon-box i,
.mooodycow-tbp-icon-box svg {
    display: block;
    line-height: 1;
}

/* Horizontal anchors */
.mooodycow-tbp-ib-h-left {
    left: calc(0px + var(--mooodycow-ib-offset-x));
    right: auto;
}
.mooodycow-tbp-ib-h-center {
    left: 50%;
    right: auto;
    transform: translateX(calc(-50% + var(--mooodycow-ib-offset-x)));
}
.mooodycow-tbp-ib-h-right {
    right: calc(0px + var(--mooodycow-ib-offset-x));
    left: auto;
}

/* Vertical anchors */
.mooodycow-tbp-ib-v-top {
    top: calc(0px + var(--mooodycow-ib-offset-y));
    bottom: auto;
}
.mooodycow-tbp-ib-v-center {
    top: 50%;
    bottom: auto;
}
/* Combine center vertical with horizontal anchors */
.mooodycow-tbp-ib-v-center.mooodycow-tbp-ib-h-center {
    transform: translate(calc(-50% + var(--mooodycow-ib-offset-x)), calc(-50% + var(--mooodycow-ib-offset-y)));
}
.mooodycow-tbp-ib-v-center.mooodycow-tbp-ib-h-left,
.mooodycow-tbp-ib-v-center.mooodycow-tbp-ib-h-right {
    transform: translateY(calc(-50% + var(--mooodycow-ib-offset-y)));
}
.mooodycow-tbp-ib-v-bottom {
    bottom: calc(0px + var(--mooodycow-ib-offset-y));
    top: auto;
}

/* Responsive */
@media (max-width: 767px) {
    .mooodycow-tbp-wrapper,
    .mooodycow-tbp-wrapper.mooodycow-tbp-reversed {
        flex-direction: column;
    }
    .mooodycow-tbp-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .mooodycow-tbp-media {
        width: 100%;
    }
}


/* ── Case Study Homepage ── */
.mooodycow-csh-container {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 8px;
    min-height: 440px;
    container-type: inline-size;
}
.mooodycow-csh-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.mooodycow-csh-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    min-height: inherit;
    padding: 40px;
    justify-content: flex-end;
}
.mooodycow-csh-text-block {
    margin-bottom: 16px;
}
.mooodycow-csh-quote {
    color: #fff;
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 8px;
}
.mooodycow-csh-quote p {
    margin: 0;
}
.mooodycow-csh-attribution {
    font-size: 14px;
    color: #E8A87C;
}
.mooodycow-csh-attribution p {
    margin: 0;
}

/* Stats */
.mooodycow-csh-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-self: flex-end;
}
.mooodycow-csh-stat {
    padding: 16px 20px;
    border-radius: 6px;
    text-align: center;
    min-width: 120px;
}
.mooodycow-csh-stat-value {
    font-size: 24px;
    font-weight: 700;
    color: #E8A87C;
    line-height: 1.2;
}
.mooodycow-csh-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ccc;
    margin-top: 4px;
    line-height: 1.3;
}

@container (max-width: 480px) {
    .mooodycow-csh-stats {
        flex-direction: column;
    }
}
@media (max-width: 480px) {
    .mooodycow-csh-stats {
        flex-direction: column;
    }
    .mooodycow-csh-quote {
        max-width: 100% !important;
    }
}

/* ── Latest Insights ── */
.mooodycow-li-wrapper {
    width: 100%;
}

/* Header */
.mooodycow-li-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}
.mooodycow-li-header-left {
    flex: 1;
    min-width: 0;
}
.mooodycow-li-header-right {
    flex-shrink: 0;
}
.mooodycow-li-subtitle {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}
.mooodycow-li-title {
    margin: 0;
    line-height: 1.1;
}
.mooodycow-li-cta {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 13px;
    border-bottom: 3px solid #C0392B;
    padding-bottom: 6px;
    transition: color 0.2s ease;
}
.mooodycow-li-cta:hover {
    text-decoration: none;
}

/* Posts list */
.mooodycow-li-posts--top-border .mooodycow-li-row:first-child {
    border-top: 1px solid #E0E0E0;
}

/* Post row */
.mooodycow-li-row {
    display: flex;
    align-items: center;
    padding: 30px 24px;
    border-bottom: 1px solid #E0E0E0;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.25s ease, border-radius 0.25s ease;
    cursor: pointer;
    gap: 20px;
}
.mooodycow-li-row:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,0.03);
    border-radius: 8px;
}

/* Meta column */
.mooodycow-li-meta {
    flex: 0 0 160px;
    max-width: 160px;
    min-width: 0;
}
.mooodycow-li-date {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: #8899AA;
    text-transform: uppercase;
}
.mooodycow-li-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    background-color: rgba(0,0,0,0.06);
    color: #333;
    margin-top: 6px;
}

/* Post title */
.mooodycow-li-post-title {
    flex: 1;
    min-width: 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.25s ease;
}
.mooodycow-li-row:hover .mooodycow-li-post-title {
    color: #C0392B;
}

/* Arrow */
.mooodycow-li-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    font-size: 18px;
    color: #8899AA;
    background-color: transparent;
    transition: background-color 0.25s ease, color 0.25s ease;
    line-height: 1;
}
.mooodycow-li-row:hover .mooodycow-li-arrow {
    background-color: #C0392B;
    color: #fff;
}
.mooodycow-li-arrow i,
.mooodycow-li-arrow svg {
    display: block;
    line-height: 1;
    transform: rotate(-45deg);
}

/* No posts */
.mooodycow-li-no-posts {
    padding: 30px 0;
    text-align: center;
    color: #999;
}

/* Hover Image */
.mooodycow-li-row--has-img {
    position: relative;
    overflow: hidden;
}
.mooodycow-li-row--has-img .mooodycow-li-meta,
.mooodycow-li-row--has-img .mooodycow-li-post-title,
.mooodycow-li-row--has-img .mooodycow-li-arrow {
    position: relative;
    z-index: 2;
}
.mooodycow-li-hover-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}
.mooodycow-li-row:hover .mooodycow-li-hover-img {
    opacity: 0.12;
}
/* Position variants */
.mooodycow-li-hover-img--full {
    left: 0;
    right: 0;
    width: 100%;
}
.mooodycow-li-hover-img--right {
    right: 0;
    left: auto;
}
.mooodycow-li-hover-img--left {
    left: 0;
    right: auto;
}
/* Edge fade — soft gradient mask on the inner edge */
.mooodycow-li-hover-img--fade.mooodycow-li-hover-img--right {
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
.mooodycow-li-hover-img--fade.mooodycow-li-hover-img--left {
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}
.mooodycow-li-hover-img--fade.mooodycow-li-hover-img--full {
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 30%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
}

/* Tablet */
@media (max-width: 1024px) {
    .mooodycow-li-meta {
        flex: 0 0 120px;
        max-width: 120px;
    }
    .mooodycow-li-post-title {
        font-size: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .mooodycow-li-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .mooodycow-li-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .mooodycow-li-meta {
        flex: 0 0 auto;
        max-width: 100%;
    }
    .mooodycow-li-arrow {
        align-self: flex-end;
    }
    .mooodycow-li-post-title {
        font-size: 24px;
    }
}

/* ── Model 3 Block ── */
.mooodycow-m3b-grid {
    display: grid;
    grid-template-columns: repeat(var(--mooodycow-m3b-cols, var(--mooodycow-m3b-cols-fallback, 3)), minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}
/* All equal: every card stretches to the tallest */
.mooodycow-m3b-grid.mooodycow-m3b-eq-all {
    align-items: stretch;
}
/* Outer only: all cards start, middle stays independent.
   Use per-card Min Height on cards 1 & 3 to match them. */
.mooodycow-m3b-grid.mooodycow-m3b-eq-outer {
    align-items: start;
}

.mooodycow-m3b-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
}

.mooodycow-m3b-card-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Watermark */
.mooodycow-m3b-watermark {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.07;
    line-height: 1;
}
.mooodycow-m3b-watermark i,
.mooodycow-m3b-watermark svg {
    display: block;
}

/* Label */
.mooodycow-m3b-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: inherit;
    opacity: 0.55;
    margin-bottom: 12px;
}

/* Title */
.mooodycow-m3b-title {
    margin: 0 0 20px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
}

/* Body */
.mooodycow-m3b-body {
    flex: 1;
}
.mooodycow-m3b-body p:first-child { margin-top: 0; }
.mooodycow-m3b-body p:last-child { margin-bottom: 0; }
.mooodycow-m3b-body ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mooodycow-m3b-body li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.mooodycow-m3b-body li + li {
    margin-top: 10px;
}
.mooodycow-m3b-li-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    color: inherit;
    opacity: 0.45;
    line-height: 1;
    padding-top: 3px;
}

/* Icon Info Box */
.mooodycow-m3b-infobox {
    margin-top: 24px;
    padding: 16px 20px;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.1);
}
.mooodycow-m3b-infobox-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mooodycow-m3b-infobox-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(255,255,255,0.15);
}
.mooodycow-m3b-infobox-icon i,
.mooodycow-m3b-infobox-icon svg {
    color: #fff;
    fill: #fff;
}
.mooodycow-m3b-infobox-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.mooodycow-m3b-infobox-sub {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 2px;
}

/* Footer — groups info box + button, pushes to bottom */
.mooodycow-m3b-footer {
    margin-top: auto;
    padding-top: 24px;
}

/* Button wrap — standalone (no info box) */
.mooodycow-m3b-footer > .mooodycow-m3b-btn-wrap {
    padding-top: 0;
}

/* Button wrap inside info box — separator line above */
.mooodycow-m3b-infobox .mooodycow-m3b-btn-wrap {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.mooodycow-m3b-infobox .mooodycow-m3b-btn--filled,
.mooodycow-m3b-infobox .mooodycow-m3b-btn--outline {
    width: 100%;
    justify-content: center;
}

/* Button base */
.mooodycow-m3b-btn {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: all 0.25s ease;
    cursor: pointer;
    color: inherit;
}
.mooodycow-m3b-btn:hover {
    text-decoration: none;
    opacity: 0.85;
}
.mooodycow-m3b-btn-icon {
    margin-left: 8px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: transform 0.3s ease;
}
/* Arrow slides right on card hover */
.mooodycow-m3b-card:hover .mooodycow-m3b-btn-icon {
    transform: translateX(6px);
}

/* Text style */
.mooodycow-m3b-btn--text {
    background: none;
    border: none;
    padding: 0;
}

/* Filled style */
.mooodycow-m3b-btn--filled {
    padding: 14px 24px;
    border-radius: 6px;
    border: none;
    width: 100%;
    justify-content: center;
    background-color: #FFFFFF;
    color: #0F1E3C;
}

/* Outline style */
.mooodycow-m3b-btn--outline {
    padding: 14px 24px;
    border-radius: 6px;
    border: 2px solid currentColor;
    background: transparent;
    width: 100%;
    justify-content: center;
}

/* Tablet — 2 cols max, cards don't break out */
@media (max-width: 1024px) {
    .mooodycow-m3b-card {
        min-width: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .mooodycow-m3b-title {
        font-size: 24px;
    }
}

/* Mobile — single column stack */
@media (max-width: 767px) {
    .mooodycow-m3b-title {
        font-size: 26px;
    }
}

/* ── Services Block ── */
.mooodycow-sb-grid {
    display: grid;
    grid-template-columns: repeat(var(--mooodycow-sb-cols, var(--mooodycow-sb-cols-fallback, 3)), minmax(0, 1fr));
    gap: 24px;
    align-items: start;
    max-width: 100%;
}
.mooodycow-sb-grid.mooodycow-sb-eq {
    align-items: stretch;
}

.mooodycow-sb-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background-color: #fff;
}
.mooodycow-sb-card--border-left {
    border-left: 3px solid #1a3a6b;
    border-left-style: solid;
}
.mooodycow-sb-card--border-full {
    border: 3px solid #1a3a6b;
    border-style: solid;
}

/* Image */
.mooodycow-sb-image {
    position: relative;
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    overflow: hidden;
    flex-shrink: 0;
}
.mooodycow-sb-image-gradient {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Card body */
.mooodycow-sb-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0;
}

/* Title */
.mooodycow-sb-title {
    margin: 20px 0 8px 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    padding: 0 20px;
}
.mooodycow-sb-desc {
    margin: 0 0 20px 0;
    font-size: 15px;
    line-height: 1.5;
    padding: 0 20px;
}
.mooodycow-sb-center {
    text-align: center;
}

/* Links section — pushed to bottom */
.mooodycow-sb-links {
    margin-top: auto;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Link row */
.mooodycow-sb-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-bottom: 1px solid #E8E8E8;
    text-decoration: none;
    color: inherit;
    transition: background-color 0.2s ease;
    cursor: pointer;
}
.mooodycow-sb-link:last-child {
    border-bottom: none;
}
.mooodycow-sb-link:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,0.03);
}

.mooodycow-sb-link-text {
    flex: 1;
    min-width: 0;
}
.mooodycow-sb-link-title {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.3;
}
.mooodycow-sb-link-desc {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 4px;
    opacity: 0.75;
}

/* Arrow */
.mooodycow-sb-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #8899AA;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.mooodycow-sb-link:hover .mooodycow-sb-arrow {
    transform: translateX(4px);
}

/* Services Block column counts per breakpoint come from the widget's
   responsive Columns control, which writes --mooodycow-sb-cols. No
   hardcoded overrides here, or the control could never take effect. */

/* ── Case Study 3 Block ── */
.mooodycow-cs3-grid {
    display: grid;
    grid-template-columns: repeat(var(--mooodycow-cs3-cols, var(--mooodycow-cs3-cols-fallback, 3)), minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}
.mooodycow-cs3-grid.mooodycow-cs3-eq {
    align-items: stretch;
}

.mooodycow-cs3-card {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease;
}
.mooodycow-cs3-card:hover {
    text-decoration: none;
    color: inherit;
}

/* Image */
.mooodycow-cs3-image-wrap {
    flex-shrink: 0;
}
.mooodycow-cs3-image {
    height: 220px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Body */
.mooodycow-cs3-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 24px;
}

/* Meta */
.mooodycow-cs3-meta {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #5A6B7D;
    margin-bottom: 12px;
}
.mooodycow-cs3-sep {
    margin: 0 6px;
    opacity: 0.6;
}

/* Title */
.mooodycow-cs3-title {
    margin: 0 0 12px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    transition: color 0.2s ease;
}

/* Excerpt */
.mooodycow-cs3-excerpt {
    margin: 0 0 16px 0;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.8;
}

/* Arrow — pinned to bottom */
.mooodycow-cs3-arrow-wrap {
    margin-top: auto;
    padding-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.mooodycow-cs3-read-more {
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}
.mooodycow-cs3-arrow {
    display: inline-flex;
    align-items: center;
    font-size: 20px;
    color: #1a2a4a;
    transition: color 0.2s ease, transform 0.2s ease;
    line-height: 1;
}
.mooodycow-cs3-card:hover .mooodycow-cs3-arrow {
    transform: translateX(4px);
}

/* Banner Button */
.mooodycow-cs3-banner-wrap {
    margin-top: auto;
    padding-top: 16px;
}
.mooodycow-cs3-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background-color: #001953 !important;
    color: #fff !important;
    text-decoration: none;
    border-radius: 10px !important;
    transition: background-color 0.25s ease;
    box-sizing: border-box;
}
.mooodycow-cs3-banner:hover {
    background-color: #11337f !important;
}
.mooodycow-cs3-banner-text {
    font-weight: 600 !important;
    font-size: 15px;
    line-height: 1.3;
    color: #fff !important;
}
.mooodycow-cs3-banner-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    font-size: 18px;
    color: #fff !important;
    transition: transform 0.25s ease;
}
.mooodycow-cs3-banner:hover .mooodycow-cs3-banner-icon {
    transform: translateX(4px);
}

/* No posts */
.mooodycow-cs3-no-posts {
    grid-column: 1 / -1;
    padding: 30px 0;
    text-align: center;
    color: #999;
}

/* Column counts for these grids come from each widget's responsive Columns
   control, which writes its own CSS variable. No hardcoded overrides here,
   or the control could never take effect. */

/* ── Bullet Points ── */
.mooodycow-bp-list {
    display: flex;
    flex-direction: column;
}
.mooodycow-bp-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}
.mooodycow-bp-item + .mooodycow-bp-item {
    margin-top: 12px;
}
a.mooodycow-bp-item:hover {
    text-decoration: none;
    color: inherit;
}
.mooodycow-bp-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 2px;
}
.mooodycow-bp-icon i,
.mooodycow-bp-icon svg {
    display: block;
    color: #C0392B;
    fill: #C0392B;
}
.mooodycow-bp-text {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 600;
}
.mooodycow-bp-highlight {
    color: #C0392B;
    transition: color 0.2s ease;
}

/* ── Horizontal Button ── */
.mooodycow-hb-list {
    display: flex;
    flex-direction: column;
}
/* Side-by-side layout (opt-in via the Layout control; stacked remains default) */
.mooodycow-hb-list--row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}
.mooodycow-hb-list--row .mooodycow-hb-row {
    flex: 1 1 200px;
    border-bottom: none;
}
.mooodycow-hb-list--row.mooodycow-hb-list--top-border .mooodycow-hb-row:first-child {
    border-top: none;
}
.mooodycow-hb-list--top-border .mooodycow-hb-row:first-child {
    border-top: 1px solid #E8E8E8;
    border-top-color: inherit;
}
.mooodycow-hb-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 16px;
    border-bottom: 1px solid #E8E8E8;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all 0.25s ease;
}
.mooodycow-hb-row:hover {
    text-decoration: none;
    background-color: rgba(0,0,0,0.02);
}
.mooodycow-hb-text {
    flex: 1;
    min-width: 0;
}
.mooodycow-hb-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a2a4a;
    margin-bottom: 4px;
    transition: color 0.25s ease;
}
.mooodycow-hb-desc {
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.8;
}
.mooodycow-hb-arrow {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 22px;
    color: #1a2a4a;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1;
}
.mooodycow-hb-row:hover .mooodycow-hb-arrow {
    transform: translateX(4px);
}
/* Custom icon position — left arrow flips the hover shift direction */
.mooodycow-hb-row--cip .mooodycow-hb-arrow:first-child {
    /* Arrow rendered first = left side */
}
.mooodycow-hb-row--cip:hover .mooodycow-hb-arrow:first-child {
    transform: translateX(-4px);
}

/* ── MoodyCow Button ── */
.mooodycow-btn-wrap {
    display: block;
    line-height: 1;
}
.mooodycow-btn {
    --mooodycow-btn-pr: 28px;
    --mooodycow-btn-pl: 28px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    background-color: #2AABB3;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    border: 0 solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.mooodycow-btn:hover {
    text-decoration: none;
    color: #fff;
}
.mooodycow-btn--icon-left {
    flex-direction: row-reverse;
}
.mooodycow-btn--icon-left .mooodycow-btn-icon {
    order: -1;
}

/* Text */
.mooodycow-btn-text {
    display: inline-block;
}

/* Icon */
.mooodycow-btn-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}
.mooodycow-btn-icon i,
.mooodycow-btn-icon svg {
    display: block;
}

/* Expand right */
.mooodycow-btn--expand-right:hover {
    padding-right: calc(20px + var(--mooodycow-btn-pr));
}
/* Expand left */
.mooodycow-btn--expand-left:hover {
    padding-left: calc(20px + var(--mooodycow-btn-pl));
}
/* Expand both */
.mooodycow-btn--expand-both:hover {
    padding-left: calc(10px + var(--mooodycow-btn-pl));
    padding-right: calc(10px + var(--mooodycow-btn-pr));
}

/* Icon hover shift */
.mooodycow-btn:hover .mooodycow-btn-icon {
    transform: translateX(4px);
}

/* Full width when justified */
.mooodycow-btn-wrap[style*="justify"] .mooodycow-btn,
.mooodycow-btn-wrap .mooodycow-btn--full {
    width: 100%;
    justify-content: center;
}

/* ── MoodyCow Dual Button ── */
.mooodycow-dbtn-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.mooodycow-dbtn {
    --mooodycow-dbtn-pr: 28px;
    --mooodycow-dbtn-exp: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    background-color: #04007C;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
    cursor: pointer;
    border: 0 solid transparent;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.mooodycow-dbtn:hover {
    text-decoration: none;
    color: #fff;
}
.mooodycow-dbtn--icon-left {
    flex-direction: row-reverse;
}
.mooodycow-dbtn-text {
    display: inline-block;
}
.mooodycow-dbtn-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}
.mooodycow-dbtn-icon i,
.mooodycow-dbtn-icon svg {
    display: block;
}

/* Expand on hover */
.mooodycow-dbtn--expand:hover {
    padding-right: calc(var(--mooodycow-dbtn-exp) + var(--mooodycow-dbtn-pr));
}
.mooodycow-dbtn:hover .mooodycow-dbtn-icon {
    transform: translateX(4px);
}

/* Stack on mobile */
@media (max-width: 767px) {
    .mooodycow-dbtn-wrap--stack {
        flex-direction: column;
        align-items: stretch;
    }
    .mooodycow-dbtn-wrap--fw-mob .mooodycow-dbtn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Technology Block ── */
.mooodycow-tb-grid {
    display: grid;
    grid-template-columns: repeat(var(--mooodycow-tb-cols, var(--mooodycow-tb-cols-fallback, 3)), minmax(0, 1fr));
    gap: 20px;
    align-items: start;
    max-width: 100%;
}
.mooodycow-tb-grid.mooodycow-tb-eq {
    align-items: stretch;
}
.mooodycow-tb-grid.mooodycow-tb-eq .mooodycow-tb-card {
    height: auto;
    min-height: 320px;
}

.mooodycow-tb-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    height: 320px;
    cursor: pointer;
}

/* Full-card overlay link — covers entire card, sits above all visual layers
   but the inner CTA anchor is raised above it so "Learn More" still registers */
.mooodycow-tb-card-link {
    position: absolute;
    inset: 0;
    z-index: 20;
    text-decoration: none;
    text-indent: -9999px;
    overflow: hidden;
}
.mooodycow-tb-card-link:focus-visible {
    outline: 3px solid #04007C;
    outline-offset: -3px;
    border-radius: 8px;
}
.mooodycow-tb-card--linked .mooodycow-tb-cta {
    position: relative;
    z-index: 21;
}

/* Background image */
.mooodycow-tb-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
}

/* Default gradient overlay */
.mooodycow-tb-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Hover color overlay */
.mooodycow-tb-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Front face — title at bottom */
.mooodycow-tb-front {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.mooodycow-tb-front-title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* Back face — hover content */
.mooodycow-tb-back {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
    padding: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.mooodycow-tb-back-title {
    flex: 0 0 auto;
    margin: 0 0 20px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.mooodycow-tb-back-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #fff;
    margin-bottom: 20px;
    transition: opacity 0.5s ease;
    opacity: 0;
    /* Shrinks and trims rather than pushing the CTA outside the card */
    flex: 0 1 auto;
    min-height: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 30;
}
.mooodycow-tb-cta-wrap {
    flex: 0 0 auto;
    margin-top: auto;
    transition: opacity 0.5s ease;
    opacity: 0;
}

/* CTA */
.mooodycow-tb-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.2s ease;
}
.mooodycow-tb-cta:hover {
    text-decoration: none;
}
.mooodycow-tb-cta-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}
.mooodycow-tb-cta:hover .mooodycow-tb-cta-icon {
    transform: translateX(3px);
}

/* ── FADE TRANSITION ── */
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-overlay {
    opacity: 0;
}
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-hover-overlay {
    opacity: 0.9;
}
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-front {
    opacity: 0;
    pointer-events: none;
}
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-back {
    opacity: 1;
    pointer-events: auto;
}
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-back-desc,
.mooodycow-tb-trans-fade .mooodycow-tb-card:hover .mooodycow-tb-cta-wrap {
    opacity: 1;
}

/* ── SLIDE UP TRANSITION ── */
/* Gradient stays put — hover overlay fades on top of it, blending together */
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-overlay {
    opacity: 1;
    transform: none;
}
/* Hover overlay: FADE only (no slide) — blends over the gradient */
.mooodycow-tb-trans-slide-up .mooodycow-tb-hover-overlay {
    transform: none;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-hover-overlay {
    transform: none;
    opacity: 0.9;
}
/* Front face: sits above hover overlay so title stays visible during blend */
.mooodycow-tb-trans-slide-up .mooodycow-tb-front {
    z-index: 6;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-front {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0.12s;
}
/* Front title: slides upward while front fades */
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-front-title {
    transform: translateY(-50px);
}
/* Back content: slides up gently, fades in */
.mooodycow-tb-trans-slide-up .mooodycow-tb-back {
    transform: translateY(20px);
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-back-title {
    transform: translateY(10px);
    opacity: 0;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-back {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-back-title {
    opacity: 1;
    transform: translateY(0);
}
/* Desc and CTA fade in with staggered delay */
.mooodycow-tb-trans-slide-up .mooodycow-tb-back-desc {
    transition-delay: 0.12s;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-cta-wrap {
    transition-delay: 0.18s;
}
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-back-desc,
.mooodycow-tb-trans-slide-up .mooodycow-tb-card:hover .mooodycow-tb-cta-wrap {
    opacity: 1;
}

/* Column counts per breakpoint are set by the widget's responsive
   Columns control, which writes --mooodycow-tb-cols. No hardcoded
   overrides here, or the control could never take effect. */

/* ── IBM Block ── */
.mooodycow-ibm-wrap {
    display: flex;
    align-items: stretch;
    gap: 40px;
}
.mooodycow-ibm-left {
    flex: 0 0 55%;
    max-width: 55%;
    display: flex;
    flex-direction: column;
}

/* Title */
.mooodycow-ibm-title {
    margin: 0 0 20px 0;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
}

/* Description */
.mooodycow-ibm-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Tabs label */
.mooodycow-ibm-tabs-label {
    font-size: 14px;
    color: #8899AA;
    margin-bottom: 8px;
    padding-top: 16px;
}

/* Tabs */
.mooodycow-ibm-tabs {
    display: flex;
    flex-direction: column;
}
.mooodycow-ibm-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E0E0E0;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 0 solid transparent;
}
.mooodycow-ibm-tab:first-child {
    border-top: 1px solid #E0E0E0;
}
.mooodycow-ibm-tab.is-active {
    border-left: 3px solid #1a2a4a;
    padding-left: 16px;
}
.mooodycow-ibm-tab-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    color: #1a2a4a;
    transition: color 0.25s ease;
    flex: 1;
}
.mooodycow-ibm-tab-arrow {
    flex-shrink: 0;
    font-size: 16px;
    color: #8899AA;
    transition: color 0.25s ease, transform 0.25s ease;
    line-height: 1;
}
.mooodycow-ibm-tab:hover .mooodycow-ibm-tab-arrow,
.mooodycow-ibm-tab.is-active .mooodycow-ibm-tab-arrow {
    transform: translateX(4px);
}

/* Right panel */
.mooodycow-ibm-right {
    flex: 1;
    min-width: 0;
    background-color: #F5F6F8;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}
.mooodycow-ibm-panel {
    display: none;
    flex-direction: column;
    height: 100%;
    animation: mooodycowIbmFadeIn 0.35s ease;
}
.mooodycow-ibm-panel.is-active {
    display: flex;
}
@keyframes mooodycowIbmFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Panel image */
.mooodycow-ibm-panel-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}
.mooodycow-ibm-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Panel desc */
.mooodycow-ibm-panel-desc {
    padding: 20px 20px 0 20px;
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
}

/* Panel CTA */
.mooodycow-ibm-panel-cta-wrap {
    padding: 20px;
    margin-top: auto;
}
.mooodycow-ibm-panel-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background-color: #0F1E3C;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    border-radius: 0;
    transition: all 0.25s ease;
    cursor: pointer;
}
.mooodycow-ibm-panel-cta:hover {
    text-decoration: none;
}
.mooodycow-ibm-panel-cta-icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    line-height: 1;
    transition: transform 0.25s ease, color 0.25s ease;
}
.mooodycow-ibm-panel-cta:hover .mooodycow-ibm-panel-cta-icon {
    transform: translateX(4px);
}

/* Mobile stack */
@media (max-width: 767px) {
    .mooodycow-ibm-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 28px;
    }
    /* Stacked, so both columns span the full width. !important is required
       to beat the per-element CSS the Left Column Width control generates,
       which is more specific than this rule. */
    .mooodycow-ibm-left {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
    }
    .mooodycow-ibm-right {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0;
        min-height: auto;
    }
}

/* ── Capability Grid ── */
.mooodycow-cg-grid {
    display: grid;
    column-gap: 80px;
    row-gap: 60px;
}
.mooodycow-cg-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.mooodycow-cg-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mooodycow-cg-item {
    min-width: 0;
}

.mooodycow-cg-title {
    margin: 0 0 16px 0;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a2a4a;
}
.mooodycow-cg-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}
.mooodycow-cg-desc p:first-child { margin-top: 0; }
.mooodycow-cg-desc p:last-child  { margin-bottom: 0; }

/* Custom bullet list styling */
.mooodycow-cg-desc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mooodycow-cg-desc ul li {
    position: relative;
    padding-left: 14px;
    margin-bottom: 0;
}
.mooodycow-cg-desc ul li + li {
    margin-top: 8px;
}
.mooodycow-cg-desc ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: var(--mooodycow-cg-bullet-size, 6px);
    height: var(--mooodycow-cg-bullet-size, 6px);
    background-color: #1a2a4a;
    color: #1a2a4a;
    flex-shrink: 0;
}
/* Shape: dot (default) */
.mooodycow-cg-bullet-dot ul li::before {
    border-radius: 50%;
}
/* Shape: square */
.mooodycow-cg-bullet-square ul li::before {
    border-radius: 0;
}
/* Shape: dash */
.mooodycow-cg-bullet-dash ul li::before {
    width: calc(var(--mooodycow-cg-bullet-size, 6px) * 1.8);
    height: 2px;
    top: 0.7em;
    border-radius: 1px;
}
/* Shape: arrow — uses CSS border trick */
.mooodycow-cg-bullet-arrow ul li::before {
    width: 0;
    height: 0;
    background: transparent;
    border-top: calc(var(--mooodycow-cg-bullet-size, 6px) * 0.6) solid transparent;
    border-bottom: calc(var(--mooodycow-cg-bullet-size, 6px) * 0.6) solid transparent;
    border-left: var(--mooodycow-cg-bullet-size, 6px) solid currentColor;
    top: 0.5em;
}
/* Shape: check */
.mooodycow-cg-bullet-check ul li::before {
    width: calc(var(--mooodycow-cg-bullet-size, 6px) * 1.2);
    height: calc(var(--mooodycow-cg-bullet-size, 6px) * 0.6);
    background: transparent;
    border-left: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    top: 0.4em;
    border-radius: 0;
}
/* Shape: custom icon — hide default bullet, render injected icon */
.mooodycow-cg-bullet-icon ul li::before {
    display: none;
}
.mooodycow-cg-bullet-icon ul li {
    padding-left: 22px;
}
.mooodycow-cg-bullet-icon .mooodycow-cg-bullet-icon {
    position: absolute;
    left: 0;
    top: 0.3em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.mooodycow-cg-bullet-icon .mooodycow-cg-bullet-icon i,
.mooodycow-cg-bullet-icon .mooodycow-cg-bullet-icon svg {
    display: block;
    line-height: 1;
}

/* Orphan centering — when the last item has no pair, span the row and center */
.mooodycow-cg-center-orphan.mooodycow-cg-cols-2 .mooodycow-cg-item:nth-child(odd):last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin-inline: auto;
}
.mooodycow-cg-center-orphan.mooodycow-cg-cols-3 .mooodycow-cg-item:nth-child(3n+1):last-child {
    grid-column: 1 / -1;
    max-width: 33.333%;
    margin-inline: auto;
}
.mooodycow-cg-center-orphan.mooodycow-cg-cols-3 .mooodycow-cg-item:nth-child(3n+2):last-child {
    grid-column: 2 / -1;
    max-width: 66.666%;
    margin-inline: auto;
}

/* Mobile — stack to one column, orphan rules disabled */
@media (max-width: 767px) {
    .mooodycow-cg-grid {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
    .mooodycow-cg-center-orphan .mooodycow-cg-item:last-child {
        grid-column: auto;
        max-width: 100%;
        margin-inline: 0;
    }
}

/* ── Two Tone Heading ── */
.mooodycow-tth {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #001953;
}
.mooodycow-tth-segment {
    display: inline;
}

/* ── Stats Block ── */
.mooodycow-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.mooodycow-stat-card {
    background-color: #1F1F1F;
    padding: 36px 28px;
    border-radius: 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.mooodycow-stat-number {
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    color: #FFFFFF;
    margin-bottom: 16px;
}
.mooodycow-stat-label {
    font-size: 14px;
    line-height: 1.4;
    color: #A0A0A0;
}

/* Stats responsive */
@media (max-width: 1024px) {
    .mooodycow-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .mooodycow-stat-grid {
        grid-template-columns: 1fr;
    }
    .mooodycow-stat-number {
        font-size: 44px;
    }
}

/* ── Icon Grid ── */
.mooodycow-ig-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.mooodycow-ig-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 28px 16px 24px 16px;
    background-color: #F5F6F8;
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.mooodycow-ig-item:hover {
    text-decoration: none;
}
.mooodycow-ig-icon {
    margin-bottom: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #001953;
    transition: color 0.25s ease;
}
.mooodycow-ig-icon i,
.mooodycow-ig-icon svg {
    display: block;
    line-height: 1;
    font-size: 36px;
    width: 36px;
    height: 36px;
}
.mooodycow-ig-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #001953;
    transition: color 0.25s ease;
}

/* Icon Grid responsive */
@media (max-width: 1024px) {
    .mooodycow-ig-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 600px) {
    .mooodycow-ig-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* ── Horizontal Tabs ── */
.mooodycow-ht-wrap {
    width: 100%;
}
.mooodycow-ht-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    border-bottom: 1px solid #E0E0E0;
    justify-content: flex-start;
    align-items: stretch;
}
.mooodycow-ht-tab {
    position: relative;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 16px 8px;
    margin: 0;
    font-family: inherit;
    font-size: 16px;
    line-height: 1.3;
    color: #001953;
    cursor: pointer;
    transition: color 0.25s ease;
    text-align: center;
    text-shadow: none;
    text-decoration: none;
}
.mooodycow-ht-tab:hover,
.mooodycow-ht-tab:focus,
.mooodycow-ht-tab:active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
    text-decoration: none;
}
.mooodycow-ht-tab:focus { outline: none; }
.mooodycow-ht-tab:focus-visible {
    outline: 2px solid #04007C;
    outline-offset: 4px;
    border-radius: 2px;
}
.mooodycow-ht-tab:hover {
    color: #04007C;
}
.mooodycow-ht-tab.is-active {
    color: #001953;
    font-weight: 700;
}
/* Active underline */
.mooodycow-ht-tab::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 3px;
    background-color: #04007C;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
    pointer-events: none;
}
.mooodycow-ht-tab.is-active::after {
    transform: scaleX(1);
}

/* Content area */
.mooodycow-ht-content {
    margin-top: 50px;
    position: relative;
}
.mooodycow-ht-panel {
    display: none;
    animation: mooodycowHtFadeIn 0.3s ease;
}
.mooodycow-ht-panel.is-active {
    display: block;
}
@keyframes mooodycowHtFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

.mooodycow-ht-title {
    margin: 0 0 16px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.15;
    color: #001953;
}
.mooodycow-ht-meta {
    font-size: 13px;
    line-height: 1.4;
    color: #8899AA;
    letter-spacing: 0.02em;
}
.mooodycow-ht-meta--above {
    margin-bottom: 12px;
}
.mooodycow-ht-meta--below {
    margin-bottom: 12px;
    margin-top: -8px;
}
.mooodycow-ht-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}
.mooodycow-ht-desc p:first-child { margin-top: 0; }
.mooodycow-ht-desc p:last-child  { margin-bottom: 0; }

/* Mobile — tabs scroll horizontally if they overflow */
@media (max-width: 767px) {
    .mooodycow-ht-tabs {
        gap: 30px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }
    .mooodycow-ht-tab {
        flex-shrink: 0;
    }
    .mooodycow-ht-title {
        font-size: 28px;
    }
}

/* ── Icon Info Row ── */
.mooodycow-iir {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 28px;
    background-color: #F0F3F8;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}
.mooodycow-iir:hover {
    text-decoration: none;
}
.mooodycow-iir--top {
    flex-direction: column;
    text-align: center;
}

/* Icon box */
.mooodycow-iir-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: #DAE0F2;
    transition: background-color 0.25s ease, color 0.25s ease;
    line-height: 1;
}
.mooodycow-iir-icon i,
.mooodycow-iir-icon svg {
    display: block;
    font-size: 28px;
    width: 28px;
    height: 28px;
    color: #001953;
    fill: #001953;
    line-height: 1;
    transition: color 0.25s ease, fill 0.25s ease;
}

/* Text */
.mooodycow-iir-text {
    flex: 1;
    min-width: 0;
}
.mooodycow-iir-title {
    margin: 0 0 4px 0;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #001953;
    transition: color 0.25s ease;
}
.mooodycow-iir-subtitle {
    font-size: 15px;
    line-height: 1.5;
    color: #5A6A7A;
    margin: 0;
    transition: color 0.25s ease;
}

/* ── Flow Block ── */
.mooodycow-fb-wrap {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 24px;
    align-items: stretch;
}
.mooodycow-fb-col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    background-color: rgba(255,255,255,0.04);
    text-align: center;
}
.mooodycow-fb-col--glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mooodycow-fb-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 24px;
    line-height: 1.4;
}
.mooodycow-fb-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.mooodycow-fb-item {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Center column bars */
.mooodycow-fb-col--center .mooodycow-fb-item {
    background-color: #000000;
    padding: 18px 20px;
    border-radius: 4px;
}

/* Arrow */
.mooodycow-fb-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 28px;
    line-height: 1;
    color: rgba(255,255,255,0.35);
}
.mooodycow-fb-arrow i,
.mooodycow-fb-arrow svg {
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* Stacked (mobile / tablet) — single column, arrow rotates */
@media (max-width: 1024px) {
    .mooodycow-fb-wrap[data-stack="1024"] {
        grid-template-columns: 1fr;
    }
    .mooodycow-fb-wrap[data-stack="1024"] .mooodycow-fb-arrow i,
    .mooodycow-fb-wrap[data-stack="1024"] .mooodycow-fb-arrow svg {
        transform: rotate(90deg);
    }
}
@media (max-width: 767px) {
    .mooodycow-fb-wrap[data-stack="767"] {
        grid-template-columns: 1fr;
    }
    .mooodycow-fb-wrap[data-stack="767"] .mooodycow-fb-arrow i,
    .mooodycow-fb-wrap[data-stack="767"] .mooodycow-fb-arrow svg {
        transform: rotate(90deg);
    }
}

/* ── Content Switcher ── */
.mooodycow-cs-wrap {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    max-width: 100%;
}
.mooodycow-cs-tabs {
    flex: 0 0 32%;
    max-width: 32%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.mooodycow-cs-tab {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    padding: 18px 24px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    color: #001953;
    background-color: #FFFFFF !important;
    background-image: none !important;
    border: 1px solid #001953 !important;
    border-radius: 4px !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transition: all 0.25s ease;
}
.mooodycow-cs-tab:hover,
.mooodycow-cs-tab:focus,
.mooodycow-cs-tab:active {
    box-shadow: none !important;
    text-decoration: none;
}
.mooodycow-cs-tab:focus { outline: none; }
.mooodycow-cs-tab:focus-visible {
    outline: 2px solid #04007C;
    outline-offset: 2px;
}
.mooodycow-cs-tab.is-active {
    color: #FFFFFF;
    background-color: #001953 !important;
    border-color: #001953 !important;
}

/* Panels */
.mooodycow-cs-panels {
    flex: 1;
    min-width: 0;
}
.mooodycow-cs-panel {
    display: none;
    animation: mooodycowCsFadeIn 0.3s ease;
}
.mooodycow-cs-panel.is-active {
    display: block;
}
@keyframes mooodycowCsFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.mooodycow-cs-panel-title {
    margin: 0 0 16px 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #001953;
}
/* Accent line before title */
.mooodycow-cs-panel-title--accent {
    display: flex;
    align-items: center;
    gap: 14px;
}
.mooodycow-cs-panel-title--accent::before {
    content: '';
    flex-shrink: 0;
    width: 30px;
    height: 2px;
    background-color: #001953;
}
.mooodycow-cs-panel-body {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}
.mooodycow-cs-panel-body p:first-child { margin-top: 0; }
.mooodycow-cs-panel-body p:last-child  { margin-bottom: 0; }
.mooodycow-cs-panel-body ul { padding-left: 20px; margin: 12px 0; }
.mooodycow-cs-panel-body li { margin-bottom: 6px; }

/* Long panel content must not force the layout wider than the screen */
.mooodycow-cs-panel-body img,
.mooodycow-cs-panel-body pre,
.mooodycow-cs-panel-body table { max-width: 100%; }
.mooodycow-cs-panel-body table { display: block; overflow-x: auto; }
.mooodycow-cs-panel-body { overflow-wrap: break-word; word-break: break-word; }

/* Tablet: narrow the sidebar rather than letting it squeeze the panel */
@media (max-width: 1024px) {
    .mooodycow-cs-wrap { gap: 28px; }
    .mooodycow-cs-tabs { flex: 0 0 38%; max-width: 38%; }
    .mooodycow-cs-tab  { padding: 14px 16px; font-size: 15px; }
}

/* Mobile: stack, full width tabs */
@media (max-width: 767px) {
    .mooodycow-cs-wrap {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
    }
    /* Stacked, so the tabs always span the full width. !important is
       required to beat the per-element CSS the Tab Column Width control
       generates, which is more specific than this rule. */
    .mooodycow-cs-tabs {
        flex: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .mooodycow-cs-tab {
        padding: 14px 16px;
        font-size: 15px;
    }
}

/* ── Contact Block ── */
.mooodycow-cb-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1.2;
    color: #001953;
    margin: 0 0 16px 0;
}
.mooodycow-cb-accent {
    width: 40px;
    height: 3px;
    background-color: #C0392B;
    margin-bottom: 24px;
}
.mooodycow-cb-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mooodycow-cb-main {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    color: #001953;
    text-decoration: none;
    transition: color 0.25s ease;
}
a.mooodycow-cb-main:hover {
    text-decoration: none;
}
.mooodycow-cb-sub {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    margin-top: 4px;
}

/* ── Case Reel Marquee ── */
.mooodycow-crm {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
}
.mooodycow-crm-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 60px;
    animation: var(--mooodycow-crm-anim, mooodycowCrmLeft) var(--mooodycow-crm-speed, 30s) linear infinite;
}
.mooodycow-crm--pause:hover .mooodycow-crm-track {
    animation-play-state: paused;
}

.mooodycow-crm-logo {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: opacity 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}
.mooodycow-crm-logo img {
    display: block;
    height: 50px;
    max-width: 160px;
    width: auto;
    object-fit: contain;
}

/* Grayscale option */
.mooodycow-crm--grayscale .mooodycow-crm-logo img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}
.mooodycow-crm--grayscale .mooodycow-crm-logo:hover img {
    filter: grayscale(0%);
}

/* Keyframes */
@keyframes mooodycowCrmLeft {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes mooodycowCrmRight {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* Mobile direction override */
@media (max-width: 767px) {
    .mooodycow-crm-track {
        animation-name: var(--mooodycow-crm-anim-mob, mooodycowCrmLeft);
    }
}

/* ── Step Strip ── */
.mooodycow-ss-strip {
    background-color: #1A1A1A;
    border-radius: 8px;
    overflow: hidden;
}
.mooodycow-ss-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,0.15);
    border-top-style: solid;
}
.mooodycow-ss-step {
    padding: 24px 20px;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-left-style: solid;
}
.mooodycow-ss-step--first {
    border-left-color: transparent !important;
}
.mooodycow-ss-label {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    color: #22c55e;
    margin-bottom: 10px;
}
.mooodycow-ss-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin-bottom: 8px;
}
.mooodycow-ss-sub {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.45);
}

/* Wrap behaviour — hide left border on row-starters */
@media (max-width: 1024px) {
    .mooodycow-ss-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    /* 1st, 4th items start rows → no left border */
    .mooodycow-ss-step:nth-child(3n+1) {
        border-left-color: transparent !important;
    }
}
@media (max-width: 600px) {
    .mooodycow-ss-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .mooodycow-ss-step:nth-child(3n+1) {
        border-left-color: inherit;
    }
    .mooodycow-ss-step:nth-child(2n+1) {
        border-left-color: transparent !important;
    }
}

/* ── Feature Grid ── */
.mooodycow-fg-wrap {
    background-color: #141414;
    border-radius: 8px;
    overflow: hidden;
}
.mooodycow-fg-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-top-style: solid;
    background-color: rgba(255,255,255,0.08);
}
.mooodycow-fg-cell {
    padding: 36px 32px;
    background-color: #141414;
    border-color: rgba(255,255,255,0.08);
}
.mooodycow-fg-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 16px 0;
}
.mooodycow-fg-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.5);
}

/* ── Info List ── */
.mooodycow-il {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
}
.mooodycow-il--glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mooodycow-il-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}
.mooodycow-il-item {
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255,255,255,0.55);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mooodycow-il-item:last-child {
    border-bottom: 0;
}

/* ── Spec Table ── */
.mooodycow-spt {
    background-color: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 32px;
}
.mooodycow-spt--glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.mooodycow-spt-title {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
    color: #FFFFFF;
    margin: 0 0 20px 0;
}
.mooodycow-spt-row {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mooodycow-spt-row:last-child {
    border-bottom: 0;
}
.mooodycow-spt-label {
    flex: 0 0 40%;
    max-width: 40%;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #FFFFFF;
}
.mooodycow-spt-value {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.5);
    text-align: right;
}
@media (max-width: 600px) {
    .mooodycow-spt-row {
        flex-direction: column;
        gap: 4px;
    }
    .mooodycow-spt-label {
        flex: none;
        max-width: 100%;
    }
    .mooodycow-spt-value {
        text-align: left;
    }
}

/* ── Quote Block ── */
.mooodycow-qb {
    position: relative;
    background-color: rgba(255,255,255,0.04);
    padding: 28px 36px;
    border-radius: 6px;
    margin: 0;
    border: 0;
}
.mooodycow-qb--glass {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
/* Accent bar — pseudo-element positioned by modifier class */
.mooodycow-qb::before {
    content: '';
    position: absolute;
    background-color: #22c55e;
    border-radius: 2px;
}
.mooodycow-qb--left::before {
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}
.mooodycow-qb--right::before {
    right: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}
.mooodycow-qb--top::before {
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.mooodycow-qb--bottom::before {
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
}
.mooodycow-qb-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}
.mooodycow-qb-attr {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255,255,255,0.35);
    margin-top: 12px;
    font-style: normal;
}

/* ── Numbered Grid ── */
.mooodycow-ng-wrap { background-color: #141414; border-radius: 8px; overflow: hidden; }
.mooodycow-ng-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-top: 1px solid rgba(255,255,255,0.12); background-color: rgba(255,255,255,0.08); }
.mooodycow-ng-cell { padding: 36px 32px; background-color: #141414; }
.mooodycow-ng-label { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; line-height: 1.4; color: #22c55e; margin-bottom: 12px; }
.mooodycow-ng-title { font-size: 24px; font-weight: 700; line-height: 1.25; color: #FFFFFF; margin: 0 0 14px 0; }
.mooodycow-ng-desc { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.5); }

/* ── Highlight Grid ── */
.mooodycow-hg-wrap { background-color: #141414; border-radius: 8px; overflow: hidden; }
.mooodycow-hg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; border-top: 1px solid rgba(255,255,255,0.12); background-color: rgba(255,255,255,0.08); }
.mooodycow-hg-cell { padding: 36px 32px; background-color: #141414; display: flex; flex-direction: column; }
.mooodycow-hg-title { font-size: 20px; font-weight: 700; line-height: 1.3; color: #FFFFFF; margin: 0 0 16px 0; }
.mooodycow-hg-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.5); flex: 1; }
.mooodycow-hg-hl { font-size: 15px; font-weight: 700; line-height: 1.4; color: #22c55e; margin-top: 20px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); }

/* ── Badge Grid ── */
.mooodycow-bg-wrap { background-color: #0a0a0f; border-radius: 8px; overflow: hidden; }
.mooodycow-bg-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; border-top: 1px solid rgba(255,255,255,0.12); background-color: rgba(255,255,255,0.08); }
.mooodycow-bg-cell { padding: 36px 32px; background-color: #0a0a0f; display: flex; flex-direction: column; }
.mooodycow-bg-num { font-size: 15px; font-weight: 700; color: #001953; margin-bottom: 8px; }
.mooodycow-bg-title { font-size: 24px; font-weight: 700; line-height: 1.25; color: #FFFFFF; margin: 0 0 14px 0; }
.mooodycow-bg-desc { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.5); flex: 1; }
.mooodycow-bg-badge { display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #FFFFFF; background-color: rgba(0,25,83,0.4); border: 1px solid rgba(0,25,83,0.6); padding: 8px 16px; border-radius: 20px; margin-top: 20px; }

/* ── Process Cards ── */
.mooodycow-pc-wrap { background-color: #0a0a0f; border-radius: 8px; overflow: hidden; }
.mooodycow-pc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; border-top: 1px solid rgba(255,255,255,0.12); background-color: rgba(255,255,255,0.08); }
.mooodycow-pc-cell { padding: 32px 28px; background-color: #0a0a0f; }
.mooodycow-pc-num { font-size: 36px; font-weight: 700; line-height: 1; color: #001953; margin-bottom: 16px; }
.mooodycow-pc-title { font-size: 20px; font-weight: 700; line-height: 1.3; color: #FFFFFF; margin: 0 0 12px 0; }
.mooodycow-pc-desc { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.45); }

/* ── Values Block ── */
.mooodycow-vb-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.mooodycow-vb-card { background-color: #F0F3F8; border-radius: 10px; padding: 32px 24px; text-align: center; }
.mooodycow-vb-media { margin-bottom: 14px; line-height: 1; }
.mooodycow-vb-emoji { font-size: 32px; line-height: 1; }
.mooodycow-vb-icon { display: inline-flex; color: #001953; }
.mooodycow-vb-icon i, .mooodycow-vb-icon svg { font-size: 32px; width: 32px; height: 32px; }
.mooodycow-vb-img img { width: 32px; height: 32px; object-fit: contain; display: block; margin: 0 auto; }
.mooodycow-vb-title { font-family: Verdana, Geneva, sans-serif; font-size: 18px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 10px 0; }
.mooodycow-vb-desc { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; }

/* ── Practices Block ── */
.mooodycow-prb-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.mooodycow-prb-card { background-color: #FFFFFF; border-radius: 8px; padding: 28px 24px; display: flex; flex-direction: column; overflow: hidden; position: relative; }
.mooodycow-prb-accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; }
.mooodycow-prb-num { font-family: Verdana, Geneva, sans-serif; font-size: 14px; color: #8899AA; margin-bottom: 4px; }
.mooodycow-prb-title { font-family: Verdana, Geneva, sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 14px 0; }
.mooodycow-prb-content { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; flex: 1; }
.mooodycow-prb-content ul { padding-left: 18px; margin: 0; }
.mooodycow-prb-content li { margin-bottom: 8px; }
.mooodycow-prb-content li:last-child { margin-bottom: 0; }
.mooodycow-prb-outcome { display: inline-block; align-self: flex-start; font-family: Verdana, Geneva, sans-serif; font-size: 13px; font-weight: 700; line-height: 1.4; color: #FFFFFF; padding: 10px 16px; border-radius: 6px; margin-top: 20px; }

/* ── Differentiator Block ── */
.mooodycow-dif-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0; }
.mooodycow-dif-card { padding: 28px 28px; border-left: 3px solid #001953; border-left-style: solid; }
.mooodycow-dif-title { font-family: Verdana, Geneva, sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 10px 0; }
.mooodycow-dif-desc { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; }

/* ── Reasons Grid ── */
.mooodycow-rg-wrap { border: 1px solid #001953; border-radius: 8px; overflow: hidden; }
.mooodycow-rg-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background-color: #001953; }
.mooodycow-rg-cell { padding: 32px 28px; background-color: #FFFFFF; }
.mooodycow-rg-cell--feat { background-color: #001953; }
.mooodycow-rg-num { font-family: Verdana, Geneva, sans-serif; font-size: 40px; font-weight: 700; line-height: 1; color: rgba(0,25,83,0.15); margin-bottom: 8px; }
.mooodycow-rg-cell--feat .mooodycow-rg-num { color: rgba(255,255,255,0.2); }
.mooodycow-rg-title { font-family: Verdana, Geneva, sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 10px 0; }
.mooodycow-rg-cell--feat .mooodycow-rg-title { color: #FFFFFF; }
.mooodycow-rg-desc { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; }
.mooodycow-rg-cell--feat .mooodycow-rg-desc { color: rgba(255,255,255,0.7); }

/* ── Partnership Grid ── */
.mooodycow-pag-wrap { overflow: hidden; }
.mooodycow-pag-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background-color: #E0E0E0; }
.mooodycow-pag-cell { padding: 28px; background-color: #FFFFFF; border-left: 3px solid transparent; }
.mooodycow-pag-cell:nth-child(odd) { border-left-color: #001953; }
.mooodycow-pag-title { font-family: Verdana, Geneva, sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 10px 0; }
.mooodycow-pag-desc { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; }

/* ── Bullet List ── */
.mooodycow-blt-list { display: flex; flex-direction: column; gap: 14px; }
.mooodycow-blt-item { display: flex; align-items: flex-start; gap: 12px; }
.mooodycow-blt-marker { flex-shrink: 0; margin-top: 0.45em; }
.mooodycow-blt-dot { width: 8px; height: 8px; border-radius: 50%; background-color: #22c55e; }
.mooodycow-blt-square { width: 8px; height: 8px; border-radius: 0; background-color: #22c55e; }
.mooodycow-blt-dash { width: 12px; height: 2px; border-radius: 1px; background-color: #22c55e; margin-top: 0.6em; }
.mooodycow-blt-check { position: relative; width: 8px; height: 5px; }
.mooodycow-blt-check::before { content: ''; position: absolute; left: 0; top: 0; width: 100%; height: 100%; border-left: 2px solid #22c55e; border-bottom: 2px solid #22c55e; transform: rotate(-45deg); }
.mooodycow-blt-text { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #001953; }

/* ── Service Areas ── */
.mooodycow-sag-wrap { border: 1px solid rgba(0,25,83,0.1); border-radius: 8px; overflow: hidden; }
.mooodycow-sag-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background-color: rgba(0,25,83,0.08); }
.mooodycow-sag-grid--orphan .mooodycow-sag-card:nth-child(odd):last-child { grid-column: 1 / -1; }
.mooodycow-sag-card { padding: 28px; background-color: #FFFFFF; display: flex; flex-direction: column; }
.mooodycow-sag-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.mooodycow-sag-media { flex-shrink: 0; line-height: 1; }
.mooodycow-sag-emoji { font-size: 28px; line-height: 1; }
.mooodycow-sag-icon { display: inline-flex; color: #001953; }
.mooodycow-sag-icon i, .mooodycow-sag-icon svg { font-size: 28px; width: 28px; height: 28px; }
.mooodycow-sag-img img { width: 28px; height: 28px; object-fit: contain; }
.mooodycow-sag-label { font-family: Verdana, Geneva, sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #22c55e; margin-bottom: 2px; }
.mooodycow-sag-title { font-family: Verdana, Geneva, sans-serif; font-size: 17px; font-weight: 700; line-height: 1.3; color: #001953; }
.mooodycow-sag-desc { font-family: Verdana, Geneva, sans-serif; font-size: 15px; line-height: 1.6; color: #555; margin-bottom: 16px; flex: 1; }
.mooodycow-sag-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.mooodycow-sag-tag { font-family: Verdana, Geneva, sans-serif; font-size: 12px; line-height: 1.3; color: #001953; padding: 5px 12px; border: 1px solid rgba(0,25,83,0.2); border-radius: 4px; }

/* ── Engagement Overview ── */
.mooodycow-eo { position: relative; background-color: #FFFFFF; border: 1px solid rgba(0,25,83,0.1); border-radius: 8px; padding: 28px 32px; overflow: hidden; }
.mooodycow-eo::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background-color: #001953; }
.mooodycow-eo-title { font-family: Verdana, Geneva, sans-serif; font-size: 18px; font-weight: 700; line-height: 1.3; color: #001953; margin: 0 0 20px 0; }
.mooodycow-eo-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 14px 0; border-bottom: 1px solid rgba(0,25,83,0.08); }
.mooodycow-eo-row:last-child { border-bottom: 0; }
.mooodycow-eo-label { font-family: Verdana, Geneva, sans-serif; font-size: 15px; font-weight: 700; color: #001953; }
.mooodycow-eo-value { font-family: Verdana, Geneva, sans-serif; font-size: 15px; color: #555; text-align: right; }
@media (max-width: 600px) { .mooodycow-eo-row { flex-direction: column; gap: 4px; } .mooodycow-eo-value { text-align: left; } }

/* ── Popup Form ── */
.mooodycow-pf-wrapper { position: fixed; inset: 0; z-index: 99999; display: flex; align-items: center; justify-content: center; padding: 20px; pointer-events: none; visibility: hidden; }
.mooodycow-pf-wrapper.is-open { pointer-events: auto; visibility: visible; }
.mooodycow-pf-wrapper.is-closing { pointer-events: none; }

/* Overlay */
.mooodycow-pf-overlay { position: absolute; inset: 0; background-color: rgba(0,10,30,0.65); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); opacity: 0; transition: opacity 0.3s ease; }
.mooodycow-pf-wrapper.is-open .mooodycow-pf-overlay { opacity: 1; }
.mooodycow-pf-wrapper.is-closing .mooodycow-pf-overlay { opacity: 0; }

/* Modal */
.mooodycow-pf-modal { position: relative; max-width: 520px; width: 100%; max-height: 90vh; overflow: hidden; background-color: #FFFFFF; border-radius: 14px; border: 1px solid rgba(0,25,83,0.1); box-shadow: 0 25px 80px rgba(0,10,30,0.35), 0 0 0 1px rgba(0,0,0,0.05); opacity: 0; transform: translateY(20px) scale(0.97); transition: opacity 0.3s ease, transform 0.3s ease; display: flex; flex-direction: column; }
.mooodycow-pf-wrapper.is-open .mooodycow-pf-modal { opacity: 1; transform: translateY(0) scale(1); }
.mooodycow-pf-wrapper.is-closing .mooodycow-pf-modal { opacity: 0; transform: translateY(20px) scale(0.97); }

/* Accent bar */
.mooodycow-pf-accent { height: 4px; background-color: #001953; flex-shrink: 0; }

/* Close */
.mooodycow-pf-close { position: absolute; top: 20px; right: 20px; width: 36px; height: 36px; border: none !important; background: rgba(0,25,83,0.06) !important; border-radius: 50% !important; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 16px; color: #001953; transition: background 0.2s; z-index: 10; font-family: sans-serif; box-shadow: none !important; }
.mooodycow-pf-close:hover { background: rgba(0,25,83,0.12) !important; }

/* Body — scrollable */
.mooodycow-pf-body { padding: 36px 36px 32px; overflow-y: auto; flex: 1; }
.mooodycow-pf-header { margin-bottom: 24px; }
.mooodycow-pf-title { font-family: Verdana, Geneva, sans-serif; font-size: 24px; font-weight: 700; color: #001953; margin: 0 0 8px; line-height: 1.2; }
.mooodycow-pf-subtitle { font-family: Verdana, Geneva, sans-serif; font-size: 14px; color: #5A6A7A; margin: 0; line-height: 1.5; }

/* Fields grid */
.mooodycow-pf-fields { display: flex; flex-wrap: wrap; gap: 0 16px; }
.mooodycow-pf-field { width: 100%; margin-bottom: 16px; }
.mooodycow-pf-field--half { width: calc(50% - 8px); }
.mooodycow-pf-label { display: block; font-family: Verdana, Geneva, sans-serif; font-size: 13px; font-weight: 700; color: #001953; margin-bottom: 6px; letter-spacing: 0.02em; }
.mooodycow-pf-req { color: #22c55e; margin-left: 3px; }
.mooodycow-pf-input, .mooodycow-pf-textarea, .mooodycow-pf-select { width: 100%; padding: 12px 14px; border: 1px solid rgba(0,25,83,0.12); border-radius: 6px; font-family: Verdana, Geneva, sans-serif; font-size: 14px; color: #001953; outline: none; transition: border-color 0.2s; background: #FFFFFF; box-sizing: border-box; -webkit-appearance: none; appearance: none; }
.mooodycow-pf-input:focus, .mooodycow-pf-textarea:focus, .mooodycow-pf-select:focus { border-color: #001953; }
.mooodycow-pf-textarea { resize: vertical; }
.mooodycow-pf-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23001953' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }

/* Submit */
.mooodycow-pf-submit { width: 100%; padding: 14px 24px; background-color: #001953 !important; color: #FFFFFF !important; border: none !important; border-radius: 8px !important; font-family: Verdana, Geneva, sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: background-color 0.25s; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 4px; box-shadow: none !important; }
.mooodycow-pf-submit:hover { background-color: #04007C !important; }
.mooodycow-pf-submit:disabled { opacity: 0.6; cursor: wait; }
.mooodycow-pf-arrow { font-size: 18px; line-height: 1; }

/* Success */
.mooodycow-pf-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px 20px; min-height: 200px; animation: mooodycowPfFadeIn 0.4s ease; }
.mooodycow-pf-success-icon { width: 56px; height: 56px; border-radius: 50%; background: #22c55e; color: #fff; font-size: 28px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.mooodycow-pf-success-msg { font-family: Verdana, Geneva, sans-serif; font-size: 16px; color: #001953; line-height: 1.5; max-width: 360px; }
@keyframes mooodycowPfFadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }

/* Privacy */
.mooodycow-pf-privacy { font-family: Verdana, Geneva, sans-serif; font-size: 11px; color: #8899AA; margin: 14px 0 0; line-height: 1.5; text-align: center; }

/* Mobile */
@media (max-width: 600px) {
    .mooodycow-pf-body { padding: 28px 20px 24px; }
    .mooodycow-pf-field--half { width: 100%; }
    .mooodycow-pf-title { font-size: 20px; }
}

/* ============================================================
   Outcome Timeline  (mooodycow-ot-)  — added v1.53.0
   Structure only; colours, type and sizing set via controls.
   ============================================================ */
.mooodycow-ot{position:relative}
.mooodycow-ot-eyebrow{font-weight:600;letter-spacing:.16em;text-transform:uppercase;font-size:12px;line-height:1.4}
.mooodycow-ot-heading{margin:0;line-height:1.15}
.mooodycow-ot-nodes{position:relative;display:flex}
.mooodycow-ot-node{position:relative;z-index:1;display:flex}
.mooodycow-ot-marker{position:relative;flex:0 0 auto;border-radius:50%;display:flex;align-items:center;justify-content:center;box-sizing:border-box}
.mooodycow-ot-marker::after{content:"";display:block;border-radius:50%}
.mooodycow-ot-content{display:block}
.mooodycow-ot-text{line-height:1.35;transition:color .2s ease}

/* Horizontal */
.mooodycow-ot--horizontal .mooodycow-ot-nodes{flex-direction:row}
.mooodycow-ot--horizontal .mooodycow-ot-node{flex:1 1 0;flex-direction:column;padding:0 18px}
.mooodycow-ot--horizontal .mooodycow-ot-nodes::before{content:"";position:absolute;top:calc(var(--mooodycow-ot-marker-half,14px));left:8%;right:8%;height:var(--mooodycow-ot-line-w,2px);background:var(--mooodycow-ot-line,rgba(255,255,255,.55));z-index:0}
.mooodycow-ot--horizontal .mooodycow-ot-marker{margin-bottom:20px}

/* Vertical */
.mooodycow-ot--vertical .mooodycow-ot-nodes{flex-direction:column;gap:26px}
.mooodycow-ot--vertical .mooodycow-ot-node{flex-direction:row;align-items:flex-start}
.mooodycow-ot--vertical .mooodycow-ot-marker{margin-right:20px}
.mooodycow-ot--vertical .mooodycow-ot-nodes::before{content:"";position:absolute;left:calc(var(--mooodycow-ot-marker-half,14px));top:0;bottom:0;width:var(--mooodycow-ot-line-w,2px);background:var(--mooodycow-ot-line,rgba(255,255,255,.55));z-index:0}

/* Horizontal collapses to vertical on mobile */
@media(max-width:767px){
  .mooodycow-ot--horizontal .mooodycow-ot-nodes{flex-direction:column;gap:26px}
  .mooodycow-ot--horizontal .mooodycow-ot-node{flex-direction:row;padding:0;align-items:flex-start}
  .mooodycow-ot--horizontal .mooodycow-ot-marker{margin:0 20px 0 0}
  .mooodycow-ot--horizontal .mooodycow-ot-nodes::before{top:0;bottom:0;left:calc(var(--mooodycow-ot-marker-half,14px));right:auto;width:var(--mooodycow-ot-line-w,2px);height:auto}
}


/* ============================================================
   FAQ Accordion  (mcfaq-)   v1.58.0
   Matches the Management Consultancy prototype exactly:
   plain white background, navy question text, divider lines,
   circular + icon (right) that rotates 45deg and fills navy on
   open, answer fully clipped when closed.
   Backgrounds are forced transparent with !important so the
   WP theme's global button/section styles cannot bleed in.
   ============================================================ */

.mcfaq-list {
    max-width: 100%;
    --mcfaq-line:       #e4e7ee;
    --mcfaq-line-w:     1px;
    --mcfaq-q-pad:      22px;
    --mcfaq-icon-size:  26px;
    border-top: var(--mcfaq-line-w) solid var(--mcfaq-line);
    list-style: none;
    margin: 0;
    padding: 0;
    background: transparent !important;
}

.mcfaq-item {
    border-bottom: var(--mcfaq-line-w) solid var(--mcfaq-line);
    background: transparent !important;
    background-color: transparent !important;
}

/* ── Question button ──────────────────────────────────────────
   Explicit reset of every property the theme could paint.
   !important on the cosmetic resets beats theme button rules
   regardless of their specificity or load order.            */
.mcfaq-btn {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    white-space: normal !important;
    margin: 0 !important;
    padding-top: var(--mcfaq-q-pad) !important;
    padding-bottom: var(--mcfaq-q-pad) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    cursor: pointer;
    text-align: left;
    box-sizing: border-box;
    font-family: inherit;
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-transform: none;
    text-shadow: none;
    min-height: 0;
    max-width: 100%;
    min-width: 0;
}
.mcfaq-btn:hover,
.mcfaq-btn:focus,
.mcfaq-btn:active {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
.mcfaq-btn:focus-visible {
    outline: 2px solid #001953;
    outline-offset: 2px;
}

/* ── Question text ───────────────────────────────────────── */
.mcfaq-q-text {
    flex: 1 1 auto !important;
    min-width: 0 !important;          /* lets the flex item shrink below its content width */
    max-width: 100%;
    white-space: normal !important;   /* beats theme rules that set nowrap on buttons */
    overflow-wrap: anywhere;
    word-break: break-word;
    text-align: left;
    line-height: 1.4;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #001953;
    margin: 0;
    padding: 0;
    transition: color 0.2s ease;
}

/* ── Toggle icon: + inside a circle, right-hand side ─────── */
.mcfaq-icon {
    flex: 0 0 auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width:  var(--mcfaq-icon-size);
    height: var(--mcfaq-icon-size);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    font-family: inherit;
    line-height: 1;
    border-radius: 50%;
    border: 1px solid #d3d8e3;
    box-sizing: border-box;
    color: #001953;
    background-color: transparent;
    transition: transform 0.25s ease, background-color 0.2s ease,
                border-color 0.2s ease, color 0.2s ease;
    user-select: none;
    -webkit-user-select: none;
}
.mcfaq-item.is-open .mcfaq-icon {
    transform: rotate(45deg);
    background-color: #001953;
    border-color: #001953;
    color: #ffffff;
}

/* ── Answer: grid-rows slide, fully clipped when closed ──── */
.mcfaq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease;
    background: transparent !important;
}
.mcfaq-item.is-open .mcfaq-a {
    grid-template-rows: 1fr;
}
/* clip layer — the direct grid child MUST hide overflow */
.mcfaq-a-clip {
    overflow: hidden;
    min-height: 0;
    min-width: 0;
    padding: 0 !important;
    margin: 0 !important;
}
.mcfaq-a-inner {
    color: #566073;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: min(72ch, 100%);
    overflow-wrap: break-word;
    word-break: break-word;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 24px;
    margin: 0 !important;
}
.mcfaq-a-inner > :first-child { margin-top: 0; }
.mcfaq-a-inner > :last-child  { margin-bottom: 0; }
.mcfaq-a-inner p { color: inherit; }
.mcfaq-a-inner img,
.mcfaq-a-inner table,
.mcfaq-a-inner pre { max-width: 100%; }
.mcfaq-a-inner table { display: block; overflow-x: auto; }

/* ── Mobile and tablet sizing ─────────────────────────────── */
@media (max-width: 1024px) {
    .mcfaq-list { max-width: 100%; }
    .mcfaq-btn  { gap: 14px; }
}
@media (max-width: 767px) {
    .mcfaq-list {
        --mcfaq-q-pad: 18px;
        --mcfaq-icon-size: 24px;
    }
    .mcfaq-btn     { gap: 12px; }
    .mcfaq-q-text  { font-size: 16px; line-height: 1.45; }
    .mcfaq-a-inner { font-size: 15px; padding-bottom: 20px; }
}

@media (prefers-reduced-motion: reduce) {
    .mcfaq-icon { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
    .mcfaq-a    { transition: none; }
}

/* ============================================================
   Pill List  (mooodycow-pl-)  v1.54.0  — structure only
   ============================================================ */
.mooodycow-pl{display:flex;flex-wrap:wrap;gap:10px}
.mooodycow-pl-item{display:inline-flex;align-items:center;border-style:solid;transition:background-color .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease}

/* ============================================================
   Capability Cards  (mooodycow-cc-)  v1.54.0  — structure only
   ============================================================ */
.mooodycow-cc{display:grid;grid-template-columns:repeat(3,minmax(0,1fr))}
.mooodycow-cc-card{display:flex;align-items:center;box-sizing:border-box;border-style:solid;transition:background-color .18s ease,border-color .18s ease,box-shadow .18s ease,transform .18s ease}
.mooodycow-cc-icon{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box}
.mooodycow-cc-icon svg{display:block}
.mooodycow-cc-text{line-height:1.35}
@media (prefers-reduced-motion: reduce){ .mooodycow-cc-card{transition:none} }

/* ============================================================
   Checklist  (mooodycow-ckl-)  v1.54.0  — structure only
   ============================================================ */
.mooodycow-ckl{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr))}
.mooodycow-ckl-item{display:flex;align-items:flex-start;border-bottom:0 solid transparent}
.mooodycow-ckl-icon{flex:0 0 auto;display:inline-flex;align-items:center;justify-content:center;box-sizing:border-box}
.mooodycow-ckl-icon svg{display:block}
.mooodycow-ckl-text{line-height:1.45}

/* ============================================================
   Related Pages  (mooodycow-rp-)  v1.55.0
   Structure only — colours, type and sizing via controls.
   ============================================================ */
.mooodycow-rp-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.mooodycow-rp-card{
    display: flex;
    flex-direction: column;
    border-style: solid;
    text-decoration: none;
    box-sizing: border-box;
    transition: background-color .2s ease, border-color .2s ease,
                box-shadow .2s ease, transform .2s ease;
}
.mooodycow-rp-category{
    line-height: 1.4;
}
.mooodycow-rp-title{
    line-height: 1.3;
    letter-spacing: -.01em;
}
.mooodycow-rp-desc{
    line-height: 1.55;
    flex: 1;
}
.mooodycow-rp-link{
    display: inline-flex;
    align-items: center;
    line-height: 1.3;
    text-decoration: none;
    transition: color .2s ease;
}
.mooodycow-rp-link i,
.mooodycow-rp-link svg{
    display: block;
    flex-shrink: 0;
    transition: transform .2s ease;
}
.mooodycow-rp-card:hover .mooodycow-rp-link i,
.mooodycow-rp-card:hover .mooodycow-rp-link svg{
    transform: translateX(3px);
}
@media (max-width: 767px){
    .mooodycow-rp-grid{
        grid-template-columns: 1fr;
    }
}
@media (prefers-reduced-motion: reduce){
    .mooodycow-rp-card,
    .mooodycow-rp-link i,
    .mooodycow-rp-link svg{ transition: none; }
}

/* ============================================================
   Outcome Statement  (mooodycow-os-)  v1.61.0
   Navy panel, inline "Outcome:" prefix, optional accent rule.
   Matches the marketing deck format, adapted to the light theme.
   ============================================================ */
.mooodycow-os {
    background-color: #001953;
    border-radius: 12px;
    padding: 28px 30px;
    box-sizing: border-box;
}
.mooodycow-os-body {
    border-left: 0 solid transparent;
}
.mooodycow-os--rule .mooodycow-os-body {
    border-left: 3px solid #9fb0e0;
    padding-left: 20px;
}
.mooodycow-os-text {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    color: #dfe5f2;
}
.mooodycow-os-prefix {
    color: #ffffff;
    font-weight: 500;
    margin-right: 6px;
}

/* ============================================================
   Step Cards  (mooodycow-sc-)  v1.62.0
   Numbered white cards — the MC "How we engage" pattern.
   ============================================================ */
.mooodycow-sc-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.mooodycow-sc-card {
    background-color: #ffffff;
    border: 1px solid #e4e7ee;
    border-radius: 14px;
    padding: 24px 22px 26px;
    box-sizing: border-box;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, background-color .2s ease;
}
.mooodycow-sc-num {
    font-size: 13px;
    font-weight: 700;
    color: #11337f;
    font-variant-numeric: tabular-nums;
    line-height: 1.3;
    margin-bottom: 14px;
}
.mooodycow-sc-title {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: -.01em;
    color: #001953;
    line-height: 1.3;
    margin-bottom: 8px;
}
.mooodycow-sc-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #566073;
}
/* v2.10.0: desc now runs through wpautop so real line breaks work without
   typing <br>. Margins are zeroed on the first and last paragraph so existing
   single-paragraph content renders exactly as it did before. */
.mooodycow-sc-desc p { margin: 0 0 10px; }
.mooodycow-sc-desc p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
    .mooodycow-sc-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .mooodycow-sc-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .mooodycow-sc-card { transition: none; }
}

/* ============================================================
   Numbered List (inline)  (mooodycow-nl-)  v1.63.0
   Inline number + title, two columns with row dividers.
   Distinct from Numbered Grid (which stacks label/title/desc).
   ============================================================ */
.mooodycow-nl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 40px;
    row-gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}
.mooodycow-nl-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    border-top: 1px solid #e4e7ee;
    padding-top: 16px;
}
.mooodycow-nl-item--nodiv {
    border-top: 0 !important;
    padding-top: 16px;
}
.mooodycow-nl-num {
    flex: 0 0 auto;
    min-width: 24px;
    font-size: 14px;
    font-weight: 700;
    color: #11337f;
    font-variant-numeric: tabular-nums;
    line-height: 1.4;
}
.mooodycow-nl-title {
    font-size: 15.5px;
    font-weight: 400;
    color: #1f2533;
    line-height: 1.4;
}
@media (max-width: 680px) {
    .mooodycow-nl { grid-template-columns: 1fr; }
}

/* ============================================================
   Differentiator Cards / Columns  (mooodycow-dc-)  v1.65.0
   Two layouts via a Layout switch:
   - cards   : bordered card + short top accent bar (default)
   - columns : left accent bar + bold title, no card
   Separate from the original Differentiator Block widget.
   ============================================================ */
.mooodycow-dc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 14px;
    row-gap: 14px;
}
.mooodycow-dc-item { box-sizing: border-box; }

/* ── Cards layout (default) — matches the service-page design ── */
.mooodycow-dc--cards .mooodycow-dc-item {
    background: #ffffff;
    border: 1px solid #e4e7ee;
    border-radius: 14px;
    padding: 22px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background-color .18s ease;
}
.mooodycow-dc--cards .mooodycow-dc-item:hover {
    border-color: #11337f;
    box-shadow: 0 10px 28px rgba(0,25,83,.07);
}
.mooodycow-dc--cards .mooodycow-dc-bar {
    display: block;
    width: 30px;
    height: 3px;
    background: #001953;
    border-radius: 2px;
    margin-bottom: 16px;
}
.mooodycow-dc--cards .mooodycow-dc-item--nobar .mooodycow-dc-bar { display: none; }

/* ── Columns layout — left accent bar + bold title ── */
.mooodycow-dc--columns .mooodycow-dc-bar { display: none; }
.mooodycow-dc--columns .mooodycow-dc-item {
    border-left: 3px solid #001953;
    padding-left: 16px;
}
.mooodycow-dc--columns .mooodycow-dc-item--nobar {
    border-left: 0 !important;
    padding-left: 0 !important;
}

/* ── Shared text ── */
.mooodycow-dc-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -.01em;
    line-height: 1.25;
    color: #001953;
    margin-bottom: 10px;
}
.mooodycow-dc--cards .mooodycow-dc-title { font-size: 17px; }
.mooodycow-dc-desc {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2533;
}
.mooodycow-dc--columns .mooodycow-dc-desc { font-size: 16px; line-height: 1.6; color: #566073; }

@media (max-width: 820px) {
    .mooodycow-dc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
    .mooodycow-dc { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    .mooodycow-dc--cards .mooodycow-dc-item { transition: none; }
}

/* ================================================================
 *  Eyebrow Pill — v1.67.0
 * ================================================================ */
.mooodycow-eb-wrap {
    display: flex;
    width: 100%;
}
.mooodycow-eb {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(17,51,127,0.22);
    background-color: #eef2fb;
    line-height: 1;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.mooodycow-eb-dot {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #11337f;
}
.mooodycow-eb-text {
    color: #11337f;
    line-height: 1.2;
}

/* ================================================================
 *  Detail Card (At a glance) — v1.67.0
 * ================================================================ */
.mooodycow-detail {
    background-color: #fff;
    border: 1px solid #e3e7f0;
    border-radius: 14px;
    padding: 22px 22px 24px;
}
.mooodycow-detail-title {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #11337f;
    margin: 0 0 16px;
}
.mooodycow-detail-row {
    padding: 11px 0;
}
.mooodycow-detail--dividers .mooodycow-detail-row + .mooodycow-detail-row {
    border-top: 1px solid #e3e7f0;
}
.mooodycow-detail-row:first-of-type {
    padding-top: 0;
}
.mooodycow-detail-row:last-of-type {
    padding-bottom: 0;
}
.mooodycow-detail-k {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #566073;
    line-height: 1.3;
}
.mooodycow-detail-v {
    font-size: 15px;
    font-weight: 600;
    color: #001953;
    margin-top: 2px;
    line-height: 1.4;
}

/* ── Detail Card: dynamic pill groups (v1.68.0) ── */
.mooodycow-detail-pillgroup { margin-top: 16px; }
.mooodycow-detail-pillgroup .lab {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #566073;
    margin: 0 0 9px;
}
.mooodycow-detail-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.mooodycow-detail-pill {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500;
    line-height: 1.2;
    color: #001953;
    background-color: #eef2fb;
    border: 1px solid rgba(17,51,127,0.18);
    padding: 5px 11px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}
a.mooodycow-detail-pill:hover {
    background-color: #fff;
    border-color: #11337f;
}

/* ================================================================
 *  Case Study KPIs — v1.70.0
 * ================================================================ */
.mooodycow-csk {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.mooodycow-csk-card {
    background-color: #f5f7fc;
    border: 1px solid #e3e7f0;
    border-top: 3px solid #11337f;
    border-radius: 10px;
    padding: 18px 16px;
}
.mooodycow-csk-num {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #001953;
}
.mooodycow-csk-label {
    font-size: 13px;
    color: #566073;
    margin-top: 9px;
    line-height: 1.35;
}

/* ================================================================
 *  Case Study Quote — v1.70.0
 * ================================================================ */
.mooodycow-csq--ruled {
    border-top: 1px solid #e3e7f0;
    border-bottom: 1px solid #e3e7f0;
    padding: 34px 0;
}
.mooodycow-csq-text {
    margin: 0;
    font-size: 23px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.4;
    letter-spacing: -0.01em;
    color: #001953;
}
.mooodycow-csq-mark {
    color: #11337f;
    font-weight: 700;
    font-style: normal;
    margin-right: 2px;
}
.mooodycow-csq-by {
    margin: 18px 0 0;
    font-size: 14px;
    color: #566073;
}
.mooodycow-csq-name {
    font-weight: 600;
    color: #001953;
}

/* ================================================================
 *  Case Study Standfirst — v1.70.0
 * ================================================================ */
.mooodycow-css-text {
    margin: 0;
    font-size: 19px;
    line-height: 1.55;
    color: #566073;
    max-width: 62ch;
}

/* ================================================================
 *  Case Study Checklist — v1.72.0
 * ================================================================ */
.mooodycow-cscl {
    width: 100%;
}
.mooodycow-cscl--card {
    background-color: #f5f7fc;
    border: 1px solid #e3e7f0;
    border-radius: 14px;
    padding: 26px 28px;
}
.mooodycow-cscl-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: #001953;
    margin: 0 0 18px;
}
.mooodycow-cscl-heading-t2 {
    color: #9fb0e0;
}
.mooodycow-cscl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.mooodycow-cscl-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 5px 0;
}
.mooodycow-cscl--dividers .mooodycow-cscl-item + .mooodycow-cscl-item {
    border-top: 1px solid #e3e7f0;
}
.mooodycow-cscl-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #1f2533;
    flex: 1;
    min-width: 0;
}

/* Bullet shapes */
.mooodycow-cscl-bullet {
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    background-color: #11337f;
    margin-top: 5px;
}
.mooodycow-cscl-bullet--diamond {
    border-radius: 2px;
    transform: rotate(45deg);
}
.mooodycow-cscl-bullet--disc {
    border-radius: 50%;
    transform: none;
}
.mooodycow-cscl-bullet--square {
    border-radius: 2px;
    transform: none;
}

/* ================================================================
 *  CS Body Sections — v1.75.0
 * ================================================================ */
.mooodycow-csb { width: 100%; }
.mooodycow-csb-heading { letter-spacing: -0.01em; margin-top: 0; }
.mooodycow-csb-accent { color: #4F6281; }
.mooodycow-csb-body { margin: 0; }

/* Outcome Statement panel */
.mooodycow-cs-outcome {
    background-color: #001953;
    border-left: 4px solid #4F6281;
    border-radius: 14px;
    padding: 24px 28px;
}
.mooodycow-cs-outcome-body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #dfe6f7;
}
.mooodycow-cs-outcome-label {
    font-weight: 700;
    color: #9fb0e0;
}

/* ================================================================
 *  CS Post Title — v1.76.0
 * ================================================================ */
.mooodycow-cs-title {
    font-size: clamp(30px, 4.4vw, 46px);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: #001953;
    margin: 0;
}
.mooodycow-cs-title-accent {
    color: #4F6281;
}

/* ================================================================
 *  CS Services Used — v1.77.0
 * ================================================================ */
.mooodycow-csu { width: 100%; }
.mooodycow-csu-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #566073;
    margin: 0 0 10px;
}
.mooodycow-csu-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}
.mooodycow-csu-pill {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500;
    color: #001953;
    background-color: #eef2fb;
    border: 1px solid rgba(0,25,83,0.18);
    padding: 5px 13px 5px 9px;
    border-radius: 999px;
    text-decoration: none;
    line-height: 1.2;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
a.mooodycow-csu-pill:hover {
    background-color: #ffffff;
    border-color: #001953;
    color: #001953;
}

/* ================================================================
 *  CS Body section rich text output — v1.81.0
 *  Maximum specificity to beat Hello Elementor's p { margin: 0 }
 * ================================================================ */
.elementor-widget-mooodycow-cs-background .mooodycow-csb-body p,
.elementor-widget-mooodycow-cs-challenge .mooodycow-csb-body p,
.elementor-widget-mooodycow-cs-solution .mooodycow-csb-body p,
.elementor-widget-mooodycow-cs-lookahead .mooodycow-csb-body p {
    margin-top: 0 !important;
    margin-bottom: 1em !important;
}
.elementor-widget-mooodycow-cs-background .mooodycow-csb-body p:last-child,
.elementor-widget-mooodycow-cs-challenge .mooodycow-csb-body p:last-child,
.elementor-widget-mooodycow-cs-solution .mooodycow-csb-body p:last-child,
.elementor-widget-mooodycow-cs-lookahead .mooodycow-csb-body p:last-child {
    margin-bottom: 0 !important;
}

.elementor-widget-mooodycow-cs-background .mooodycow-csb-body ul,
.elementor-widget-mooodycow-cs-challenge .mooodycow-csb-body ul,
.elementor-widget-mooodycow-cs-solution .mooodycow-csb-body ul,
.elementor-widget-mooodycow-cs-lookahead .mooodycow-csb-body ul {
    list-style: disc !important;
    padding-left: 1.4em !important;
    margin: 0 0 1em !important;
}
.elementor-widget-mooodycow-cs-background .mooodycow-csb-body ol,
.elementor-widget-mooodycow-cs-challenge .mooodycow-csb-body ol,
.elementor-widget-mooodycow-cs-solution .mooodycow-csb-body ol,
.elementor-widget-mooodycow-cs-lookahead .mooodycow-csb-body ol {
    list-style: decimal !important;
    padding-left: 1.4em !important;
    margin: 0 0 1em !important;
}
.elementor-widget-mooodycow-cs-background .mooodycow-csb-body li,
.elementor-widget-mooodycow-cs-challenge .mooodycow-csb-body li,
.elementor-widget-mooodycow-cs-solution .mooodycow-csb-body li,
.elementor-widget-mooodycow-cs-lookahead .mooodycow-csb-body li {
    margin-bottom: 0.35em !important;
}

.mooodycow-csb-body strong,
.mooodycow-cs-outcome-body strong { font-weight: 700; }
.mooodycow-csb-body em,
.mooodycow-cs-outcome-body em { font-style: italic; }
.mooodycow-csb-body a { color: #11337f; text-decoration: underline; }
.mooodycow-csb-body a:hover { color: #001953; }

/* ================================================================
 *  CS Services Used — v1.80.0 (image flip-cards + mobile pills)
 * ================================================================ */
.mooodycow-csu { width: 100%; }

.mooodycow-csu-label {
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #566073;
    margin: 0 0 12px;
}

/* Desktop grid */
.mooodycow-csu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

/* Card */
.mooodycow-csu-card {
    position: relative;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}
.mooodycow-csu-card-link {
    position: absolute;
    inset: 0;
    z-index: 4;
}
.mooodycow-csu-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}
.mooodycow-csu-card:hover .mooodycow-csu-bg {
    transform: scale(1.05);
}
.mooodycow-csu-overlay {
    position: absolute;
    inset: 0;
    transition: opacity 0.4s ease;
}
.mooodycow-csu-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.mooodycow-csu-card:hover .mooodycow-csu-hover {
    opacity: 1;
}
.mooodycow-csu-card:hover .mooodycow-csu-overlay {
    opacity: 0;
}

/* Front face */
.mooodycow-csu-front {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.mooodycow-csu-card:hover .mooodycow-csu-front {
    opacity: 0;
}
.mooodycow-csu-front-title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* Back face */
.mooodycow-csu-back {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mooodycow-csu-card:hover .mooodycow-csu-back {
    opacity: 1;
    transform: translateY(0);
}
.mooodycow-csu-back-title {
    margin: 0 0 8px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.mooodycow-csu-back-desc {
    margin: 0 0 12px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255,255,255,0.85);
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.mooodycow-csu-cta {
    font-size: 12.5px;
    font-weight: 600;
    color: #fff;
    display: inline-block;
}

/* Mobile pills — shown only below 768px */
.mooodycow-csu-mobile { display: none; }
.mooodycow-csu-desktop { display: grid; }

@media (max-width: 767px) {
    .mooodycow-csu-desktop { display: none; }
    .mooodycow-csu-mobile  { display: flex; flex-wrap: wrap; gap: 7px; }
}

/* Mobile pill styles */
.mooodycow-csu-pill {
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500;
    color: #001953;
    background-color: #eef2fb;
    border: 1px solid rgba(0,25,83,0.18);
    padding: 5px 13px;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color .15s ease, border-color .15s ease;
}
a.mooodycow-csu-pill:hover {
    background-color: #fff;
    border-color: #001953;
}

/* ================================================================
 *  Sticky sidebar fix — v1.80.0
 *  Elementor's built-in sticky has a z-index / transform conflict.
 *  Add class  mooodycow-sticky-sidebar  to the sidebar COLUMN only.
 *  Do NOT add any class to the parent row — leave it untouched.
 * ================================================================ */
.mooodycow-sticky-sidebar {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 90px;
    align-self: flex-start !important;
    transform: none !important;
    will-change: auto !important;
}

/* Kill Elementor Pro's JS-driven sticky on anything inside the sidebar column */
.mooodycow-sticky-sidebar .elementor-sticky--active,
.mooodycow-sticky-sidebar .elementor-sticky--effects,
.mooodycow-sticky-sidebar [data-elementor-sticky] {
    position: static !important;
    top: auto !important;
    transform: none !important;
    will-change: auto !important;
}

/* ================================================================
 *  CS Related Case Studies widget — v1.84.0
 * ================================================================ */
.mooodycow-csr { width: 100%; }
.mooodycow-csr-heading {
    font-size: 28px;
    font-weight: 700;
    color: #001953;
    margin: 0 0 28px;
    letter-spacing: -0.01em;
}
.mooodycow-csr-heading-accent { color: #4F6281; }
.mooodycow-csr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
@media (max-width: 900px) { .mooodycow-csr-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .mooodycow-csr-grid { grid-template-columns: 1fr; } }

.mooodycow-csr-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3e7f0;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .2s ease, box-shadow .2s ease;
}
.mooodycow-csr-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,25,83,.1);
    border-color: transparent;
}
.mooodycow-csr-thumb {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #001953, #11337f);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}
.mooodycow-csr-thumb--placeholder {
    background: linear-gradient(135deg, #001953, #11337f);
}
.mooodycow-csr-body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.mooodycow-csr-tag {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #11337f;
    margin: 0 0 8px;
}
.mooodycow-csr-title {
    font-size: 17px;
    font-weight: 700;
    color: #001953;
    margin: 0 0 8px;
    line-height: 1.25;
}
.mooodycow-csr-excerpt {
    font-size: 13.5px;
    color: #566073;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
}
.mooodycow-csr-link {
    font-size: 13px;
    font-weight: 600;
    color: #11337f;
    margin-top: auto;
}

/* csr-btn removed v1.89.0 — widget now outputs mooodycow-cs3-* classes */

/* ================================================================
 *  Case Study Category Cards — v1.85.0
 * ================================================================ */
.mooodycow-ccc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
@media (max-width: 900px) { .mooodycow-ccc-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px)  { .mooodycow-ccc-grid { grid-template-columns: 1fr; } }

.mooodycow-ccc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e3e7f0;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.mooodycow-ccc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,25,83,.12);
    border-color: transparent;
}

/* Image */
.mooodycow-ccc-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #001953, #11337f);
}
.mooodycow-ccc-img--placeholder {
    background: linear-gradient(135deg, #001953, #11337f);
}
.mooodycow-ccc-img-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .4s ease;
}
.mooodycow-ccc-zoom { transition: transform .4s ease; }
.mooodycow-ccc-card:hover .mooodycow-ccc-img-inner {
    transform: scale(1.06);
}

/* Body */
.mooodycow-ccc-body {
    padding: 24px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    text-align: center;
}
.mooodycow-ccc-title {
    font-size: 24px;
    font-weight: 600;
    color: #001953;
    margin: 0 0 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
.mooodycow-ccc-sub {
    font-size: 15px;
    font-weight: 700;
    color: #001953;
    margin: 0 0 8px;
}
.mooodycow-ccc-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #566073;
    margin: 0;
}

/* ================================================================
 *  Case Links — v1.87.0
 * ================================================================ */
.mooodycow-cl { width: 100%; }

.mooodycow-cl-title {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.3;
}

.mooodycow-cl-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mooodycow-cl-item { display: block; }

.mooodycow-cl-item + .mooodycow-cl-item { margin-top: 12px; }

.mooodycow-cl-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    text-decoration: none;
    transition: color .18s ease;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.mooodycow-cl-link:hover { color: #9fb0e0; }

.mooodycow-cl-link--underline:hover { text-decoration: underline; }

.mooodycow-cl-icon {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.mooodycow-cl-icon i,
.mooodycow-cl-icon svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
    color: #9fb0e0;
    fill: #9fb0e0;
}

.mooodycow-cl-text { flex: 1; min-width: 0; }

/* ================================================================
 *  Case Icons — v1.88.0
 * ================================================================ */
.mooodycow-ci-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}
.mooodycow-ci-item {
    display: flex;
    align-items: center;
    gap: 5px;
}
.mooodycow-ci-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background-color: rgba(255,255,255,0.1);
    border: 0 solid transparent;
    color: #ffffff;
    text-decoration: none;
    flex-shrink: 0;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.mooodycow-ci-btn:hover {
    background-color: #11337f;
}
.mooodycow-ci-btn i,
.mooodycow-ci-btn svg {
    font-size: 16px;
    width: 16px;
    height: 16px;
    color: inherit;
    fill: currentColor;
}
.mooodycow-ci-label--visible {
    font-size: 11px;
    font-weight: 500;
    color: #9fb0e0;
}
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* ================================================================
 *  CS Hero (latest/featured case study) — v1.97.0
 * ================================================================ */
.mooodycow-csh {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 48px;
    width: 100%;
}
.mooodycow-csh-media {
    display: block;
    flex: 0 0 50%;
    max-width: 50%;
    height: 420px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    text-decoration: none;
}
.mooodycow-csh-content {
    flex: 1 1 auto;
    min-width: 0;
}
.mooodycow-csh-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #11337f;
    margin: 0 0 12px;
}
.mooodycow-csh-title {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 16px;
    color: #001953;
    letter-spacing: -0.01em;
}
.mooodycow-csh-title a {
    color: inherit;
    text-decoration: none;
}
.mooodycow-csh-title a:hover { text-decoration: underline; }
.mooodycow-csh-standfirst {
    font-size: 17px;
    line-height: 1.6;
    color: #566073;
    margin: 0 0 24px;
}
.mooodycow-csh-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 0 0 28px;
}
.mooodycow-csh-meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.mooodycow-csh-meta-k {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8794ad;
}
.mooodycow-csh-meta-v {
    font-size: 15px;
    font-weight: 600;
    color: #001953;
}
.mooodycow-csh-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #001953;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 28px;
    border-radius: 9px;
    text-decoration: none;
    transition: background-color .2s ease;
}
.mooodycow-csh-btn:hover { background-color: #11337f; }
.mooodycow-csh-btn-arrow { font-size: 18px; line-height: 1; }

/* Stack on mobile */
@media (max-width: 767px) {
    .mooodycow-csh--stack { flex-direction: column !important; }
    .mooodycow-csh--stack .mooodycow-csh-media {
        flex: 0 0 auto !important;
        max-width: 100% !important;
        width: 100%;
        height: 260px;
    }
    .mooodycow-csh-title { font-size: 28px; }
}

/* ================================================================
 *  Contact Form widget — v1.98.0
 * ================================================================ */
.mooodycow-cf { width: 100%; }
.mooodycow-cf-fields {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}
.mooodycow-cf-field {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
}
.mooodycow-cf-field--half {
    flex: 1 1 calc(50% - 11px);
    min-width: 220px;
}
.mooodycow-cf-label {
    font-size: 15px;
    font-weight: 600;
    color: #001953;
    margin-bottom: 8px;
}
.mooodycow-cf-req { color: #c0392b; margin-left: 2px; }

.mooodycow-cf-input,
.mooodycow-cf-textarea,
.mooodycow-cf-select {
    width: 100%;
    font-size: 15px;
    color: #1d2327;
    background-color: #fff;
    border: 1px solid #d3d9e4;
    border-radius: 10px;
    padding: 14px 16px;
    box-sizing: border-box;
    transition: border-color .15s ease, box-shadow .15s ease;
    font-family: inherit;
}
.mooodycow-cf-input:focus,
.mooodycow-cf-textarea:focus,
.mooodycow-cf-select:focus {
    outline: none;
    border-color: #001953;
    box-shadow: 0 0 0 3px rgba(0,25,83,.08);
}
.mooodycow-cf-input::placeholder,
.mooodycow-cf-textarea::placeholder { color: #9aa5b8; }
.mooodycow-cf-textarea { resize: vertical; min-height: 130px; }
.mooodycow-cf-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23566073' d='M6 8L0 0h12z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }

/* Helper text — always visible colour, fixes the white-on-white issue */
.mooodycow-cf-help {
    font-size: 13px;
    color: #566073;
    margin-top: 6px;
    font-style: italic;
}

/* File input */
.mooodycow-cf-file {
    padding: 10px 16px;
    cursor: pointer;
}

/* Phone with flag */
.mooodycow-cf-tel-wrap {
    display: flex;
    align-items: stretch;
    border: 1px solid #d3d9e4;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}
.mooodycow-cf-tel-wrap .mooodycow-cf-tel-code {
    border: none;
    background: transparent;
    padding: 0 8px 0 14px;
    font-size: 15px;
    color: #1d2327;
    cursor: pointer;
    border-right: 1px solid #e3e7f0;
    border-radius: 0;
    max-width: 110px;
}
.mooodycow-cf-tel-wrap .mooodycow-cf-tel-input {
    border: none;
    border-radius: 0;
    flex: 1;
}
.mooodycow-cf-tel-wrap .mooodycow-cf-tel-input:focus { box-shadow: none; }
.mooodycow-cf-tel-wrap:focus-within { border-color: #001953; box-shadow: 0 0 0 3px rgba(0,25,83,.08); }

/* Submit button */
.mooodycow-cf-submit {
    margin-top: 24px;
    display: inline-block;
    border: none;
    cursor: pointer;
    background-color: #1e2a44;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 24px;
    border-radius: 8px;
    transition: background-color .2s ease;
    font-family: inherit;
}
.mooodycow-cf-submit:hover { background-color: #001953; }
.mooodycow-cf-submit:disabled { opacity: .6; cursor: default; }

.mooodycow-cf-invalid {
    border-color: #c0392b !important;
}

.mooodycow-cf-privacy {
    margin-top: 14px;
    text-align: center;
}

/* Success state */
.mooodycow-cf-success {
    text-align: center;
    padding: 40px 20px;
}
.mooodycow-cf-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mooodycow-cf-success-msg {
    font-size: 17px;
    color: #001953;
    font-weight: 500;
    line-height: 1.5;
}

@media (max-width: 600px) {
    .mooodycow-cf-field--half { flex: 1 1 100%; }
}

/* ================================================================
 *  Blog widgets — v1.99.0
 * ================================================================ */
.mooodycow-blog-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    color: #001953;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.mooodycow-blog-title-accent { color: #4F6281; }

.mooodycow-blog-standfirst {
    font-size: 20px;
    line-height: 1.6;
    color: #566073;
    margin: 0 0 32px;
}

/* Body wrapper — centred reading column */
.mooodycow-blog-body {
    max-width: 760px;
    margin: 0 auto;
}

.mooodycow-blog-p {
    font-size: 17px;
    line-height: 1.7;
    color: #2a2f3a;
    margin: 0 0 22px;
}
.mooodycow-blog-p a {
    color: #11337f;
    text-decoration: underline;
}
.mooodycow-blog-p a:hover { color: #001953; }

.mooodycow-blog-sub {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #001953;
    margin: 36px 0 14px;
}
.mooodycow-blog-sub-accent { color: #4F6281; }

.mooodycow-blog-quote {
    border-left: 4px solid #4F6281;
    padding: 4px 0 4px 24px;
    margin: 28px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.mooodycow-blog-quote-text {
    font-size: 22px;
    font-weight: 500;
    font-style: italic;
    line-height: 1.5;
    color: #001953;
}
.mooodycow-blog-quote-cite {
    font-size: 14px;
    font-style: normal;
    color: #8794ad;
}

.mooodycow-blog-list {
    margin: 0 0 22px;
    padding-left: 1.4em;
    list-style: disc;
    display: block !important;
}
.mooodycow-blog-list li {
    font-size: 17px;
    line-height: 1.6;
    color: #2a2f3a;
    margin-bottom: 8px;
    display: list-item !important;
    list-style-position: outside !important;
    width: auto !important;
    float: none !important;
}
.mooodycow-blog-list li::marker { color: #4F6281; }

.mooodycow-blog-img {
    margin: 28px 0;
    text-align: center;
}
.mooodycow-blog-img img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
}
.mooodycow-blog-img figcaption {
    font-size: 14px;
    color: #8794ad;
    margin-top: 10px;
    font-style: italic;
}

@media (max-width: 767px) {
    .mooodycow-blog-title { font-size: 32px; }
    .mooodycow-blog-standfirst { font-size: 18px; }
    .mooodycow-blog-sub { font-size: 24px; }
    .mooodycow-blog-quote-text { font-size: 19px; }
}

/* ================================================================
 *  Blog Hero — v2.0.0
 * ================================================================ */
.mooodycow-bh {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 440px;
    width: 100%;
    background-color: #001953;
    overflow: hidden;
}
.mooodycow-bh-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    z-index: 1;
}
.mooodycow-bh-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
}
.mooodycow-bh-inner {
    position: relative;
    z-index: 3;
    padding: 48px;
    max-width: 720px;
    width: 100%;
}
.mooodycow-bh-meta {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #9fb0e0;
    margin: 0 0 14px;
}
.mooodycow-bh-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.12;
    color: #fff;
    margin: 0;
    letter-spacing: -0.01em;
}
.mooodycow-bh-title-accent { color: #9fb0e0; }
.mooodycow-bh-standfirst {
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255,255,255,0.9);
    margin: 18px 0 0;
    max-width: 640px;
}

@media (max-width: 767px) {
    .mooodycow-bh { min-height: 320px; }
    .mooodycow-bh-inner { padding: 28px 22px; }
    .mooodycow-bh-title { font-size: 30px; }
    .mooodycow-bh-standfirst { font-size: 16px; }
}

/* Blog numbered list — v2.1.0 */
.mooodycow-blog-list--numbered {
    list-style: decimal !important;
}
.mooodycow-blog-list--numbered li {
    display: list-item !important;
}

/* ================================================================
 *  Reasons Grid — Separated Cards variant — v2.6.0
 *  Structure only. All colours come from the widget's Elementor
 *  controls so nothing here competes with or overrides them.
 * ================================================================ */
.mooodycow-rg-wrap.mooodycow-rg--sep {
    border: none;
    border-radius: 0;
    overflow: visible;
}
.mooodycow-rg--sep .mooodycow-rg-grid {
    gap: 22px;
    background-color: transparent;
}
.mooodycow-rg--sep .mooodycow-rg-cell {
    border: 1px solid transparent;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mooodycow-rg--sep .mooodycow-rg-cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
}
.mooodycow-rg--sep.mooodycow-rg--hover .mooodycow-rg-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(0,25,83,.10);
}
/* Icon box — structure only */
.mooodycow-rg-icon {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.mooodycow-rg-icon svg { width: 22px; height: 22px; }
.mooodycow-rg-icon i { font-size: 22px; }

/* ============================================================
   Pillar Cards  (mooodycow-plc-)  v2.7.0
   Bordered cards with a PER-CARD accent bar (inline colour),
   optional icon, title and rich description. Accent colour is
   set per item via inline style so each card can differ.
   Structure-only defaults; Elementor controls override.
   Prefix is -plc- to avoid clashing with process-cards (-pc-).
   ============================================================ */
.mooodycow-plc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.mooodycow-plc-item {
    position: relative;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid #e4e7ee;
    border-radius: 14px;
    padding: 32px 28px;
    overflow: hidden;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mooodycow-plc-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: transparent; /* colour comes from per-card inline accent; empty accent = no bar rendered */
}
.mooodycow-plc-icon {
    display: block;
    line-height: 0;
    margin-bottom: 16px;
}
.mooodycow-plc-icon svg { width: 28px; height: 28px; fill: currentColor; }
.mooodycow-plc-icon i   { font-size: 28px; }
.mooodycow-plc-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 12px;
    color: #001953;
}
.mooodycow-plc-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #566073;
}
.mooodycow-plc-desc p { margin: 0 0 12px; }
.mooodycow-plc-desc p:last-child { margin-bottom: 0; }
.mooodycow-plc-desc strong,
.mooodycow-plc-desc b { color: #001953; }

@media (max-width: 1024px) {
    .mooodycow-plc { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
    .mooodycow-plc { grid-template-columns: 1fr; }
}

/* ============================================================
   List Card  (mooodycow-lcd-)  v2.9.0
   Card with a title and a repeater-driven list. Every item is a
   real field, so dividers can sit between individual items.
   Prefix -lcd- avoids process-cards (-pc-) and pillar-cards (-plc-).
   ============================================================ */
.mooodycow-lcd { box-sizing: border-box; display: flex; flex-direction: column; }
/* v2.10.0: when Match height is on, the list fills the remaining space so all
   cards in a row finish level regardless of how many items each one holds. */
.mooodycow-lcd-list { flex: 1 1 auto; align-content: start; }
.mooodycow-lcd.is-card {
    background: #ffffff;
    border: 1px solid #e3e7f0;
    border-radius: 12px;
    padding: 28px 26px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.mooodycow-lcd-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.25;
    color: #001953;
    margin: 0 0 14px;
}
.mooodycow-lcd-list { display: grid; grid-template-columns: 1fr; column-gap: 32px; }
.mooodycow-lcd-item {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 9px 0;
    border-bottom: 0 solid #e3e7f0;
}
.mooodycow-lcd.has-dividers .mooodycow-lcd-item { border-bottom-width: 1px; }
.mooodycow-lcd.has-dividers .mooodycow-lcd-item.is-last { border-bottom-width: 0; }
.mooodycow-lcd.has-dividers.divide-last .mooodycow-lcd-item.is-last { border-bottom-width: 1px; }
.mooodycow-lcd-marker { flex: none; color: #11337f; line-height: 1; }
.mooodycow-lcd-marker.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #11337f;
    position: relative;
    top: -2px;
}
.mooodycow-lcd-marker svg { width: 14px; height: 14px; fill: currentColor; }
.mooodycow-lcd-text { font-size: 15px; line-height: 1.6; color: #566073; }

/* ================================================================
 *  Latest Insights - compact mobile layout (opt in)
 *  Only applies when the widget's "Compact Mobile Layout" switch is
 *  on, and only below 768px. Desktop rendering is untouched.
 * ================================================================ */
.mooodycow-li-thumb { display: none; }

@media (max-width: 767px) {

    .mooodycow-li-wrapper--mcompact .mooodycow-li-row {
        display: grid;
        grid-template-columns: 84px 1fr;
        grid-template-areas: "thumb meta" "thumb title";
        align-items: start;
        column-gap: 14px;
        row-gap: 4px;
        padding: 16px 4px;
        gap: 0 14px;
    }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-thumb {
        display: block;
        grid-area: thumb;
        width: 84px;
        height: 84px;
        border-radius: 8px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        background-color: #eef1f6;
    }

    /* The desktop hover image has no purpose on touch devices */
    .mooodycow-li-wrapper--mcompact .mooodycow-li-hover-img { display: none !important; }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-meta {
        grid-area: meta;
        display: flex;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        gap: 8px;
        flex: none;
        max-width: none;
        margin: 0 0 2px;
    }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-date {
        font-size: 11px;
        letter-spacing: .06em;
        margin: 0;
    }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-badge {
        font-size: 10px;
        padding: 2px 8px;
        margin: 0;
    }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-post-title {
        grid-area: title;
        font-size: 16px;
        line-height: 1.35;
        margin: 0;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* The whole row is tappable, so the arrow is redundant */
    .mooodycow-li-wrapper--mcompact .mooodycow-li-arrow { display: none; }

    .mooodycow-li-wrapper--mcompact .mooodycow-li-row:hover {
        background-color: transparent;
        border-radius: 0;
    }
}

/* ================================================================
 *  Case Study 3 Block - separate post count for mobile
 *  The query fetches the larger of the two counts; these rules hide
 *  the surplus cards below 768px.
 * ================================================================ */
@media (max-width: 767px) {
    .mooodycow-cs3-grid--m1 .mooodycow-cs3-card:nth-child(n+2),
    .mooodycow-cs3-grid--m2 .mooodycow-cs3-card:nth-child(n+3),
    .mooodycow-cs3-grid--m3 .mooodycow-cs3-card:nth-child(n+4),
    .mooodycow-cs3-grid--m4 .mooodycow-cs3-card:nth-child(n+5),
    .mooodycow-cs3-grid--m5 .mooodycow-cs3-card:nth-child(n+6),
    .mooodycow-cs3-grid--m6 .mooodycow-cs3-card:nth-child(n+7),
    .mooodycow-cs3-grid--m7 .mooodycow-cs3-card:nth-child(n+8),
    .mooodycow-cs3-grid--m8 .mooodycow-cs3-card:nth-child(n+9),
    .mooodycow-cs3-grid--m9 .mooodycow-cs3-card:nth-child(n+10),
    .mooodycow-cs3-grid--m10 .mooodycow-cs3-card:nth-child(n+11),
    .mooodycow-cs3-grid--m11 .mooodycow-cs3-card:nth-child(n+12) {
        display: none;
    }
}

/* ================================================================
 *  Linked Services - tighter card interior on smaller screens,
 *  so more of the description fits without a taller card.
 * ================================================================ */
@media (max-width: 1024px) {
    .mooodycow-tb-back { padding: 22px; }
    .mooodycow-tb-back-title { font-size: 19px; margin-bottom: 12px; }
    .mooodycow-tb-back-desc { font-size: 14px; line-height: 1.5; margin-bottom: 14px; }
}
@media (max-width: 767px) {
    .mooodycow-tb-back { padding: 18px; }
    .mooodycow-tb-back-title { font-size: 17px; margin-bottom: 10px; }
    .mooodycow-tb-back-desc { font-size: 13.5px; line-height: 1.45; margin-bottom: 12px; }
    .mooodycow-tb-cta { font-size: 14px; }
}

/* ── Copyright ── */
.mooodycow-cr {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #566073;
}
.mooodycow-cr-strong {
    font-weight: 700;
    color: #3a4256;
}
