:root {
  --header-color: #326148;
  --header-bg-color: #e8efec;
  --card-border-color: #0e8a5e;

  --border-color: #dee2e6;
  --card-color: #0e8a5e;
  --dark-color: #221f20;
  --white-color: #ffffff;
  --timeline-border-color: #929497;
}

.page-header {
  background-color: var(--header-bg-color);
  padding: 48px 0;
  margin-bottom: 48px;

  .container {
    position: relative;

    &::before {
      content: "";
      width: 3px;
      height: 100%;
      background-color: var(--header-color);
      position: absolute;
      right: 0;
    }
  }

  .title {
    font-weight: 700;
    font-size: 36px!important;
    line-height: 40px;
    color: var(--header-color);
    margin-bottom: 16px;
  }

  .breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;

    li {
      font-weight: 700;
      color: var(--header-color);
      font-size: 14px;

      a {
        color: var(--header-color);
      }
    }

    .breadcrumb-item+.breadcrumb-item::before {
      color: var(--header-color);
      content: "\f104";
      font-family: "FontAwesome";
      font-weight: 900;
    }
  }
}

.new-member-profile {
  border: 2px dotted var(--card-border-color);
  border-radius: 8px;
  border-spacing: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.new-member-profile .member-body {
  display: flex;
  align-items: center;
  padding: 20px 16px;
  flex: 1;
}

.new-member-profile .member-body img {
  flex: 0 0 auto;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  border: 3px solid var(--card-border-color);
  object-fit: cover;
  object-position: top center;
}

.new-member-profile .member-body .img-icon {
  border: 3px solid var(--card-border-color);
  border-radius: 100%;
  overflow: hidden;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.new-member-profile .member-body .img-icon .fa {
  color: var(--card-color);
  font-size: 120px;
  transform: translateY(15px);
}

.new-member-profile .member-body .inner-text {
  width: 100%;
  padding-inline-start: 16px;
}

.new-member-profile .member-body .inner-text p {
  color: var(--card-color);
  text-align: center;
  font-weight: 600;
  margin: 0 0 8px 0;
  line-height: 1.4;
  font-size: 15px;
}

.new-member-profile .member-body .inner-text p:last-child {
  margin-bottom: 0;
}

.new-member-profile .member-footer {
  width: 100%;
  flex: 0 0 auto;
  padding: 12px 16px;
  background-color: #e8efec;
  color: var(--card-color);
  margin-top: auto;
}

.new-member-profile .member-footer p {
  text-align: center;
  font-weight: 500;
  font-size: 13px;
  margin: 0;
  line-height: 1.3;
}

/* Column layout for smaller cards */
.new-member-profile.column {
  border-style: solid;
}

.new-member-profile.column .member-body {
  flex-direction: column;
  text-align: center;
  padding: 20px 12px 16px;
}

.new-member-profile.column .member-body img,
.new-member-profile.column .member-body .img-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 12px;
}

.new-member-profile.column .member-body .img-icon .fa {
  font-size: 100px;
}

.new-member-profile.column .member-body .inner-text {
  padding-inline-start: 0;
  margin-top: 0;
}

.new-member-profile.column .member-body .inner-text p {
  font-size: 12px;
  line-height: 1.3;
  font-weight: 500;
  margin-bottom: 4px;
}

.new-member-profile.column .member-body .inner-text p:last-child {
  margin-bottom: 0;
}

.new-member-profile.column .member-footer {
  padding: 10px 12px;
}

.new-member-profile.column .member-footer p {
  font-size: 11px;
  line-height: 1.2;
}

/* Mobile responsive styles */
@media (max-width: 767.98px) {
  .new-member-profile .member-body {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
  }

  .new-member-profile .member-body img,
  .new-member-profile .member-body .img-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 12px;
  }

  .new-member-profile .member-body .img-icon .fa {
    font-size: 80px;
  }

  .new-member-profile .member-body .inner-text {
    padding-inline-start: 0;
  }

  .new-member-profile .member-body .inner-text p {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 4px;
  }

  .new-member-profile .member-footer {
    padding: 8px 12px;
  }

  .new-member-profile .member-footer p {
    font-size: 11px;
    line-height: 1.2;
  }

  .new-member-profile.column .member-body img,
  .new-member-profile.column .member-body .img-icon {
    width: 70px;
    height: 70px;
  }

  .new-member-profile.column .member-body .img-icon .fa {
    font-size: 70px;
  }

  .new-member-profile.column .member-body .inner-text p {
    font-size: 11px;
  }

  .new-member-profile.column .member-footer p {
    font-size: 10px;
  }
}

/* Extra small mobile devices */
@media (max-width: 575.98px) {
  .new-member-profile .member-body {
    padding: 12px 8px;
  }

  .new-member-profile .member-body img,
  .new-member-profile .member-body .img-icon {
    width: 70px;
    height: 70px;
  }

  .new-member-profile .member-body .img-icon .fa {
    font-size: 70px;
  }

  .new-member-profile .member-body .inner-text p {
    font-size: 12px;
  }

  .new-member-profile.column .member-body img,
  .new-member-profile.column .member-body .img-icon {
    width: 60px;
    height: 60px;
  }

  .new-member-profile.column .member-body .img-icon .fa {
    font-size: 60px;
  }

  .new-member-profile.column .member-body .inner-text p {
    font-size: 10px;
  }

  .new-member-profile.column .member-footer p {
    font-size: 9px;
  }
}
.center-section-title{
  display: flex;
  justify-content: center;
  margin: 32px;
  .title{
    font-size: 16px!important;
    font-weight: 700;
    padding: 8px 24px 12px;
    color: var(--header-color);
    background-color: var(--header-bg-color);
  }
}

.iconed-text{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 32px 0;
  .icon{
    width: 64px;
    height: 64px;
    flex: 0 0 auto;
    background-color: var(--header-color);
    border-radius: 100%;
    img{
      padding: 12px;
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
  .inner-text{
    .text{
      color: var(--dark-color);
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
      margin-bottom: 24px;
    }
  }
}

.lg-title-with-bg{
  margin: 32px 0;
  display: inline-block;
  width: 100%;
  .title{
    background-color: var(--card-color);
    color: var(--white-color);
    font-size: 24px;
    font-weight: 700;
    padding: 8px 32px 10px;
    display: inline-block;
    margin-bottom: 0;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    .icon{
      display: inline-block;
      width: 38px;
      height: 38px;
      margin-inline-end: 12px;
      img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    &.md{
      font-size: 18px;
      padding-right: 14px;
      padding-left: 14px;
    }
  }
  &.centered{
    display: flex;
    justify-content: center;
  }
}
.timeline-list{
  margin-bottom: 48px;
  li{
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    .header{
      display: flex;
      gap: 16px;
      align-items: center;
      .number{
        color: var(--white-color);
        width: 54px;
        height: 54px;
        background-color: var(--card-color);
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        font-weight: 700;
      }
      .text{
        font-size: 24px;
        font-weight: 700;
      } 
    }
    .body{
      padding-inline-start: 64px;
      padding-bottom: 64px;
      .text{
        color: var(--dark-color);
        font-size: 18px;
        font-weight: 600;
        line-height: 28px;
      }
    }
    &::before{
      content: "";
      width: 6px;
      background-color: var(--timeline-border-color);
      position: absolute;
      inset-inline-start: 27px;
      transform: translateX(50%);
      top: 0;
      bottom: 0;
      z-index: -1;
    }
    &:last-child {
      &::before{
        content: none;
      }
      .body{
        padding-bottom: 0;
      }
    }
  }
}

.vision-item{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 24px 0;
  .header{
    display: flex;
    gap: 16px;
    align-items: center;
    .icon{
      width: 64px;
      height: 64px;
      flex: 0 0 auto;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      img{
        padding: 12px;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    .title{
      font-size: 34px;
      font-weight: 600;
      color: var(--card-color);
      margin: 0;
    }
  }
  .body{
    padding-inline-start: 80px;
    .text{
      color: var(--dark-color);
      font-size: 18px;
      font-weight: 600;
      line-height: 28px;
    }
  }
  .icons-list{
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 12px;
    li{
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .icon{
      width: 76px;
      height: 76px;
      flex: 0 0 auto;
      border-radius: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      img{
        padding: 8px;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    .text{
      color: var(--dark-color);
      font-size: 16px;
      font-weight: 700;
      text-align: center;
    }
  }
}

.bordered-card-list{
  margin-bottom: 32px;
  .bordered-card{
    display: flex;
    flex-direction: column;
    border: 1.5px solid var(--card-border-color);
    border-radius: 8px;
    padding: 16px 16px 24px;
    gap: 16px;
    height: 100%;
    .head{
      display: flex;
      align-items: center;
      gap: 8px;
      align-items: center;
      width: 100%;
      .icon{
        width: 64px;
        height: 48px;
        flex: 0 0 auto;
        border-radius: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        img{
          padding: 0;
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .title{
        font-size: 18px;
        width: calc(100% - 72px);
        font-weight: 700;
        color: var(--card-color);
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .text{
      width: 100%;
      flex: 0 0 auto;
      font-size: 16px;
      font-weight: 600;
    }
  }
}

.bgs-card-list{
  margin-bottom: 32px;
    .bgs-card{
      display: flex;
      flex-direction: column;
      background-color: var(--header-bg-color);
      border-radius: 4px;
      padding: 16px 24px;
      gap: 16px;
      height: 100%;
    }
    .head{
      .title{
        font-size: 17px;
        font-weight: 700;
        color: var(--card-color);
        margin-bottom: 0;
        line-height: 28px;
      }
    }
}

.members-list{
  .member-card{
    height: 100%;
    .member-logo{
      padding: 12px;
      width: 100%;
      height: 150px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--header-bg-color);
      border-top: 4px solid var(--card-border-color);
      img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }
    .title{
      font-size: 14px;
      font-weight: 700;
      background-color: var(--card-color);
      color: var(--white-color);
      margin: 0;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px;
      line-height: 23px;
      height: 62px;
    }
  }
}

.excutive-word-text{
  border-top: 12px solid var(--card-border-color);
  padding: 6px 10px 16px;
  background-color: var(--header-bg-color);
  .text{
    color: var(--card-color);
    font-size: 17px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 24px;
    &.bold-centered{
      width: 100%;
      text-align: center;
      font-weight: 700;
      margin-bottom: 8px;
    }
  }
}

.excutive-word-info{
  .image{
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0;
    border: 6px solid var(--card-border-color);
    img{
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: bottom center;
    }
  }
  .title{
    font-size: 15px;
    font-weight: 700;
    color: var(--card-color);
    margin: 0;
    padding: 6px 8px 8px;
    border-bottom: 4px solid var(--card-border-color);
    .row-txt{
      display: block;
      line-height: 24px;
      text-align: center;
    }
  }
  .description{
    font-size: 15px;
    font-weight: 600;
    color: var(--card-color);
    padding: 8px;
    text-align: justify;
    margin-bottom: 48px;
  }
}

.search-form{
  input{
    line-height: 32px;
  }
}

.new-tabs-wrapper{
  margin: 64px 0;
  .nav-tabs{
    justify-content: center!important;
    gap: 16px;
    border: none;
    margin-bottom: 24px;
    .nav-link{
      padding: 14px 32px;
      font-size: 16px!important;
      font-weight: 600!important;
      margin-bottom: 0!important;
      min-width: 180px;
      border-radius: 0;
      position: relative;

      box-shadow: 0 0 10px rgba(112, 112, 112, 0.2);
      text-align: center;
      color: var(--dark-color)!important;
      &.active{
        border-color: #dee2e6;
        background: linear-gradient(to right, #0e8a5e, #056245);
        color: var(--white-color)!important;
      }
    }
  }
  .tab-content{
    border-top: 1px solid #dee2e6;
    padding: 12px 0;
    .new-system-card{
      width: 100%;
      display: flex;
      padding: 8px;
      gap: 8px;
      border: 1px solid var(--border-color);
      box-shadow: 2px 2px 2px rgba(112, 112, 112, 0.2);
      .image{
        overflow: hidden;
        width: 150px;
        height: 225px;
        box-shadow: 1px 2px 2px rgba(112, 112, 112, 0.14);
        img{
          width: 100%;
          height: 100%;
          object-fit: contain;
        }
      }
      .inner-content{
        display: flex;
        flex-direction: column;
        padding: 0 16px;
        width: calc(100% - 158px);
        .title{
          font-size: 18px;
          font-weight: 700;
          color: var(--card-color);
          margin: 32px 0 8px;
        }
        .footer{
          margin-top: auto;
          border-top: 1px solid var(--border-color);
          display: flex;
          flex-wrap: wrap;
          padding: 12px 0;
          gap: 16px;
          .info{
            width: calc(100% - 126px);
            display: flex;
            flex-direction: column;
            gap: 6px;
            .tags{
              display: flex;
              gap: 16px;
              .tag{
                background-color: var(--border-color);
                padding: 4px 8px;
                font-size: 12px;
                font-weight: 700;
                border-radius: 2px;
                &.green{
                  background-color: var(--card-color);
                  color: var(--white-color);
                }
              }
            }
            .dates{
              display: flex;
              flex-direction: column;
              gap: 4px;
              .date{
                display: flex;
                color: var(--card-color);
                font-size: 12px;
                font-weight: 700;
                line-height: 18px;
                .key{
                  white-space: nowrap;
                }
              }
            }
          }
          .action{
            width: 110px;
            .btn{
              min-width: 110px;
              background-color: var(--card-color);
              color: var(--white-color);
              font-size: 14px;
              font-weight: 700;
              border-radius: 0;
              padding: 10px 16px;
            }
          }
        }
      }
    }
  }
}

.system-single{
  aside{
    border: 0.076rem solid var(--card-border-color);
    border-radius: 8px;
    height: 100%;
    .title{
      font-size: 16px;
      font-weight: 700;
      color: var(--card-color);
      margin: 0 0 16px;
      border-bottom: 0.076rem solid var(--card-border-color);
      padding-bottom: 16px;
    }
    .search-form{
      margin-bottom: 16px;
      input{
        line-height: 18px;
        box-shadow: none;
        border: 0.076rem solid var(--card-border-color);
        border-radius: 4px;
        padding: 4px 8px;
        text-align: center;
        font-weight: 600;
        &::placeholder {
          font-weight: 600;
          color: var(--card-color);
          opacity: 1;
        }
      }
    }
    .content-list{
      list-style: disc;
      padding-inline-start: 16px;
      li{
        color: var(--card-color);
        font-weight: 700;
        font-size: 12px;
        margin-bottom: 4px;
        a{
          color: var(--card-color);
          font-weight: 700;
          font-size: 12px;
        }
      }
    }
  }
  .inner-container{
    height: 100%;
    padding: 0!important;
    .meta-info{
      border: 0.076rem solid var(--card-border-color);
      border-radius: 8px;
      padding: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 32px;
      .info-item{
        display: flex;
        gap: 6px;
        .icon{
          width: 32px;
          height: 32px;
          flex: 0 0 auto;
          img {
            width: 100%;
            height: 100%;
            object-fit: contain;
          }
        }
        .text-wrapper{
          display: flex;
          flex-direction: column;
          .text{
            color: var(--card-color);
            font-size: 11px;
            font-weight: 700;
          }
          ul{
            list-style: disc;
            padding-inline-start: 16px;
            margin-top: 16px;
            li{
              font-size: 11px;
              font-weight: 700;
              color: var(--card-color);
            }
          }
        }
      }
    }
    article{
      h3{
        font-size: 18px;
        font-weight: 700;
        color: var(--card-color);
        margin: 32px 0 10px;
      }
      p{
        font-size: 16px;
        font-weight: 600;
        color: var(--card-color);
        margin-bottom: 6px;
      }
    }
  }
}

.media-bg-wrapper{
  background-color: var(--header-bg-color);
  padding: 16px;
  border-radius: 8px;
  .media-card{
    border: 0.076rem solid var(--card-border-color);
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    img{
      width: 100%;
      height: 200px;
      object-fit: cover;
      object-position: top center;
      border: 0.076rem solid var(--card-border-color);
      border-radius: 8px;
      &.contained{
        background-color: var(--white-color);
        object-fit: contain;
        padding: 8px;
      }
    }
    .title{
      font-size: 14px;
      font-weight: 700;
      color: var(--white-color);
      background-color: var(--card-color);
      padding: 4px 8px 6px;
      text-align: center;
      border-radius: 6px;
      margin: 0;
    }
    .name{
      font-size: 14px;
      font-weight: 700;
      color: var(--card-color);      
      margin: 0;
      text-align: center;
    }
    .action{
      display: flex;
      justify-content: flex-end;
      color: var(--card-color);
      margin-top: 6px;
      .icon{
        font-size: 22px;
      }
    }
  }
}