﻿@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;
}
 article {
      display: flex;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      overflow: hidden;
      /* max-width: 720px; */
      /* margin: 20px auto; */
      transition: all 0.25s ease;
    }

    article:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    figure {
      margin: 0;
      flex-shrink: 0;
    }

    figure img {
      width: 100%;
      height: 150px;
      object-fit: cover;
      display: block;
    }

    .content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5px 24px;
    }

    .content h2 {
      margin: 0 0 12px;
      font-size: 20px;
      font-weight: 600;
      color: #222;
      line-height: 1.4;
    }

    .meta {
      font-size: 14px;
      color: #777;
      display: flex;
      gap: 20px;
      flex-direction: column;
      
    }

    .meta time,
    .meta span {
      white-space: nowrap;
    }