.elementor-4385 .elementor-element.elementor-element-61f0d0f{--spacer-size:20px;}/* Start custom CSS for html, class: .elementor-element-9f3ad8d *//* ================================================================
   ABSOLUTE CABLEMART — Engineering Tools Page Stylesheet
   All rules scoped to .acm-resources — zero Elementor conflicts.
   Paste into: Elementor > Custom CSS, or child theme stylesheet.
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=Inter:wght@300;400;500&display=swap');

/* ── Variables ─────────────────────────────────────────────────── */
.acm-resources {
  --yellow:      #fed73e;
  --yellow-pale: #fffce6;
  --grey:        #a6a597;
  --dark:        #18110e;
  --dark-mid:    #2e2420;
  --white:       #ffffff;
  --surface:     #f8f7f4;
  --border:      #e8e6df;
  --radius:      8px;
  --font-head:   'Syne', sans-serif;
  --font-body:   'Inter', sans-serif;
}

/* ── Outer wrapper ─────────────────────────────────────────────── */
.acm-resources {
  width: 100%;
  padding: 52px 0 80px;
  box-sizing: border-box;
  background: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

/* ================================================================
   TOP NAV — Resources breadcrumb + sub-nav
   ================================================================ */
.acm-res__topnav {
  margin-bottom: 44px;
}

.acm-res__breadcrumb {
  font-family: var(--font-head);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--grey);
  margin: 0 0 20px;
  line-height: 1;
}

.acm-res__breadcrumb a {
  color: var(--grey);
  text-decoration: none !important;
  transition: color .2s;
}

.acm-res__breadcrumb a:hover {
  color: var(--dark);
}

.acm-res__breadcrumb__sep {
  color: var(--yellow);
  margin: 0 8px;
}

.acm-res__breadcrumb__current {
  color: var(--dark);
}

/* Sub-nav tabs */
.acm-res__subnav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.acm-res__subnav::-webkit-scrollbar { display: none; }

.acm-res__subnav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--grey);
  text-decoration: none !important;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .2s, border-color .2s;
}

.acm-res__subnav a:hover {
  color: var(--dark);
  border-bottom-color: var(--border);
}

.acm-res__subnav a.is-active {
  color: var(--dark);
  font-weight: 600;
  border-bottom-color: var(--yellow);
}

.acm-res__subnav a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ================================================================
   PAGE HEADER
   ================================================================ */
.acm-res__page-head {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.acm-res__page-head::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0;
  width: 56px; height: 3px;
  background: var(--yellow);
}

.acm-res__page-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -.028em;
  color: var(--dark);
  margin: 0 0 20px;
}

.acm-res__page-title span {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--yellow);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: super;
}

.acm-res__intro {
  max-width: 680px;
}

.acm-res__intro p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--dark-mid);
  margin: 0 0 14px;
}

.acm-res__intro p:last-child { margin-bottom: 0; }

/* ================================================================
   TOOL CARDS GRID
   ================================================================ */
.acm-res__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* ── Individual card ────────────────────────────────────────────── */
.acm-tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, transform .22s, border-color .25s;
}

/* Yellow top-border reveal on hover */
.acm-tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.acm-tool-card:hover {
  border-color: rgba(254,215,62,.5);
  box-shadow: 0 10px 36px rgba(254,215,62,.12), 0 2px 10px rgba(0,0,0,.05);
  transform: translateY(-3px);
}

.acm-tool-card:hover::before {
  transform: scaleX(1);
}

/* Icon */
.acm-tool-card__icon {
  width: 52px;
  height: 52px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.acm-tool-card__icon svg {
  width: 22px;
  height: 22px;
  fill: var(--dark);
}

/* Card number badge */
.acm-tool-card__num {
  position: absolute;
  top: 20px;
  right: 22px;
  font-family: var(--font-head);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--border);
}

/* Title */
.acm-tool-card__title {
  font-family: var(--font-head);
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -.015em;
  margin: 0 0 10px;
  line-height: 1.2;
}

/* Description */
.acm-tool-card__desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--grey);
  margin: 0 0 24px;
  flex: 1;
}

/* CTA Button */
.acm-tool-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  background: var(--dark);
  color: var(--yellow) !important;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 11px 20px;
  border-radius: 4px;
  transition: background .2s, box-shadow .2s, transform .2s;
  margin-top: auto;
}

.acm-tool-card__btn:hover {
  background: var(--dark-mid);
  box-shadow: 0 4px 16px rgba(24,17,14,.2);
  transform: translateY(-1px);
}

.acm-tool-card__btn svg {
  width: 13px;
  height: 13px;
  fill: var(--yellow);
  flex-shrink: 0;
  transition: transform .2s;
}

.acm-tool-card__btn:hover svg {
  transform: translateX(3px);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 900px) {
  .acm-resources { padding: 36px 0 60px; }
}

@media (max-width: 640px) {
  .acm-resources { padding: 24px 0 52px; }

  .acm-res__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .acm-res__subnav a {
    padding: 10px 14px;
    font-size: 12.5px;
  }

  .acm-tool-card {
    padding: 24px 20px 22px;
  }

  .acm-tool-card__icon {
    width: 44px;
    height: 44px;
  }

  .acm-tool-card__icon svg {
    width: 18px;
    height: 18px;
  }

  .acm-tool-card__title {
    font-size: 17px;
  }
}/* End custom CSS */