.landing {
  padding: 40px 20px 20px;
  background-color: #98d1fc;
  margin-top: 50px;
}

.landing .profile {
  display: flex;
  background-color: white;
}

.landing .profile .left {
  min-width: 230px;
  padding: 10px;
  position: relative;
}

.landing .profile .left .img img {
  max-width: 100%;
  margin-left: 15px;
  margin-top: 15px;
  border-radius: 50%;
}

.landing .profile .left .name {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.landing .profile .left .name span {
  font-size: 16px;
  font-weight: 400;
}
.landing .profile .right {
  margin-left: 10px;
  position: relative;
  padding: 10px 20px;
}
.landing .profile .right::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  left: -10px;
  background-color: #ddd;
  border-radius: 10px;
}
.landing .profile .right h3 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
  color: #279eff;
}
.landing .profile .right .desc {
  line-height: 30px;
  opacity: 0.8;
}
.landing .container {
  margin: 20px 0px;
  background-color: white;
  padding: 20px;
}
.landing .container h3 {
  color: #279eff;
  margin: 30px 0;
  width: fit-content;
  font-weight: 900;
}
.points p {
  border-bottom: 1px solid #ece9e9;
  padding: 10px 0px;
  opacity: 0.8;
}
.points p span:nth-child(1) {
  color: #279eff;
  font-weight: 700;
}
.points p span:nth-child(2) {
  color: red;
  font-weight: 600;
}
.article p {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  opacity: 0.8;
}
.article p a {
  color: #212529;
}
.article .more a {
  color: #27a9fa;
  font-weight: 600;
}
@media (max-width: 760px) {
  .landing .profile {
    display: block;
  }

  .landing .profile .left,
  .landing .profile .right {
    width: 100%;
    margin-left: 0;
  }

  .landing .profile .left .img {
    display: flex;
    justify-content: center;
  }

  .landing .profile .left .img img {
    margin-left: 0;
    margin-top: 0;
  }

  .landing .profile .right::before {
    width: 100%;
    height: 2px;
    left: 0;
    top: -20px;
    border-radius: 0;
  }

  .landing .profile .right {
    padding-top: 30px;
  }
}