@charset "UTF-8";
#news-container {
    min-height: 600px;
}
.News-Single__breadcrumb {
    height: 120px;
    background: #d9cbbb;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    width: 100%;
    justify-content: center;
}
.News-Single__breadcrumb div {
    width: 80%;
    min-width: 1200px;
    color: #8f8787;
}
.News-Single__breadcrumb a {
    margin: 0 10px;
    text-decoration: none;
    color: #8f8787;
    transition:0.5s;
}
.News-Single__breadcrumb a:first-child {
    margin-left:0;
}
.News-Single__breadcrumb a:hover{
    opacity:0.5;
}

.News-Single__breadcrumb span {
    color: #a13a28;
    margin-left: 10px;
}

.news-detail h2 {
    font-size: 30px;
    margin-bottom: 50px;
    border-bottom: #c5baba solid 1px;
    padding-bottom: 30px;
}

p.date {
    color: #8e8787;
    margin-bottom: 20px;
}

article {
    margin-bottom: 60px;
}
.news-detail ul {
    margin: 40px 0;
    font-size:18px;
}

.news-detail a {
  display: inline-block;
    text-decoration: none;
    background: white;
    padding: 8px 20px;
    font-size: 16px;
    color: #8e8798;
    transition:0.5s;
}
.news-detail a:hover {
    text-decoration: none;
    background: #af8a8a;
    padding: 8px 20px;
    font-size: 16px;
    color: #ffffff;
}
@media screen and (max-width: 1200px){
  .News-Single__breadcrumb div {
    min-width: auto;
  }
}
@media screen and (max-width: 800px){
  .News-Single__breadcrumb div {
    width: 95%;
  }
}
@media screen and (max-width: 600px){
  .news-detail ul {
    margin: 20px 0;
    font-size: 16px;
  }
  .news-detail h2 {
    font-size: 25px;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  p.date {
    margin-bottom: 10px;
  }
  .News-Single__breadcrumb {
    height: 85px;
  }
}
