﻿/* fa-crane-mro.php */

  .breadcrumb {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .75rem;
    color: rgba(255,255,255,.5);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
  }
  .breadcrumb a {
    color: rgba(255,255,255,.5);
    transition: color .2s;
  }
  .breadcrumb a:hover { color: rgba(255,255,255,.85); }
  .breadcrumb-sep { opacity: .4; }

  .cmro-hero {
    position: relative;
    overflow: hidden;
    padding-top: 68px;
    background: var(--navy-700);
    min-height: 460px;
    display: flex;
    align-items: flex-end;
  }
  .cmro-hero__bg {
    position: absolute;
    inset: 0;
    background: url('../img/crane-mro-hero.jpg') center center / cover no-repeat;
  }
  .cmro-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,33,70,.94) 0%, rgba(53,57,104,.84) 55%, rgba(26,26,26,.68) 100%);
  }
  .cmro-hero__accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(135deg, transparent 58%, rgba(243,115,33,.07) 100%);
    pointer-events: none;
  }
  .cmro-hero__content {
    position: relative;
    z-index: 2;
    padding: var(--sp-2xl) 0 var(--sp-xl);
    width: 100%;
  }
  .cmro-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin-bottom: 1.25rem;
  }
  .cmro-hero__eyebrow::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--orange-500);
  }
  .cmro-hero__heading {
    color: var(--white);
    max-width: 860px;
  }
  .cmro-hero__heading em {
    font-style: normal;
    color: var(--orange-500);
  }
  .cmro-hero__sub {
    margin-top: 1.2rem;
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,.74);
    max-width: 760px;
    line-height: 1.7;
  }

  .cmro-section-menu {
    background: #f4f4f4;
    border-top: 1px solid rgba(0,0,0,.04);
    border-bottom: 1px solid rgba(0,0,0,.08);
  }
  .cmro-section-menu__inner {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .cmro-section-menu__inner::-webkit-scrollbar {
    display: none;
  }
  .cmro-section-menu__btn {
    position: relative;
    appearance: none;
    border: 0;
    background: transparent;
    color: #7b7b7b;
    font-size: .95rem;
    font-weight: 700;
    padding: 1.15rem 1.25rem;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s ease;
  }
  .cmro-section-menu__btn::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: transparent;
    transition: background .2s ease;
  }
  .cmro-section-menu__btn:hover,
  .cmro-section-menu__btn.is-active {
    color: var(--orange-500);
  }
  .cmro-section-menu__btn.is-active::after {
    background: var(--orange-500);
  }

  .overline {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange-500);
  }
  .overline::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--orange-500);
    flex-shrink: 0;
  }
  .divider {
    width: 48px;
    height: 3px;
    background: var(--orange-500);
    margin: .9rem 0 1.5rem;
    border-radius: 2px;
  }

  .cmro-pane {
    display: none;
    padding: var(--sp-2xl) 0 2rem;
    background: var(--grey-50);
    border-top: 1px solid var(--sand);
  }
  .cmro-pane.is-active {
    display: block;
  }

  .cmro-pane__head {
    margin-bottom: 2rem;
  }
  .cmro-pane__head h2 {
    max-width: 32ch;
  }
  .cmro-pane__lead {
    max-width: 980px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-weight: 300;
  }

  .cmro-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
    align-items: start;
  }

  .cmro-overview-card {
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 22px;
    box-shadow: 0 4px 18px rgba(0,0,0,.04);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background-color .25s ease;
    overflow: hidden;
  }

  .cmro-overview-card:hover,
  .cmro-overview-card.is-active {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(0,0,0,.07);
    border-color: rgba(243,115,33,.32);
  }

  .cmro-overview-card.is-active {
    background: #fffaf6;
  }

  .cmro-overview-card__trigger {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 1.35rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    cursor: pointer;
  }

  .cmro-overview-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: rgba(243,115,33,.09);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex: 0 0 50px;
  }
  .cmro-overview-card__icon::before,
  .cmro-overview-card__icon::after {
    content: '';
    position: absolute;
    background: var(--orange-500);
    opacity: .9;
  }

  .cmro-overview-card__icon--pm::before { width: 22px; height: 2px; }
  .cmro-overview-card__icon--pm::after { width: 2px; height: 22px; }

  .cmro-overview-card__icon--repair::before {
    width: 24px;
    height: 10px;
    border-radius: 8px;
    transform: rotate(-24deg);
  }
  .cmro-overview-card__icon--repair::after {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    right: 10px;
    bottom: 10px;
  }

  .cmro-overview-card__icon--inspect::before {
    width: 18px;
    height: 18px;
    border: 2px solid var(--orange-500);
    border-radius: 50%;
    background: transparent;
    left: 12px;
    top: 12px;
  }
  .cmro-overview-card__icon--inspect::after {
    width: 12px;
    height: 2px;
    border-radius: 2px;
    right: 10px;
    bottom: 12px;
    transform: rotate(45deg);
  }

  .cmro-overview-card__icon--spare::before {
    width: 22px;
    height: 14px;
    border-radius: 3px;
  }
  .cmro-overview-card__icon--spare::after {
    width: 22px;
    height: 2px;
    bottom: 14px;
  }

  .cmro-overview-card__icon--iot::before {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--orange-500);
    background: transparent;
  }
  .cmro-overview-card__icon--iot::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .cmro-overview-card__icon--predictive::before {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px dashed var(--orange-500);
    background: transparent;
  }
  .cmro-overview-card__icon--predictive::after {
    width: 6px;
    height: 6px;
    border-radius: 50%;
  }

  .cmro-overview-card__title {
    flex: 1;
    min-width: 0;
  }

  .cmro-overview-card__title h3 {
    font-size: 1.02rem;
    color: var(--grey-900);
    margin: 0;
    line-height: 1.45;
  }

  .cmro-overview-card__arrow {
    width: 14px;
    height: 14px;
    position: relative;
    flex: 0 0 14px;
  }
  .cmro-overview-card__arrow::before,
  .cmro-overview-card__arrow::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 2px;
    background: var(--orange-500);
    border-radius: 2px;
    transition: transform .22s ease;
  }
  .cmro-overview-card__arrow::before {
    left: 0;
    transform: translateY(-50%) rotate(45deg);
  }
  .cmro-overview-card__arrow::after {
    right: 0;
    transform: translateY(-50%) rotate(-45deg);
  }
  .cmro-overview-card.is-active .cmro-overview-card__arrow::before {
    transform: translateY(-50%) rotate(-45deg);
  }
  .cmro-overview-card.is-active .cmro-overview-card__arrow::after {
    transform: translateY(-50%) rotate(45deg);
  }

  .cmro-overview-card__content {
    display: none;
    padding: 0 1.25rem 1.35rem;
    border-top: 1px solid rgba(199,187,159,.55);
  }
  .cmro-overview-card.is-active .cmro-overview-card__content {
    display: block;
    animation: cmroCardOpen .28s ease;
  }

  @keyframes cmroCardOpen {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .cmro-overview-card__list {
    margin: .95rem 0 0;
    padding: 0;
    list-style: none;
  }

  .cmro-overview-card__list li {
    position: relative;
    padding-left: .95rem;
    font-size: .9rem;
    line-height: 1.8;
    color: var(--grey-600);
    font-weight: 300;
    margin-bottom: .45rem;
  }
  .cmro-overview-card__list li:last-child {
    margin-bottom: 0;
  }
  .cmro-overview-card__list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-500);
    font-weight: 700;
  }

  .cmro-toggle-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
    align-items: flex-start;
  }

  .cmro-toggle {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    min-height: 52px;
    max-width: 100%;
    padding: 0 1.2rem;
    border-radius: 999px;
    border: 2px solid var(--orange-500);
    background: var(--white);
    color: var(--orange-500);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    flex-shrink: 0;
    transform: scale(1);
    transition:
      background-color .22s ease,
      color .22s ease,
      box-shadow .28s ease,
      transform .42s cubic-bezier(.22, 1.2, .36, 1);
  }

  .cmro-toggle__label {
    flex-shrink: 0;
  }

  .cmro-toggle__meta {
    display: inline-flex;
    align-items: center;
    gap: .95rem;
    max-width: 0;
    opacity: 0;
    overflow: hidden;
    white-space: nowrap;
    transition:
      max-width .42s cubic-bezier(.22, 1.2, .36, 1),
      opacity .22s ease;
  }

  .cmro-toggle__meta span {
    position: relative;
    padding-left: .72rem;
    font-size: .82rem;
    font-weight: 500;
    line-height: 1;
  }

  .cmro-toggle__meta span::before {
    content: 'ㆍ';
    position: absolute;
    left: 0;
    top: 0;
  }

  .cmro-toggle:hover,
  .cmro-toggle.active {
    background: var(--orange-500);
    color: var(--white);
    transform: scale(1.04);
    box-shadow: 0 12px 24px rgba(243,115,33,.18);
  }

  .cmro-toggle:hover .cmro-toggle__meta,
  .cmro-toggle.active .cmro-toggle__meta {
    max-width: 760px;
    opacity: 1;
  }

  .cmro-expand-panel {
    display: none;
    margin-top: 1.75rem;
    background: var(--white);
    border: 1px solid var(--sand);
    border-radius: 24px;
    padding: 1.75rem;
    box-shadow: 0 6px 24px rgba(0,0,0,.05);
  }
  .cmro-expand-panel.is-open {
    display: block;
    animation: cmroPanelOpen .28s ease;
  }

  @keyframes cmroPanelOpen {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .cmro-expand-panel__header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--sand);
  }
  .cmro-expand-panel__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange-500);
    margin-bottom: .5rem;
  }
  .cmro-expand-panel__eyebrow::before {
    content: '';
    width: 18px;
    height: 2px;
    background: currentColor;
  }
  .cmro-expand-panel__title {
    font-size: 1.35rem;
    color: var(--grey-900);
    line-height: 1.3;
  }

  .cmro-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .cmro-detail-card {
    background: var(--grey-50);
    border: 1px solid var(--sand);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0,0,0,.03);
    transition: box-shadow .25s ease, transform .25s ease;
  }
  .cmro-detail-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    transform: translateY(-2px);
  }
  .cmro-detail-card__media {
    width: 100%;
    aspect-ratio: 16/9;
    background: var(--grey-100);
    overflow: hidden;
    position: relative;
  }
  .cmro-detail-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
  }
  .cmro-detail-card:hover .cmro-detail-card__media img {
    transform: scale(1.03);
  }
  .cmro-detail-card__media--empty {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
  }
  .cmro-detail-card__media--empty::before {
    content: '';
    width: 44px;
    height: 44px;
    background: var(--grey-200);
    border-radius: 10px;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }
  .cmro-detail-card__media--empty::after {
    content: 'Image placeholder';
    font-size: .72rem;
    color: var(--grey-400);
    font-weight: 500;
    letter-spacing: .04em;
  }
  .cmro-detail-card__body {
    padding: 1.2rem 1.25rem 1.25rem;
    flex: 1;
  }
  .cmro-detail-card__body h4 {
    font-size: 1rem;
    color: var(--grey-900);
    margin-bottom: .8rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid var(--sand);
  }
  .cmro-detail-card__body ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .cmro-detail-card__body li {
    position: relative;
    padding-left: .85rem;
    font-size: .84rem;
    line-height: 1.7;
    color: var(--grey-600);
    font-weight: 300;
    margin-bottom: .42rem;
  }
  .cmro-detail-card__body li:last-child {
    margin-bottom: 0;
  }
  .cmro-detail-card__body li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--orange-500);
    font-weight: 700;
  }

  .cmro-concept {
    padding: 0 0 var(--sp-2xl);
    background: var(--grey-50);
    margin-top: -2rem;
  }

  .cmro-concept__head {
    margin-bottom: 1.5rem;
  }

  .cmro-concept__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 700;
    color: var(--grey-900);
    margin-bottom: .8rem;
  }

  .cmro-concept__eyebrow::before {
    content: '';
    width: 16px;
    height: 16px;
    border: 4px solid var(--orange-500);
    border-radius: 50%;
    box-sizing: border-box;
    display: inline-block;
  }

  .cmro-concept__line {
    display: none;
  }

  .cmro-concept__layout {
    display: grid;
    grid-template-columns: 350px minmax(420px, 620px);
    gap: 3rem;
    align-items: start;
    max-width: 1020px;
    margin: 0 auto;
  }

  .cmro-concept__diagram {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .cmro-concept__diagram img {
    display: block;
    width: min(100%, 350px);
    max-width: 350px;
    margin: 0;
    height: auto;
  }

  .cmro-concept__accordion {
    min-width: 0;
    width: 100%;
    padding-top: 0;
  }

  .cmro-concept__service {
    border: 1px solid #b9b2aa;
    background: #f7f3ef;
    overflow: hidden;
  }

  .cmro-concept__service + .cmro-concept__service {
    margin-top: .6rem;
  }

  .cmro-concept__service-head {
    width: 100%;
    background: #ead9cb;
    border: 0;
    font-size: .92rem;
    font-weight: 700;
    color: #2e2e2e;
    text-align: left;
    padding: .7rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-family: inherit;
  }

  .cmro-concept__service.is-open .cmro-concept__service-head {
    border-bottom: 1px solid #b9b2aa;
  }

  .cmro-concept__service-arrow {
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform .2s ease;
    flex: 0 0 12px;
  }

  .cmro-concept__service.is-open .cmro-concept__service-arrow {
    transform: rotate(-135deg) translate(-2px, -2px);
  }

  .cmro-concept__service-body {
    display: none;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1rem 1.15rem 1.1rem;
    align-items: start;
  }

  .cmro-concept__service.is-open .cmro-concept__service-body {
    display: grid;
    animation: cmroPanelOpen .24s ease;
  }

  .cmro-concept__copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .cmro-concept__copy li {
    position: relative;
    padding-left: .95rem;
    font-size: .95rem;
    line-height: 1.75;
    color: #3a3a3a;
    margin-bottom: 1rem;
    font-weight: 400;
  }

  .cmro-concept__copy li:last-child {
    margin-bottom: 0;
  }

  .cmro-concept__copy li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: #111;
  }

  .cmro-concept__copy strong {
    color: #111;
    font-weight: 700;
  }

  .cmro-concept__visual {
    min-width: 0;
  }

  .cmro-concept__image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f2f2f2 0%, #e9e9e9 100%);
    border: 1px solid var(--sand);
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cmro-concept__image::before {
    content: '';
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #d8d8d8;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Crect x='3' y='3' width='18' height='18' rx='2'/%3E%3Ccircle cx='8.5' cy='8.5' r='1.5'/%3E%3Cpath d='M21 15l-5-5L5 21'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
  }

  .cmro-concept__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .cmro-concept__image:has(img)::before {
    display: none;
  }

  .cmro-concept__caption {
    margin-top: .65rem;
    font-size: .85rem;
    line-height: 1.6;
    color: var(--grey-500);
  }

  .cmro-cta {
    padding: 0 0 var(--sp-2xl);
    background: var(--grey-50);
  }
  .cmro-cta__box {
    background: linear-gradient(135deg, var(--navy-700) 0%, var(--navy-600) 100%);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 2rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
    position: relative;
  }
  .cmro-cta__box::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 32%;
    height: 100%;
    background: linear-gradient(135deg, transparent 35%, rgba(243,115,33,.12) 100%);
    pointer-events: none;
  }
  .cmro-cta__copy {
    position: relative;
    z-index: 1;
    max-width: 700px;
  }
  .cmro-cta__copy h2 {
    color: var(--white);
    margin-bottom: .55rem;
  }
  .cmro-cta__copy p {
    color: rgba(255,255,255,.72);
    margin: 0;
    line-height: 1.65;
    font-weight: 300;
  }
  .cmro-cta__action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
  }
  .cmro-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 1.4rem;
    border-radius: 999px;
    background: var(--orange-500);
    color: var(--white);
    font-size: .88rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    box-shadow: 0 10px 24px rgba(243,115,33,.22);
  }
  .cmro-cta__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(243,115,33,.26);
  }

  @media (max-width: 1024px) {
    :root {
      --sp-xl: 3rem;
      --sp-2xl: 4.5rem;
    }

    .cmro-overview-grid,
    .cmro-detail-grid {
      grid-template-columns: 1fr;
    }

    .cmro-concept__layout {
      grid-template-columns: 1fr;
      gap: 1.25rem;
      align-items: start;
    }

    .cmro-concept__diagram img {
      max-width: 350px;
    }

    .cmro-concept__service-body {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 768px) {
    :root {
      --sp-xl: 2.5rem;
      --sp-2xl: 3.5rem;
    }

    .cmro-overview-card__trigger {
      padding: 1.1rem 1rem;
      gap: .85rem;
    }

    .cmro-overview-card__content {
      padding: 0 1rem 1.1rem;
    }

    .cmro-toggle-row {
      flex-direction: column;
    }

    .cmro-toggle {
      width: 100%;
      justify-content: flex-start;
      align-items: flex-start;
      border-radius: 18px;
      padding: .95rem 1rem;
      min-height: auto;
      flex-direction: column;
      gap: .55rem;
      white-space: normal;
    }

    .cmro-toggle__meta {
      width: 100%;
      max-width: 100%;
      opacity: 1;
      flex-wrap: wrap;
      gap: .5rem .9rem;
      display: none;
    }

    .cmro-toggle:hover .cmro-toggle__meta,
    .cmro-toggle.active .cmro-toggle__meta {
      display: flex;
    }

    .cmro-expand-panel {
      padding: 1.2rem;
    }

    .cmro-concept__service-body {
      padding: .95rem 1rem 1rem;
      gap: 1rem;
    }

    .cmro-cta__box {
      flex-direction: column;
      align-items: flex-start;
      padding: 1.6rem 1.4rem;
    }
  }
