/*================================================
  Brand
================================================*/

/*------------------------------------------------
  About
------------------------------------------------*/

.about__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}
.about__item {
  width: calc(50% - calc(var(--layout-gap)/4));
  max-width: 560px;
}
.about__item > a {
  display: block;
}

.about__image {
  border-radius: 20px;
  overflow: hidden;
}

.about__title {
  margin-top: calc(var(--layout-gap) / 4);
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
}

.about__title > span {
  display: block;
}


@media print, screen and (min-width: 769px) {
  .about__list {
    justify-content: space-between;
    gap: 40px;
  }
  .about__item {
    width: calc(50% - calc(var(--layout-gap)/2));
  }
  .about__title {
    margin-top: calc(var(--layout-gap) / 2);
    font-size: 2rem;
  }

  /* Hover Style */

  .about__item > a:hover {
    opacity: 1;
  }

  .about__item > a img {
    transition: transform 0.3s linear;
  }

  .about__item > a:hover img {
    transform: scale(1.1);
    transition: transform 0.3s linear;
  }
}
