/* ==========================================================================
   ASTROSPORT · INDUSTRIAL CORPORATE CATALOG THEME (ENERPAC-INSPIRED)
   Sharp edges, zero rounded borders on header, high-contrast professional scale.
   ========================================================================== */

:root {
  --astro-blue: #063eff;
  --astro-blue-dark: #002fc7;
  --astro-blue-light: #eef3ff;
  --astro-dark: #090c13;
  --astro-dark-header: #0c0f18;
  --astro-dark-surface: #121622;
  --astro-dark-card: #181d2a;
  --astro-border-dark: #22293a;
  --astro-border-light: #e2e8f0;
  --astro-text-dark: #0f172a;
  --astro-text-muted: #64748b;
  --astro-text-light: #94a3b8;
  --astro-bg-light: #f8fafc;
}

/* Base Body Scale & Typography */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: var(--astro-text-dark);
  background-color: var(--astro-bg-light);
  -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   1. TOPLINE & UTILITY STRIP (SHARP INDUSTRIAL)
   ========================================================================== */
.site-topline {
  position: relative;
  z-index: 70;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 36px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: #06080d !important;
  color: #94a3b8 !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #171c29;
}
.site-topline .topline-left,
.site-topline .topline-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-topline .topline-badge {
  display: inline-block;
  padding: 2px 7px;
  background: var(--astro-blue);
  color: #fff;
  border-radius: 0 !important;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ==========================================================================
   2. MAIN SITE HEADER (SHARP RECTANGULAR INDUSTRIAL LOOK)
   ========================================================================== */
.site-header,
.home-page .site-header,
body.inner .site-header {
  position: relative !important;
  inset: auto !important;
  top: auto !important;
  z-index: 60;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: var(--astro-dark-header) !important;
  border-bottom: 1px solid var(--astro-border-dark);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  border-radius: 0 !important;
  gap: 32px;
}

.site-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-brand img,
.home-page .site-brand img {
  display: block;
  width: clamp(180px, 16vw, 230px);
  height: auto;
  max-height: 50px;
  object-fit: contain;
}

/* Primary Header Navigation Links */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  margin: 0 0 0 auto;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 82px;
  padding: 0 4px;
  color: #cbd5e1;
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a.active {
  color: #fff;
}
.site-nav a:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--astro-blue);
  border-radius: 0 !important;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s;
}
.site-nav a:hover:after,
.site-nav a.active:after {
  transform: scaleX(1);
}

/* Portafolio PDF Tag */
.site-nav a .pdf-tag {
  display: inline-block;
  padding: 2px 5px;
  background: #e11d48;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border-radius: 0 !important;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

/* Header Actions */
.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  background: #ffffff !important;
  color: #0b0e14 !important;
  border: 1px solid #ffffff;
  border-radius: 0 !important;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.site-cart:hover {
  background: #e2e8f0 !important;
  border-color: #e2e8f0;
}
.site-cart .cart-count {
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 0 !important;
  background: var(--astro-blue);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  margin-left: 8px;
}

.site-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid #283144;
  border-radius: 0 !important;
  background: transparent;
  cursor: pointer;
}
.site-menu-toggle i {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}

/* ==========================================================================
   3. SUB-NAVIGATION BAR (BALANCED DUAL-SIDE LAYOUT)
   ========================================================================== */
.site-subnav {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 0 clamp(20px, 4vw, 64px);
  background: #10141f;
  border-bottom: 1px solid var(--astro-border-dark);
  border-radius: 0 !important;
}
.site-subnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-subnav-inner::-webkit-scrollbar {
  display: none;
}
.site-subnav-left {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}
.site-subnav-title {
  font-size: 11px;
  font-weight: 800;
  color: #818ea3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-subnav a {
  display: inline-flex;
  align-items: center;
  height: 44px;
  padding: 0 8px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  border-radius: 0 !important;
  transition: all 0.2s;
}
.site-subnav a:hover,
.site-subnav a.active {
  color: #fff;
  border-bottom-color: var(--astro-blue);
}

.site-subnav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
  margin-left: auto;
}
.subnav-link-eventos {
  color: #60a5fa !important;
  font-weight: 700 !important;
  font-size: 12px !important;
}
.subnav-link-pdf {
  color: #f1f5f9 !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  padding: 4px 10px !important;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid #283144;
  height: 30px !important;
}
.subnav-link-pdf:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: #60a5fa !important;
}

/* ==========================================================================
   4. ENERPAC-STYLE CATALOG PAGE (#fotos / #catalogo)
   ========================================================================== */
.catalog-section {
  width: min(1400px, calc(100% - 48px));
  margin: 40px auto 80px;
}

/* Catalog Top Header Bar */
.catalog-header-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--astro-border-light);
  gap: 20px;
  flex-wrap: wrap;
}
.catalog-header-title h2 {
  font-size: clamp(26px, 2.8vw, 36px);
  font-weight: 800;
  color: var(--astro-text-dark);
  margin: 4px 0 6px;
  letter-spacing: -0.03em;
}
.catalog-header-title .catalog-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--astro-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.catalog-header-title p {
  font-size: 14px;
  color: var(--astro-text-muted);
  margin: 0;
}
.catalog-header-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.catalog-count-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: #e2e8f0;
  color: #334155;
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 700;
}

/* Catalog Layout: 2 Columns (Sidebar + Grid) */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

/* Left Filter Sidebar */
.catalog-sidebar {
  background: #fff;
  border: 1px solid var(--astro-border-light);
  border-radius: 0 !important;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 20px;
}
.sidebar-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f1f5f9;
}
.sidebar-heading h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--astro-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-reset {
  font-size: 12px;
  font-weight: 700;
  color: var(--astro-blue);
  text-decoration: none;
}
.sidebar-reset:hover {
  text-decoration: underline;
}

.filter-group {
  margin-bottom: 24px;
}
.filter-group:last-child {
  margin-bottom: 0;
}
.filter-group-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.filter-search-box {
  display: flex;
  align-items: center;
  height: 42px;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 0 !important;
  padding: 0 12px;
  gap: 8px;
}
.filter-search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0 !important;
  background: transparent;
  outline: 0;
  font-size: 13px;
  color: var(--astro-text-dark);
}

.filter-pills-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.filter-pill-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 0 !important;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  background: transparent;
  transition: all 0.15s;
}
.filter-pill-item:hover {
  background: #f1f5f9;
  color: var(--astro-blue);
}
.filter-pill-item.active {
  background: var(--astro-blue-light);
  color: var(--astro-blue);
  font-weight: 700;
  border-left: 3px solid var(--astro-blue);
}
.filter-pill-item .pill-count {
  display: inline-block;
  padding: 2px 7px;
  background: #e2e8f0;
  color: #475569;
  border-radius: 0 !important;
  font-size: 11px;
  font-weight: 700;
}
.filter-pill-item.active .pill-count {
  background: var(--astro-blue);
  color: #fff;
}

/* Catalog Main Content Area */
.catalog-main-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Catalog Toolbar */
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--astro-border-light);
  border-radius: 0 !important;
  padding: 14px 20px;
  gap: 16px;
  flex-wrap: wrap;
}
.catalog-toolbar-left {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--astro-text-muted);
}
.catalog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.catalog-sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.catalog-sort-select {
  height: 38px;
  padding: 0 12px;
  border: 1px solid #cbd5e1;
  border-radius: 0 !important;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--astro-text-dark);
  cursor: pointer;
}

/* Product & Set Cards */
.catalog-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.catalog-card {
  background: #fff;
  border: 1px solid var(--astro-border-light);
  border-radius: 0 !important;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.catalog-card:hover {
  transform: translateY(-4px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.1);
}

.card-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0f172a;
}
.card-media-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.catalog-card:hover .card-media-wrapper img {
  transform: scale(1.04);
}
.card-event-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 5px 10px;
  background: rgba(15, 23, 42, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0 !important;
}
.card-photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 2;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 0 !important;
}

.card-body-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.card-sport-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--astro-blue);
  text-transform: uppercase;
}
.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--astro-text-dark);
  line-height: 1.35;
  margin: 0;
}
.card-title a {
  color: inherit;
  text-decoration: none;
}
.card-title a:hover {
  color: var(--astro-blue);
}
.card-meta-text {
  font-size: 13px;
  color: var(--astro-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-features-list {
  list-style: none;
  padding: 0;
  margin: 4px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: #475569;
}
.card-features-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.card-features-list li i {
  color: #10b981;
  font-style: normal;
  font-weight: bold;
}

.card-footer-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
  gap: 12px;
}
.card-price-block {
  display: flex;
  flex-direction: column;
}
.card-price-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--astro-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.card-price-amount {
  font-size: 19px;
  font-weight: 800;
  color: var(--astro-text-dark);
}
.card-action-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--astro-blue);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  transition: background 0.2s, transform 0.15s;
}
.card-action-button:hover {
  background: var(--astro-blue-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ==========================================================================
   5. ENERPAC VALUE PROPOSITION (4-PILLARS TRUST SECTION)
   ========================================================================== */
.enerpac-trust-section {
  background: #fff;
  border-top: 1px solid var(--astro-border-light);
  border-bottom: 1px solid var(--astro-border-light);
  padding: 48px 0;
  margin-top: 40px;
}
.enerpac-trust-container {
  width: min(1400px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.trust-pillar-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trust-pillar-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 0 !important;
  background: var(--astro-blue-light);
  color: var(--astro-blue);
  font-size: 22px;
  flex-shrink: 0;
}
.trust-pillar-content h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--astro-text-dark);
  margin: 0 0 4px;
}
.trust-pillar-content p {
  font-size: 13px;
  color: var(--astro-text-muted);
  margin: 0;
  line-height: 1.45;
}

/* ==========================================================================
   6. ENERPAC CORPORATE CTA / PROPOSAL BANNER
   ========================================================================== */
.enerpac-cta-banner {
  background: linear-gradient(135deg, #090c14 0%, #111728 50%, #080b12 100%);
  color: #fff;
  padding: 64px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #1e2438;
}
.enerpac-cta-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 100%;
  background: radial-gradient(circle, rgba(6, 62, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.enerpac-cta-container {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  position: relative;
  z-index: 2;
}
.enerpac-cta-info span {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.enerpac-cta-info h2 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.enerpac-cta-info p {
  font-size: 15px;
  color: #cbd5e1;
  margin: 0;
  max-width: 620px;
}
.enerpac-cta-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.enerpac-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--astro-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  transition: all 0.2s;
}
.enerpac-cta-btn-primary:hover {
  background: var(--astro-blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 62, 255, 0.35);
}
.enerpac-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: transparent;
  color: #fff;
  border: 1px solid #475569;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 !important;
  transition: all 0.2s;
}
.enerpac-cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #94a3b8;
  color: #fff;
}

/* ==========================================================================
   7. RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .site-header,
  .home-page .site-header,
  body.inner .site-header {
    height: 76px;
    padding: 0 20px;
  }
  .site-header-search {
    max-width: 380px;
  }
  .catalog-layout {
    grid-template-columns: 240px 1fr;
    gap: 20px;
  }
  .enerpac-trust-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .site-topline .topline-right {
    display: none;
  }
  .site-header,
  .home-page .site-header,
  body.inner .site-header {
    height: 70px;
    padding: 0 16px;
  }
  .site-header-search {
    display: none;
  }
  .site-nav {
    position: absolute;
    z-index: 80;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 24px;
    background: #0e111a;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid #1e2333;
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    justify-content: space-between;
    width: 100%;
    height: 52px;
    padding: 0 8px;
    border-bottom: 1px solid #1c2130;
    font-size: 14px !important;
  }
  .site-menu-toggle {
    display: block;
  }
  .site-subnav-right {
    display: none;
  }
  .catalog-layout {
    grid-template-columns: 1fr;
  }
  .catalog-sidebar {
    position: static;
  }
  .enerpac-cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .enerpac-cta-actions {
    width: 100%;
    flex-direction: column;
  }
  .enerpac-cta-actions a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 580px) {
  .enerpac-trust-container {
    grid-template-columns: 1fr;
  }
  .catalog-cards-grid {
    grid-template-columns: 1fr;
  }
}

/* Reference Archive Wall & Clean Cards */
.reference-archive {
  width: min(1400px, calc(100% - 48px));
  margin: 40px auto 70px;
}
.reference-archive-title h2 {
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 800;
  color: #0f172a;
}
.reference-categories a {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.reference-categories a.active {
  color: #063eff;
  border-bottom-color: #063eff;
  font-weight: 800;
}
.reference-filters {
  border-radius: 0 !important;
}
.reference-filters input,
.reference-filters select,
.reference-filters button {
  border-radius: 0 !important;
  font-size: 13px;
}
.reference-filters button {
  background: #063eff;
  color: #fff;
  font-weight: 700;
}
.reference-card {
  border-radius: 0 !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  background: #fff;
}
.reference-card:hover {
  border-color: #cbd5e1;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.reference-photo {
  border-radius: 0 !important;
}
.reference-photo b {
  border-radius: 0 !important;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  background: rgba(15, 23, 42, 0.88);
}
.reference-photo span {
  font-size: 12px;
  font-weight: 700;
}
.reference-caption {
  padding: 16px;
}
.reference-caption > p {
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
  margin: 0 0 6px;
}
.reference-caption h3 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  line-height: 1.35;
}
.reference-caption strong {
  font-size: 15px;
  font-weight: 800;
  color: #0f172a;
}
.reference-caption a {
  border-radius: 0 !important;
  background: #063eff;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-decoration: none;
}
.reference-caption a:hover {
  background: #002fc7;
}

