/* laboAll.css - Page-specific overrides only */

h1 {
  border-bottom: #4a69a4 1px solid;
}

.title1 {
  height: 350px;
  padding-top: 150px;
}

.content_card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 300px;
  border-top: solid #88b2d1 2px;
}

.arrow-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  color: #4a69a4;
}

.arrow-link::after {
  content: ' →';
  margin-left: 8px;
  transition: margin-left 0.3s ease;
}

.arrow-link:hover::after {
  margin-left: 16px;
}

@media screen and (max-width: 480px) {
  .content_card {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }
}
