.unit-box {
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(to bottom right, #fdfdfd, #f7f9fa);
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 24px;
  color: #333;
  box-sizing: border-box;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(44, 110, 165, 0.05);
}

.unit-box:hover {
  background-color: #f4f7fa;
  box-shadow: 0 4px 12px rgba(44, 110, 165, 0.12);
}

.unit-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
  font-size: 1em;
}

.unit-label {
  flex: 0 0 150px;
  font-weight: 600;
  color: #000;
}

.unit-value {
  flex: 1;
  color: #444;
}

.text-link {
  color: #2c6ea5;
  text-decoration: none;
  position: relative;
  font-weight: 500;
}

.text-link:hover {
  color: #174d79;
}

.text-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #2c6ea5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

@media screen and (max-width: 500px) {
  .unit-box {
    padding: 18px;
    font-size: 0.95em;
  }

  .unit-label {
    flex: 0 0 100px;
  }
}

a:visited {color: inherit;}
