/* =========================================================
   INDUSTRIAS — DESARROLLO DIGITAL
========================================================= */

.dev-industries {
  --dev-cyan: #00e5ff;
  --dev-blue: #2563eb;
  --dev-purple: #8b5cf6;
  --dev-dark: #06111f;
  --dev-card: #0c1d31;

  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(0, 229, 255, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(139, 92, 246, 0.12),
      transparent 30%
    ),
    var(--dev-dark);
  color: #ffffff;
}

.dev-industries::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  pointer-events: none;
}

.dev-industries__inner {
  position: relative;
  z-index: 2;
}

.dev-industries__header {
  max-width: 850px;
  margin-bottom: 60px;
}

.dev-industries__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--dev-cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dev-industries__eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--dev-cyan);
}

.dev-industries__header h2 {
  max-width: 820px;
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5.7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.dev-industries__header p {
  max-width: 680px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  line-height: 1.8;
}

.dev-industries__layout {
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(0, 0.95fr);
  gap: 24px;
}

.dev-industry-featured {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background: var(--dev-card);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.32);
  transition:
    transform 280ms ease,
    border-color 280ms ease,
    box-shadow 280ms ease;
}

.dev-industry-featured:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 42px 100px rgba(0, 229, 255, 0.13);
}

.dev-industry-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.dev-industry-featured:hover img {
  transform: scale(1.045);
}

.dev-industry-featured__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(3, 10, 20, 0.98) 5%,
      rgba(3, 10, 20, 0.5) 60%,
      rgba(3, 10, 20, 0.15)
    );
}

.dev-industry-featured__content {
  position: absolute;
  z-index: 2;
  right: 42px;
  bottom: 42px;
  left: 42px;
}

.dev-industry-featured__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 229, 255, 0.42);
  border-radius: 999px;
  background: rgba(0, 229, 255, 0.09);
  color: var(--dev-cyan);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dev-industry-featured__status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dev-cyan);
  box-shadow: 0 0 16px var(--dev-cyan);
}

.dev-industry-featured h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.dev-industry-featured p {
  max-width: 610px;
  margin: 20px 0 24px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.75;
}

.dev-industry-featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 30px;
}

.dev-industry-featured__tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 700;
}

.dev-industry-featured strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dev-cyan);
  font-size: 0.88rem;
  font-weight: 800;
}

.dev-industries__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.dev-industry-card.has-cover-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--industry-cover);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.dev-industry-card.has-cover-image > *:not(small) {
  position: relative;
  z-index: 1;
}

.dev-industry-card.has-cover-image > small {
  position: absolute;
  z-index: 2;
}

.dev-industry-card {
  position: relative;
  min-height: 210px;
  padding: 25px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.055),
      rgba(255, 255, 255, 0.018)
    ),
    var(--dev-card);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.dev-industry-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 229, 255, 0.37);
  background:
    linear-gradient(
      145deg,
      rgba(0, 229, 255, 0.08),
      rgba(139, 92, 246, 0.035)
    ),
    var(--dev-card);
}

.dev-industry-card__code {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 34px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 15px;
  background: rgba(0, 229, 255, 0.08);
  color: var(--dev-cyan);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  font-weight: 800;
}

.dev-industry-card small {
  position: absolute;
  top: 18px;
  right: 18px;
  max-width: 42%;
  text-align: right;
  color: rgba(255, 255, 255, 0.32);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.25;
  pointer-events: none;
  z-index: 2;
}

.dev-industry-card h3 {
  margin: 0 0 9px;
  padding-right: 7.5rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.dev-industry-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  line-height: 1.6;
}

@media (max-width: 1050px) {
  .dev-industries__layout {
    grid-template-columns: 1fr;
  }

  .dev-industry-featured {
    min-height: 620px;
  }

  .dev-industries__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .dev-industries {
    padding: 85px 0;
  }

  .dev-industries__grid {
    grid-template-columns: 1fr 1fr;
  }

  .dev-industry-featured {
    min-height: 600px;
  }

  .dev-industry-featured__content {
    right: 25px;
    bottom: 28px;
    left: 25px;
  }
}

@media (max-width: 520px) {
  .dev-industries__grid {
    grid-template-columns: 1fr;
  }

  .dev-industry-featured {
    min-height: 640px;
  }

  .dev-industry-featured h3 {
    font-size: 2.7rem;
  }
}

/* =========================================================
   RESPONSIVE FINAL — DESARROLLO POR INDUSTRIA
========================================================= */

.dev-industries,
.dev-industries *,
.dev-industries *::before,
.dev-industries *::after {
  box-sizing: border-box;
}

.dev-industries {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.dev-industries__inner {
  width: min(calc(100% - 40px), 1440px);
  margin-inline: auto;
}

.dev-industry-featured img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tabletas y computadores pequeños */
@media (max-width: 1100px) {
  .dev-industries {
    padding: 90px 0;
  }

  .dev-industries__layout {
    grid-template-columns: 1fr;
  }

  .dev-industries__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dev-industry-featured {
    min-height: 620px;
  }
}

/* Tabletas verticales y celulares */
@media (max-width: 768px) {
  .dev-industries {
    padding: 72px 0;
  }

  .dev-industries__inner {
    width: calc(100% - 24px);
  }

  .dev-industries__header {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .dev-industries__header h2 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11vw, 4.2rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
    overflow-wrap: break-word;
  }

  .dev-industries__header p {
    max-width: 100%;
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .dev-industries__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .dev-industry-featured {
    width: 100%;
    min-height: 570px;
    border-radius: 22px;
  }

  .dev-industry-featured__content {
    right: 22px;
    bottom: 25px;
    left: 22px;
  }

  .dev-industry-featured h3 {
    max-width: 100%;
    font-size: clamp(2.4rem, 12vw, 4rem);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  .dev-industry-featured p {
    margin: 16px 0 20px;
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .dev-industry-featured__tags {
    gap: 7px;
    margin-bottom: 22px;
  }

  .dev-industry-featured__tags span {
    padding: 7px 10px;
    font-size: 0.63rem;
  }

  .dev-industries__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dev-industry-card.has-cover-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--industry-cover);
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    pointer-events: none;
    z-index: 0;
  }

  .dev-industry-card.has-cover-image > *:not(small) {
    position: relative;
    z-index: 1;
  }

  .dev-industry-card.has-cover-image > small {
    position: absolute;
    z-index: 2;
  }

  .dev-industry-card {
    width: 100%;
    min-height: auto;
    padding: 22px;
    border-radius: 18px;
  }

  .dev-industry-card__code {
    margin-bottom: 25px;
  }
}

/* Celulares pequeños */
@media (max-width: 420px) {
  .dev-industries {
    padding: 60px 0;
  }

  .dev-industries__inner {
    width: calc(100% - 20px);
  }

  .dev-industries__header h2 {
    font-size: clamp(2.15rem, 12.5vw, 3.3rem);
  }

  .dev-industry-featured {
    min-height: 540px;
  }

  .dev-industry-featured__content {
    right: 18px;
    bottom: 20px;
    left: 18px;
  }

  .dev-industry-featured h3 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
  }
}

/* =========================================================
   MENÚ RESPONSIVE — DESARROLLO DIGITAL
========================================================= */

.mobile-menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(0, 229, 255, 0.45);
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 10002;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #00e5ff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .topbar {
    display: none !important;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 10000;
    width: 100%;
    background: rgba(3, 7, 13, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
  }

  .header__inner {
    width: 100%;
    min-height: 72px;
    height: auto !important;
    padding: 0 18px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu-toggle {
    display: flex;
    flex: 0 0 46px;
    margin-left: auto;
  }

  .nav[data-mobile-nav] {
    position: fixed !important;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    padding: 28px 22px 40px;

    display: flex !important;
    flex-direction: column;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    background:
      radial-gradient(
        circle at top right,
        rgba(0, 229, 255, 0.12),
        transparent 36%
      ),
      #03070d;

    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition:
      transform 0.35s ease,
      opacity 0.35s ease,
      visibility 0.35s ease;

    z-index: 10001;
  }

  .nav[data-mobile-nav].is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .nav[data-mobile-nav] a {
    width: 100%;
    min-height: 58px;
    padding: 17px 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid rgba(255, 255, 255, 0.11);
    color: #ffffff !important;
    font-size: 1rem !important;
    letter-spacing: 0.08em;
    text-decoration: none;
  }

  .nav[data-mobile-nav] a:hover,
  .nav[data-mobile-nav] a:focus-visible,
  .nav[data-mobile-nav] a.active-link {
    color: #00e5ff !important;
    padding-left: 12px !important;
  }

  body.menu-open {
    overflow: hidden;
    touch-action: none;
  }
}

@media (max-width: 420px) {
  .header__inner {
    min-height: 66px;
    padding: 0 12px !important;
  }

  .mobile-menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .nav[data-mobile-nav] {
    top: 66px;
    height: calc(100dvh - 66px);
    padding: 24px 18px 36px;
  }
}

/* =========================================================
   ENLACES LEGALES DEL FOOTER DE DESARROLLO
========================================================= */

.dev-footer-legal-list a,
.dev-footer-cookie-button {
  color: #ffffff !important;
  font: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.dev-footer-cookie-button {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.dev-footer-legal-list a:visited {
  color: #ffffff !important;
}

.dev-footer-legal-list a:hover,
.dev-footer-legal-list a:focus-visible,
.dev-footer-cookie-button:hover,
.dev-footer-cookie-button:focus-visible {
  color: var(--cyan, #00e5ff) !important;
  opacity: 1;
}

/* =========================================================
   BOTÓN DE PROPUESTA ESPECIALIZADA — DESARROLLO
========================================================= */

.dev-industry-featured strong {
  position: relative;
  z-index: 3;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  width: fit-content;
  margin-top: 26px;
  padding: 17px 26px;

  background-color: var(--cyan, #00e5ff);
  border: 1px solid var(--cyan, #00e5ff);
  border-radius: 999px;

  color: #03131c !important;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;

  box-shadow:
    0 12px 30px rgba(0, 229, 255, 0.22),
    0 0 0 rgba(0, 229, 255, 0);

  transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Efecto al colocar el cursor sobre el botón */
.dev-industry-featured strong:hover,
.dev-industry-featured:focus-visible strong {
  transform: translateY(-4px);

  background-color: #ffffff;
  border-color: #ffffff;
  color: #03131c !important;

  box-shadow:
    0 18px 38px rgba(0, 229, 255, 0.3),
    0 0 24px rgba(0, 229, 255, 0.3);
}

/* Efecto al presionar */
.dev-industry-featured strong:active {
  transform: translateY(-1px) scale(0.98);
}

/* Adaptación para celular */
@media (max-width: 600px) {
  .dev-industry-featured strong {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
  }
}

/* =========================================================
   FONDO AMARILLO DORADO — PROPUESTAS DE DESARROLLO
========================================================= */

.dev-industries {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(255, 213, 0, 0.24) 0%,
      rgba(255, 213, 0, 0.10) 28%,
      transparent 52%
    ),
    linear-gradient(
      135deg,
      #090800 0%,
      #171300 48%,
      #211a00 72%,
      #090909 100%
    ) !important;
}

/* =========================================================
   TARJETAS AMARILLO DORADO — DESARROLLO POR INDUSTRIA
========================================================= */

.dev-industries {
  --dev-yellow: #ffd400;
  --dev-yellow-rgb: 255, 212, 0;
}

/* Tarjetas secundarias */
.dev-industry-card.has-cover-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--industry-cover);
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.dev-industry-card.has-cover-image > *:not(small) {
  position: relative;
  z-index: 1;
}

.dev-industry-card.has-cover-image > small {
  position: absolute;
  z-index: 2;
}

.dev-industry-card {
  background:
    linear-gradient(
      145deg,
      rgba(58, 48, 0, 0.96),
      rgba(28, 24, 0, 0.98)
    ) !important;

  border: 1px solid rgba(var(--dev-yellow-rgb), 0.42) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 14px 34px rgba(0, 0, 0, 0.24);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover de las tarjetas */
.dev-industry-card:hover {
  transform: translateY(-5px);

  border-color: var(--dev-yellow) !important;

  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(var(--dev-yellow-rgb), 0.22);
}

/* Cuadros con las siglas: HT, AT, ED, RT, etc. */
.dev-industry-card__code {
  color: var(--dev-yellow) !important;

  background: rgba(var(--dev-yellow-rgb), 0.09) !important;
  border-color: rgba(var(--dev-yellow-rgb), 0.58) !important;

  box-shadow:
    inset 0 0 18px rgba(var(--dev-yellow-rgb), 0.06),
    0 0 16px rgba(var(--dev-yellow-rgb), 0.08);
}

/* Badge de estado */
.dev-industry-card small {
  color: #ffe66d !important;
}

/* Títulos y descripciones */
.dev-industry-card h3 {
  color: #ffffff !important;
}

.dev-industry-card p {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Borde amarillo de la propuesta principal */
.dev-industry-featured {
  border-color: rgba(var(--dev-yellow-rgb), 0.62) !important;

  box-shadow:
    inset 0 0 70px rgba(var(--dev-yellow-rgb), 0.04),
    0 18px 44px rgba(0, 0, 0, 0.28);
}

/* Etiquetas: Aplicaciones, Dashboards, APIs, etc. */
.dev-industry-featured__tags span {
  color: #fff3a6 !important;
  background: rgba(var(--dev-yellow-rgb), 0.08) !important;
  border-color: rgba(var(--dev-yellow-rgb), 0.42) !important;
}

/* Botón amarillo de la propuesta principal */
.dev-industry-featured strong {
  background: var(--dev-yellow) !important;
  border-color: var(--dev-yellow) !important;
  color: #111000 !important;

  box-shadow:
    0 14px 32px rgba(var(--dev-yellow-rgb), 0.24),
    0 0 20px rgba(var(--dev-yellow-rgb), 0.12);
}

.dev-industry-featured strong:hover,
.dev-industry-featured:focus-visible strong {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111000 !important;

  box-shadow:
    0 18px 40px rgba(var(--dev-yellow-rgb), 0.34),
    0 0 28px rgba(var(--dev-yellow-rgb), 0.38);
}

/* Etiqueta superior de la propuesta */
.dev-industry-featured small,
.dev-industry-featured [class*="badge"],
.dev-industry-featured [class*="status"] {
  color: var(--dev-yellow) !important;
  border-color: rgba(var(--dev-yellow-rgb), 0.6) !important;
}

/* =========================================================
   CONVERTIR TONOS AZULES DE LA IMAGEN A AMARILLO
========================================================= */

/* Convertir todos los colores de la imagen a amarillo dorado */
.dev-industry-featured > img,
.dev-industry-featured:hover > img,
.dev-industry-featured:focus-visible > img {
  filter:
    grayscale(1)
    sepia(1)
    saturate(7)
    hue-rotate(350deg)
    brightness(0.82)
    contrast(1.15) !important;
}

/* =====================================================
   TÍTULO INDUSTRIAS — DESARROLLO DIGITAL
===================================================== */

.dev-industries__header h2 {
  max-width: 820px !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(2.4rem, 3.8vw, 4.25rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.045em !important;
}

@media (max-width: 760px) {
  .dev-industries__header h2 {
    max-width: 100% !important;
    font-size: clamp(2.15rem, 9.5vw, 3.2rem) !important;
    line-height: 1 !important;
  }
}

/* =====================================================
   TÍTULO DESTACADO — FINANZAS Y FINTECH
===================================================== */

.dev-industry-featured h3 {
  max-width: 700px !important;
  font-family: "Space Grotesk", sans-serif !important;
  font-size: clamp(2.15rem, 3.25vw, 3.7rem) !important;
  font-weight: 700 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.04em !important;
}

@media (max-width: 680px) {
  .industry-card__content h3,
  .av-industry-featured h3,
  .dev-industry-featured h3 {
    font-size: clamp(2rem, 10vw, 3rem) !important;
    line-height: 1 !important;
  }
}

a.dev-industry-card--available {
  text-decoration: none;
  color: inherit;
  border-color: rgba(var(--dev-yellow-rgb, 255, 212, 0), 0.55) !important;
}

a.dev-industry-card--available small {
  color: #ffe66d !important;
}

a.dev-industry-card--available:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(var(--dev-yellow-rgb, 255, 212, 0), 0.16);
}