@import url(./noticeList.css);

.noticeDetails-wrapper .details-title{
  color: #005BAC;
  font-size: 1.75rem;
  height: 4.5rem;
  line-height: 4.5rem;
  background-image:  linear-gradient(to right, #E3F0FF 0%, #EEF7FF 100%);
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.noticeDetails-wrapper .details-date{
  color: #7B808C;
  text-align: center;
  margin-bottom: 1.25rem;
}

.noticeDetails-wrapper .details-content{
 margin-bottom: 2.5rem; 
}


.noticeDetails-wrapper .pages-wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.noticeDetails-wrapper .pages-wrapper .btn{
  width: 16.375rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #005BAC;
  font-size: 1.5rem;
  background-image: url('../../images/notice/page-bg.png');
  background-size: cover;
  position: relative;
}

.noticeDetails-wrapper .pages-wrapper .btn::before{
  content: '';
  position: absolute;
  left: 2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  background-image: url('../../images/notice/page-icon.png');
  background-size: cover;
}



 main {
      background: #fff;
      border-radius: 16px;
      /* box-shadow: 0 8px 24px rgba(0,0,0,0.1);     */
      width: 100%;
      padding: 40px 30px;
      text-align: center;
    }

    .avatar {
      width: 140px;
      height: auto;
      border-radius: 5%;
      overflow: hidden;
      margin: 0 auto 20px;
      border: 2px solid #e0e0e0;
    }

    .avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    h1 {
      font-size: 26px;
      color: #222;
      margin: 0 0 20px;
    }

    p {
      font-size: 16px;
      color: #555;
      line-height: 1.8;
      text-align: justify;
    }

    @media (max-width: 480px) {
      main {
        padding: 30px 20px;
      }

      h1 {
        font-size: 22px;
      }

      p {
        font-size: 15px;
      }
    }