/* ==========================================================
   FisioMF Design System 1.0.0
   Canonical Treatments component for Blocksy + Elementor.
   Supports:
   A) FisioMF Elementor widget (.fm-treatments)
   B) Existing imported Elementor V2 block (.fm-treatments-v2)
   ========================================================== */

:root {
  --fm-blue: #0a72e8;
  --fm-blue-dark: #071b59;
  --fm-text: #34405b;
  --fm-muted: #65708a;
  --fm-line: rgba(75, 145, 226, .15);
  --fm-soft: #f1f7ff;
  --fm-shell: 1320px;
}

.fm-treatments, .fm-treatments *,
.fm-treatments-v2, .fm-treatments-v2 * { box-sizing: border-box; }

/* ---------- CANONICAL SECTION BACKGROUND ---------- */
body .fm-treatments,
body .e-con.fm-treatments-v2,
body .fm-treatments-v2 {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 78px 24px 72px;
  color: var(--fm-text);
  font-family: inherit;
  background:
    radial-gradient(ellipse 720px 520px at 106% -8%, rgba(73,153,255,.18) 0%, rgba(73,153,255,.09) 32%, rgba(73,153,255,0) 68%),
    radial-gradient(ellipse 620px 500px at -10% 112%, rgba(73,153,255,.13) 0%, rgba(73,153,255,.06) 36%, rgba(73,153,255,0) 72%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 52%, #f7fbff 100%);
}

/* neutralize old decorative layers if present */
body .e-con.fm-treatments-v2::before,
body .e-con.fm-treatments-v2::after,
body .fm-treatments-v2::before,
body .fm-treatments-v2::after { display: none; }

/* ==========================================================
   A) FISIOMF ELEMENTOR WIDGET / SHORTCODE (.fm-treatments)
   ========================================================== */
body .fm-treatments__shape { display: none; }
body .fm-treatments__shell {
  width: min(var(--fm-shell), 100%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
body .fm-treatments__head {
  max-width: 900px;
  margin: 0 auto 42px;
  text-align: center;
}
body .fm-treatments__kicker,
body .fm-treatments__eyebrow {
  margin: 0 0 12px;
  color: var(--fm-blue);
  font-size: 13px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
body .fm-treatments__rule {
  display: block;
  width: 88px;
  height: 12px;
  margin: 0 auto 10px;
  background:
    linear-gradient(#8ebdf5,#8ebdf5) left center / 34px 1px no-repeat,
    radial-gradient(circle, var(--fm-blue) 0 4px, transparent 4.3px) center / 9px 9px no-repeat,
    linear-gradient(#8ebdf5,#8ebdf5) right center / 34px 1px no-repeat;
}
body .fm-treatments__rule i { display:none; }
body .fm-treatments__title,
body .fm-treatments__head h2 {
  margin: 0;
  color: var(--fm-blue-dark);
  font-size: clamp(36px, 3.6vw, 54px);
  line-height: 1.07;
  font-weight: 750;
  letter-spacing: -.035em;
}
body .fm-treatments__title span,
body .fm-treatments__head h2 span { color: var(--fm-blue); }
body .fm-treatments__intro,
body .fm-treatments__head > p:last-child {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--fm-muted);
  font-size: 18px;
  line-height: 1.65;
}
body .fm-treatments__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
body .fm-treatment-card,
body .fm-card {
  position: relative;
  min-height: 188px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 26px 28px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  box-shadow: 0 9px 28px rgba(28,73,128,.07);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, border-color .25s ease;
}
body .fm-treatment-card:hover,
body .fm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10,114,232,.28);
  box-shadow: 0 18px 40px rgba(28,73,128,.14);
}
body .fm-treatment-card__icon,
body .fm-card__icon {
  flex: 0 0 96px;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg,#f8fbff,#eaf4ff);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}
body .fm-treatment-card:hover .fm-treatment-card__icon,
body .fm-card:hover .fm-card__icon { transform: translateY(-2px) scale(1.025); }
body .fm-treatment-card__icon svg,
body .fm-card__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: var(--fm-blue);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}
body .fm-treatment-card__body,
body .fm-card__content { min-width: 0; }
body .fm-treatment-card__title,
body .fm-card h3 {
  margin: 0;
  color: var(--fm-blue-dark);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -.012em;
}
body .fm-treatment-card__title a,
body .fm-card h3 a { color: inherit; text-decoration: none; }
body .fm-treatment-card__rule,
body .fm-card__line {
  display: block;
  width: 28px;
  height: 2px;
  margin: 11px 0 10px;
  border-radius: 50px;
  background: var(--fm-blue);
}
body .fm-treatment-card p,
body .fm-card p {
  margin: 0;
  color: var(--fm-muted);
  font-size: 15px;
  line-height: 1.58;
}
body .fm-treatment-features,
body .fm-benefits {
  width: min(1080px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: 17px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,.90);
  border: 1px solid var(--fm-line);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(28,73,128,.055);
}
body .fm-treatment-feature,
body .fm-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 2px 22px;
}
body .fm-treatment-feature + .fm-treatment-feature,
body .fm-benefit + .fm-benefit { border-left: 1px solid rgba(75,145,226,.15); }
body .fm-treatment-feature__icon,
body .fm-benefit__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--fm-soft);
  color: var(--fm-blue);
}
body .fm-treatment-feature__icon svg { width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:2;stroke-linecap:round;stroke-linejoin:round; }
body .fm-treatment-feature strong,
body .fm-benefit strong { display:block;margin-bottom:3px;color:var(--fm-blue-dark);font-size:14px;line-height:1.25; }
body .fm-treatment-feature small,
body .fm-benefit small { display:block;color:#727d94;font-size:12.5px;line-height:1.45; }

/* ==========================================================
   B) EXISTING ELEMENTOR V2 BLOCK (.fm-treatments-v2)
   IMPORTANT: no dependency on an ancestor .elementor wrapper.
   ========================================================== */
body .fm-treatments-v2 { --display:flex; --flex-direction:column; --gap:0px; }
body .fm-treatments-v2__shell {
  width: min(var(--fm-shell), 100%);
  max-width: var(--fm-shell);
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  --display:flex;
  --flex-direction:column;
  --gap:0px;
}
body .fm-treatments-v2__head {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 42px;
  padding: 0;
  text-align: center;
  align-items: center;
  --display:flex;
  --flex-direction:column;
  --gap:0px;
}
body .fm-treatments-v2__kicker,
body .fm-treatments-v2__title,
body .fm-treatments-v2__intro { width:100%; max-width:none; margin:0; }
body .fm-treatments-v2__kicker .elementor-heading-title {
  margin:0;
  color:var(--fm-blue);
  font-size:13px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}
body .fm-treatments-v2__kicker::after {
  content:"";
  display:block;
  width:88px;
  height:12px;
  margin:10px auto 9px;
  background:
    linear-gradient(#8ebdf5,#8ebdf5) left center / 34px 1px no-repeat,
    radial-gradient(circle,var(--fm-blue) 0 4px,transparent 4.3px) center / 9px 9px no-repeat,
    linear-gradient(#8ebdf5,#8ebdf5) right center / 34px 1px no-repeat;
}
body .fm-treatments-v2__title .elementor-heading-title {
  margin:0;
  color:var(--fm-blue-dark);
  font-size:clamp(36px,3.6vw,54px);
  line-height:1.07;
  font-weight:750;
  letter-spacing:-.035em;
}
body .fm-treatments-v2__title .elementor-heading-title span { color:var(--fm-blue); }
body .fm-treatments-v2__intro .elementor-widget-container { max-width:780px; margin:0 auto; }
body .fm-treatments-v2__intro p { margin:18px 0 0; color:var(--fm-muted); font-size:18px; line-height:1.65; }

body .fm-treatments-v2__grid {
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:16px !important;
  --display:grid;
  --grid-template-columns:repeat(3,minmax(0,1fr));
  --gap:16px;
}
body .fm-treatments-v2__grid > .fm-service-v2 {
  position:relative;
  min-height:188px;
  margin:0;
  padding:26px 28px;
  display:grid !important;
  grid-template-columns:96px minmax(0,1fr) !important;
  align-items:center;
  column-gap:24px;
  background:rgba(255,255,255,.96) !important;
  border:1px solid var(--fm-line) !important;
  border-radius:20px !important;
  box-shadow:0 9px 28px rgba(28,73,128,.07) !important;
  transition:transform .25s cubic-bezier(.2,.8,.2,1),box-shadow .25s ease,border-color .25s ease;
  --display:grid;
  --grid-template-columns:96px minmax(0,1fr);
  --gap:24px;
}
body .fm-treatments-v2__grid > .fm-service-v2:hover {
  transform:translateY(-6px);
  border-color:rgba(10,114,232,.28) !important;
  box-shadow:0 18px 40px rgba(28,73,128,.14) !important;
}
body .fm-service-v2__icon {
  width:96px !important;
  max-width:96px !important;
  margin:0 !important;
  align-self:center;
  justify-self:center;
}
body .fm-service-v2__icon .elementor-widget-container,
body .fm-service-v2__icon .elementor-icon-wrapper,
body .fm-service-v2__icon .elementor-icon {
  width:96px !important;
  height:96px !important;
  margin:0 !important;
}
body .fm-service-v2__icon .elementor-icon {
  position:relative;
  display:grid !important;
  place-items:center;
  padding:0 !important;
  border:0 !important;
  border-radius:50% !important;
  background:linear-gradient(145deg,#f8fbff,#eaf4ff) !important;
  color:var(--fm-blue) !important;
  transition:transform .25s cubic-bezier(.2,.8,.2,1);
}
body .fm-service-v2:hover .fm-service-v2__icon .elementor-icon { transform:translateY(-2px) scale(1.025); }
/* Hide Font Awesome dependency; draw stable CSS-mask icons instead. */
body .fm-service-v2__icon .elementor-icon > i,
body .fm-service-v2__icon .elementor-icon > svg { opacity:0 !important; width:1px !important; height:1px !important; position:absolute !important; }
body .fm-service-v2__icon .elementor-icon::before {
  content:"";
  width:54px;
  height:54px;
  display:block;
  background:var(--fm-blue);
  -webkit-mask:var(--fm-service-icon) center/contain no-repeat;
  mask:var(--fm-service-icon) center/contain no-repeat;
}
/* 1 shoulder / nerve */
body .fm-service-v2:nth-child(1) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 42c5-15 9-23 18-27 7-3 14-2 21 2'/%3E%3Cpath d='M19 48c3-12 7-20 14-23 5-2 10-1 15 2'/%3E%3Cpath d='M28 48V32'/%3E%3Ccircle cx='28' cy='28' r='3'/%3E%3C/g%3E%3C/svg%3E"); }
/* 2 hands */
body .fm-service-v2:nth-child(2) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 21c8 1 13 6 18 10 3 2 6 1 8-1l5-5'/%3E%3Cpath d='M54 42c-8-1-13-6-18-10-3-2-6-1-8 1l-5 5'/%3E%3Cpath d='M14 15l12 8M50 49l-12-8'/%3E%3C/g%3E%3C/svg%3E"); }
/* 3 ultrasound */
body .fm-service-v2:nth-child(3) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='13' y='10' width='22' height='14' rx='3'/%3E%3Cpath d='M20 24v9M24 33h-8v8'/%3E%3Crect x='31' y='30' width='22' height='20' rx='2'/%3E%3Cpath d='M35 45l5-6 4 3 5-7'/%3E%3C/g%3E%3C/svg%3E"); }
/* 4 T-Care */
body .fm-service-v2:nth-child(4) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='10' y='18' width='27' height='29' rx='3'/%3E%3Crect x='15' y='23' width='16' height='11'/%3E%3Ccircle cx='18' cy='40' r='2'/%3E%3Ccircle cx='28' cy='40' r='2'/%3E%3Cpath d='M43 13v27M40 13h6M40 40h6M43 40c0 5 2 7 7 7'/%3E%3C/g%3E%3C/svg%3E"); }
/* 5 electro */
body .fm-service-v2:nth-child(5) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='15' y='10' width='28' height='36' rx='4'/%3E%3Crect x='20' y='15' width='18' height='11'/%3E%3Ccircle cx='23' cy='36' r='2'/%3E%3Ccircle cx='35' cy='36' r='2'/%3E%3Cpath d='M20 46v8M38 46v8M28 18l-4 5h4l-2 5 7-8h-4l2-2'/%3E%3C/g%3E%3C/svg%3E"); }
/* 6 shockwave */
body .fm-service-v2:nth-child(6) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M39 10l11 8-8 11-11-8zM34 24L22 39'/%3E%3Ccircle cx='20' cy='43' r='10'/%3E%3Ccircle cx='20' cy='43' r='5'/%3E%3Cpath d='M20 43l13-18'/%3E%3C/g%3E%3C/svg%3E"); }
/* 7 EPI */
body .fm-service-v2:nth-child(7) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 45l25-25M39 16l9 9M34 11l18 18M15 48l-5 5'/%3E%3Crect x='36' y='37' width='13' height='16' rx='2'/%3E%3Cpath d='M39 41h7'/%3E%3C/g%3E%3C/svg%3E"); }
/* 8 lymph */
body .fm-service-v2:nth-child(8) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 45c12-6 15-20 24-28M23 50c8-7 11-15 14-25'/%3E%3Ccircle cx='18' cy='23' r='3'/%3E%3Ccircle cx='30' cy='13' r='3'/%3E%3Ccircle cx='42' cy='23' r='3'/%3E%3Ccircle cx='48' cy='38' r='3'/%3E%3Ccircle cx='35' cy='48' r='3'/%3E%3C/g%3E%3C/svg%3E"); }
/* 9 magnet */
body .fm-service-v2:nth-child(9) { --fm-service-icon:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'%3E%3Cg fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M17 14v20c0 10 6 16 15 16s15-6 15-16V14M17 14h11v16M47 14H36v16M11 20H5M53 20h6M8 10l-5-3M56 10l5-3'/%3E%3C/g%3E%3C/svg%3E"); }

body .fm-service-v2__body {
  min-width:0;
  width:100%;
  margin:0;
  padding:0;
  --display:flex;
  --flex-direction:column;
  --gap:0px;
}
body .fm-service-v2__title,
body .fm-service-v2__text { width:100%; margin:0; }
body .fm-service-v2__title .elementor-heading-title {
  margin:0;
  color:var(--fm-blue-dark);
  font-size:20px;
  line-height:1.25;
  font-weight:750;
  letter-spacing:-.012em;
}
body .fm-service-v2__title a { color:inherit; text-decoration:none; }
body .fm-service-v2__title::after {
  content:"";
  display:block;
  width:28px;
  height:2px;
  margin:11px 0 10px;
  border-radius:50px;
  background:var(--fm-blue);
}
body .fm-service-v2__text p { margin:0; color:var(--fm-muted); font-size:15px; line-height:1.58; }

body .fm-treatments-v2__features {
  width:min(1080px,calc(100% - 40px));
  max-width:1080px;
  margin:28px auto 0;
  padding:17px 22px;
  display:grid !important;
  grid-template-columns:repeat(3,minmax(0,1fr)) !important;
  gap:0 !important;
  background:rgba(255,255,255,.90) !important;
  border:1px solid var(--fm-line) !important;
  border-radius:20px !important;
  box-shadow:0 8px 28px rgba(28,73,128,.055) !important;
  --display:grid;
  --grid-template-columns:repeat(3,minmax(0,1fr));
}
body .fm-treatments-v2__features > .fm-feature-v2 {
  min-width:0;
  margin:0;
  padding:2px 22px;
  display:grid !important;
  grid-template-columns:48px minmax(0,1fr) !important;
  align-items:center;
  gap:14px !important;
  --display:grid;
  --grid-template-columns:48px minmax(0,1fr);
  --gap:14px;
}
body .fm-treatments-v2__features > .fm-feature-v2 + .fm-feature-v2 { border-left:1px solid rgba(75,145,226,.15); }
body .fm-feature-v2__icon,
body .fm-feature-v2__icon .elementor-icon-wrapper,
body .fm-feature-v2__icon .elementor-icon { width:44px !important; height:44px !important; margin:0 !important; }
body .fm-feature-v2__icon .elementor-icon {
  position:relative;
  display:grid !important;
  place-items:center;
  padding:0 !important;
  border:0 !important;
  border-radius:50% !important;
  background:var(--fm-soft) !important;
  color:var(--fm-blue) !important;
}
body .fm-feature-v2__icon .elementor-icon > i,
body .fm-feature-v2__icon .elementor-icon > svg { opacity:0 !important; position:absolute !important; }
body .fm-feature-v2__icon .elementor-icon::before { display:block;color:var(--fm-blue);font-size:22px;font-weight:700;line-height:1; }
body .fm-feature-v2:nth-child(1) .elementor-icon::before { content:"✓"; }
body .fm-feature-v2:nth-child(2) .elementor-icon::before { content:"◎"; }
body .fm-feature-v2:nth-child(3) .elementor-icon::before { content:"+"; }
body .fm-feature-v2__body { min-width:0; margin:0; padding:0; --display:flex; --flex-direction:column; --gap:0px; }
body .fm-feature-v2__title .elementor-heading-title { margin:0;color:var(--fm-blue-dark);font-size:14px;line-height:1.25;font-weight:750; }
body .fm-feature-v2__text p { margin:3px 0 0;color:#727d94;font-size:12.5px;line-height:1.45; }

/* ---------- RESPONSIVE ---------- */
@media (max-width:1020px) {
  body .fm-treatments,
  body .e-con.fm-treatments-v2,
  body .fm-treatments-v2 { padding:68px 20px 62px; }
  body .fm-treatments__grid,
  body .fm-treatments-v2__grid { grid-template-columns:repeat(2,minmax(0,1fr)) !important; }
  body .fm-treatment-features,
  body .fm-benefits,
  body .fm-treatments-v2__features { grid-template-columns:1fr !important; width:min(680px,100%); }
  body .fm-treatment-feature + .fm-treatment-feature,
  body .fm-benefit + .fm-benefit,
  body .fm-treatments-v2__features > .fm-feature-v2 + .fm-feature-v2 { border-left:0; border-top:1px solid rgba(75,145,226,.15); padding-top:14px; margin-top:10px; }
}
@media (max-width:680px) {
  body .fm-treatments,
  body .e-con.fm-treatments-v2,
  body .fm-treatments-v2 { padding:56px 16px; }
  body .fm-treatments__head,
  body .fm-treatments-v2__head { margin-bottom:30px; }
  body .fm-treatments__title,
  body .fm-treatments__head h2,
  body .fm-treatments-v2__title .elementor-heading-title { font-size:clamp(32px,9vw,40px); }
  body .fm-treatments__intro,
  body .fm-treatments-v2__intro p { font-size:17px; }
  body .fm-treatments__grid,
  body .fm-treatments-v2__grid { grid-template-columns:1fr !important; gap:12px !important; }
  body .fm-treatment-card,
  body .fm-card,
  body .fm-treatments-v2__grid > .fm-service-v2 {
    min-height:0;
    padding:22px 20px;
    border-radius:17px !important;
  }
  body .fm-treatments-v2__grid > .fm-service-v2 { grid-template-columns:76px minmax(0,1fr) !important; column-gap:18px; }
  body .fm-treatment-card__icon,
  body .fm-card__icon,
  body .fm-service-v2__icon,
  body .fm-service-v2__icon .elementor-widget-container,
  body .fm-service-v2__icon .elementor-icon-wrapper,
  body .fm-service-v2__icon .elementor-icon { width:72px !important;height:72px !important;flex-basis:72px; }
  body .fm-treatment-card__icon svg,
  body .fm-card__icon svg { width:44px;height:44px; }
  body .fm-service-v2__icon .elementor-icon::before { width:42px;height:42px; }
  body .fm-treatment-card__title,
  body .fm-card h3,
  body .fm-service-v2__title .elementor-heading-title { font-size:18px; }
  body .fm-treatment-card p,
  body .fm-card p,
  body .fm-service-v2__text p { font-size:14.5px; }
  body .fm-treatment-features,
  body .fm-benefits,
  body .fm-treatments-v2__features { width:100%; padding:10px 18px; border-radius:16px !important; }
}
