/* ================================
   DANA Also Products Block
================================ */

.dana-also-section {
  margin: 46px 0 34px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top left, rgba(0, 122, 255, 0.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(0, 214, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1728 48%, #050914 100%);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(2, 8, 23, 0.28);
}

.dana-also-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.35;
  pointer-events: none;
}

.dana-also-section > * {
  position: relative;
  z-index: 2;
}

.dana-also-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 26px;
}

.dana-also-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding: 7px 12px;
  border: 1px solid rgba(73, 182, 255, 0.35);
  border-radius: 999px;
  background: rgba(12, 32, 55, 0.8);
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.dana-also-header h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.dana-also-header p {
  max-width: 720px;
  margin: 0;
  color: rgba(226, 232, 240, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.dana-also-header-badge {
  min-width: 190px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(125, 211, 252, 0.22);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.dana-also-header-badge span {
  display: block;
  margin-bottom: 4px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 700;
}

.dana-also-header-badge strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
}

.dana-also-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dana-also-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 18px 42px rgba(2, 8, 23, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.dana-also-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(14, 116, 144, 0.28);
  border-color: rgba(56, 189, 248, 0.8);
}

.dana-also-card-featured {
  border: 1px solid rgba(56, 189, 248, 0.95);
  box-shadow:
    0 20px 55px rgba(14, 165, 233, 0.26),
    0 0 0 1px rgba(56, 189, 248, 0.18);
}

.dana-also-image-wrap {
  position: relative;
  height: 190px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  overflow: hidden;
}

.dana-also-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.35s ease;
}

.dana-also-card:hover .dana-also-image-wrap img {
  transform: scale(1.05);
}

.dana-also-label {
  position: absolute;
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(2, 8, 23, 0.82);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  backdrop-filter: blur(8px);
}

.dana-also-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  color: #0f172a;
}

.dana-also-content h3 {
  min-height: 52px;
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.dana-also-content p {
  margin: 0 0 18px;
  color: #475569;
  font-size: 13.5px;
  line-height: 1.55;
}

.dana-also-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #e2e8f0;
  color: #0066cc;
  font-size: 13px;
  font-weight: 900;
}

.dana-also-footer b {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #007aff, #00c2ff);
  color: #ffffff;
  font-size: 17px;
  transition: transform 0.25s ease;
}

.dana-also-card:hover .dana-also-footer b {
  transform: translateX(3px);
}

/* Tablet */
@media (max-width: 1100px) {
  .dana-also-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dana-also-image-wrap {
    height: 210px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  .dana-also-section {
    margin: 34px -10px 28px;
    padding: 24px 16px;
    border-radius: 24px;
  }

  .dana-also-header {
    flex-direction: column;
    gap: 16px;
  }

  .dana-also-header-badge {
    width: 100%;
    min-width: 0;
  }

  .dana-also-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .dana-also-card {
    min-width: 82%;
    scroll-snap-align: start;
    border-radius: 22px;
  }

  .dana-also-image-wrap {
    height: 190px;
  }

  .dana-also-content h3 {
    min-height: auto;
    font-size: 15px;
  }

  .dana-also-content p {
    font-size: 13px;
  }
}