.profile {
  width: 90%;
  height: fit-content;
  margin: 30px 0px 100px 0px;
}
.profile-ttl {
  font-size: 30px;
  color: black;
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}
.profile-body {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: start;
  align-items: start;
}
.profile-body-short {
  width: 30%;
  height: fit-content;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
}
.profile-body-short-img {
  width: 100%;
  height: auto;
  image-rendering: -webkit-optimize-contrast; /* Untuk Safari & iOS */
}
.profile-body-detail {
  width: 100%;
  height: fit-content;
  flex: 1;
  display: flex;
  justify-content: center;
  justify-items: center;
  align-content: start;
  align-items: start;
}
.profile-body-detail-area {
  width: 90%;
  height: fit-content;
  display: flex;
  justify-content: start;
  justify-items: start;
  align-content: start;
  align-items: start;
  flex-direction: column;
}
.profile-body-detail-ttl {
  font-size: 35px;
  color: var(--first-color);
  margin: 0px;
  padding: 0px;
  margin-right: 10px;
}
.profile-body-detail-sttl {
  font-size: 25px;
  color: var(--second-color);
  margin: 0px;
  padding: 0px;
  margin-bottom: 20px;
}
.profile-body-detail-itm {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: start;
  justify-items: start;
  align-content: start;
  align-items: start;
  padding: 15px 0px;
}
.profile-body-detail-itm-ttl {
  width: 50%;
  height: fit-content;
  display: flex;
  justify-content: start;
  justify-items: start;
  align-content: center;
  align-items: center;
}
.profile-body-detail-itm-ttl-txt {
  font-size: 25px;
  color: var(--first-color);
  margin: 0px;
  padding: 0px;
}
.profile-body-detail-itm-des {
  width: 50%;
  height: fit-content;
  display: flex;
  justify-content: start;
  justify-items: start;
  align-content: center;
  align-items: center;
}
.profile-body-detail-itm-des-sm {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: start;
  justify-items: start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.profile-body-detail-itm-des-txt {
  font-size: 25px;
  color: black;
  margin: 0px;
  padding: 0px;
}
.profile-body-line {
  width: 100%;
  height: 2px;
  background-color: rgb(209, 209, 209);
}
.profile-body-detail-ms {
  text-decoration: none;
  cursor: pointer;
  color: black;
  font-size: 30px;
}
.profile-body-detail-ms:hover {
  color: var(--first-color);
  transition: 0.3s all ease;
}

@media screen and (min-width: 1200px) {
  .profile {
    width: 1150px;
  }
}
@media screen and (max-width: 1200px) {
  .profile {
    width: 90%;
  }
  .profile-body-short {
    width: 35%;
  }
}
@media screen and (max-width: 850px) {
  .profile-body-short {
    width: 100%;
  }
  .profile-body-detail {
    width: 100%;
    flex: none;
  }
  .profile-body {
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: center;
    justify-items: center;
    align-content: start;
    align-items: start;
    flex-direction: column;
  }
  .profile-body-detail-area {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .profile-ttl {
    font-size: 25px;
    color: black;
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
  }
  .profile-body-detail-ttl {
    font-size: 30px;
    color: var(--first-color);
    margin: 0px;
    padding: 0px;
    margin-right: 10px;
  }
  .profile-body-detail-sttl {
    font-size: 20px;
    color: var(--second-color);
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
  }
  .profile-body-detail-itm-ttl-txt {
    font-size: 20px;
    color: var(--first-color);
    margin: 0px;
    padding: 0px;
  }
  .profile-body-detail-itm-des-txt {
    font-size: 20px;
    color: black;
    margin: 0px;
    padding: 0px;
  }
  .profile-body-detail-ms {
    text-decoration: none;
    cursor: pointer;
    color: black;
    font-size: 25px;
  }
}
@media screen and (max-width: 400px) {
  .profile-ttl {
    font-size: 20px;
    color: black;
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
  }
  .profile-body-detail-ttl {
    font-size: 25px;
    color: var(--first-color);
    margin: 0px;
    padding: 0px;
    margin-right: 10px;
  }
  .profile-body-detail-sttl {
    font-size: 15px;
    color: var(--second-color);
    margin: 0px;
    padding: 0px;
    margin-bottom: 20px;
  }
  .profile-body-detail-itm-ttl-txt {
    font-size: 15px;
    color: var(--first-color);
    margin: 0px;
    padding: 0px;
  }
  .profile-body-detail-itm-des-txt {
    font-size: 15px;
    color: black;
    margin: 0px;
    padding: 0px;
  }
  .profile-body-detail-ms {
    text-decoration: none;
    cursor: pointer;
    color: black;
    font-size: 20px;
  }
}
