.banner{
    background: linear-gradient(98deg, #A47052 1%, #D5A971 101%), #F6F6F6;
    width: 100%;
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    min-height: 246px;
    position: relative;
}
.banner::before{
    position: absolute;
    content: '';
    inset: 0;
    background: url(../img/announcementDetails.png) no-repeat;
    background-size: 80% auto;
    background-position: -145px -30px;
}
.banner .wrap{
    display: flex;
    justify-content: space-between;
    align-items: center;   
    padding-top: 50px;
}
.banner .wrap>div:first-of-type{
    font-size: 48px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 0em;
    color: #FFFFFF;
    position: relative;
}
.banner .wrap>div:first-of-type::before{
    position: absolute;
    content: '';
    top: -20px;
    width: 56px;
    height: 8px;
    background: #FFFFFF;
}
.banner .wrap>div:last-of-type{
    font-size: 24px;
    font-weight: 600;
    line-height: 44px;
    text-align: right;
    text-transform: uppercase;
    color: #E2E2E2;
    display: flex;
    align-items: center;
    gap: 12px;
}
.banner .wrap>div:last-of-type>img{
    width: 23px;
    height: 16px;
}
.detail{
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 500px;
    padding: 64px 0;
}
.detail .title{
    font-size: 20px;
    font-weight: bold;
    line-height: 20px;
    letter-spacing: 0.06em;
    color: #333333;
}
.detail .time{
    font-size: 14px;
    font-weight: normal;
    line-height: 16px;
    color: #999999;
    margin: 20px 0 23px;
}
.detail .content{
    font-size: 14px;
    font-weight: normal;
    line-height: 22.4px;
    text-align: justify;
    letter-spacing: 0em;
    color: #3D3D3D;
}