.tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 120px auto;
}

.tile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
  aspect-ratio: 1;
  flex: 1 1 32%;
}

.blue-tile {
  align-items: center;
  background-color: #F3F9FE;
}

.tile-title {
  font-size: 42px;
  line-height: 1.3;
  font-family: Semi;
  margin-bottom: 16px;
  max-width: 340px;
}

.tile-desc {
  font-family: Medium;
  color: #7A7C83;
  line-height: 1.5;
  max-width: 320px;
}

.tile-box {
  display: flex;
  align-items: flex-end;
  color: #1582E7;
  font-family: Semi;
}

.tile-indicator {
  font-size: 114px;
  line-height: 1;
}

.tile-unit {
  font-size: 32px;
  line-height: 1.7;
}

.tile-label {
  font-size: 20px;
  font-family: Medium;
  line-height: 1.7;
}

.tile-image {
  position: relative;
  overflow: hidden;
}

.tile-img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  z-index: 1;
}

.tile-brand-btn {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
}

.tile-logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.7);
}
.tile-logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(2.5);
  width: 100px;
  height: 20px;
}

@media (max-width: 1100px) {
  .tile {
    flex: 1 1 49%;
  }
}
@media (max-width: 768px) {
  .tiles {
    margin: 32px 0 48px;
  }
  .tile {
    flex: 1 1 100%;
    aspect-ratio: unset;
  }
  .tile:first-child {
    margin-bottom: 24px;
  }
  .tile-title {
    font-size: 24px;
    font-family: Semi;
    line-height: 1.3;
  }
  .tile-desc {
    font-size: 14px;
    line-height: 1.4;
  }
  .tile-box {
    gap: 4px;
  }
  .tile-indicator {
    font-size: 54px;
    line-height: 1.1;
  }
  .tile-unit {
    font-size: 18px;
    line-height: 2;
  }
  .blue-tile {
    gap: 4px;
    padding: 24px;
  }
  .tile-label {
    font-size: 16px;
    line-height: 1.5;
  }
  .tile-image {
    display: flex;
    aspect-ratio: 328/130;
  }
}
@media (max-width: 480px) {
  .tile-brand-btn {
    width: calc(100% - 32px);
  }
}