

/* CARD */
.transport-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* TITLE */
.transport-title {
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  text-align:center;
}



/* IMAGE FLOAT */
.transport-image {
  float: left;
  width: 320px;
  margin-right: 20px;
  margin-bottom: 10px;
}

.transport-image img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s;
}

.transport-image img:hover {
  transform: scale(1.05);
}

/* TEXT */
.transport-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 12px;
}

/* CLEAR FLOAT */
.clearfix {
  clear: both;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .transport-image {
    float: none;
    width: 100%;
    margin: 0 0 15px 0;
  }

  .transport-card {
    padding: 20px;
  }
}