/* Style for the container holding the links */
.link-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
}

.link-row__text {
  color: #000;
  text-align: center;
  font-family: "Kanit", sans-serif;
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.96px;
  margin-bottom: 20px;
}

/* Style for each link within the link row */
.link-row__link {
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 15px;
}

/* Additional style for an Instagram link within the link row */
.link-row__link--instagram {
  width: 40px;
  height: 40px;
  background-image: url("../images/instagram.png");
}

/* Additional style for a Facebook link within the link row */
.link-row__link--facebook {
  width: 20px;
  height: 40px;
  background-image: url("../images/facebook.png");
}

/* Additional style for a menu link within the link row */
.link-row__link--menu {
  width: 32px;
  height: 40px;
  background-image: url("../images/menu-icon.svg");
}

/* Additional style for a legacy link within the link row */
.link-row__link--legacy {
  width: 35px;
  height: 60px;
  background-image: url("../images/legacy.svg");
}

/* Additional style for a email link within the link row */
.link-row__link--email {
  width: 45px;
  height: 30px;
  background-image: url("../images/email.svg");
}
