/*single post + posts list*/

.single-post h1,
.news h1{
    text-align: center;
    margin-bottom: 98px;
}
.single-post .entry-footer,
.single-post .entry-meta{
    display: none;
}

.single-post .entry-content,
.news .entry-content {
    flex: 1;
    margin-right: 60px;
    margin-top: 0;
}

.single-post .single-right,
.news .single-right{
    width: 280px;
    flex-shrink: 0;
}
.single-post .outer-single,
.news .outer-single{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 120px;
}
.single-post date{
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 24px;
    font-weight: 500;
    display: block;
    line-height: 1;
}
.single-post p,
.news p{
    font-size: 16px;
    margin-bottom: 30px;
}
.single-post .outer-single .entry-content a{
    color: var(--orange);
}
.single-post .outer-single .entry-content a:hover{
    color: var(--blue);
}
.single-post .single-right h4,
.news .single-right h4{
    background: url('../img/single-right.webp') no-repeat center top;
    height: 56px;
    font-size: 18px;
    align-items: center;
    display: flex;
    padding-left: 22px;
    margin-bottom: 24px;
}
.single-post .single-right a,
.news .single-right a{
    font-size: 16px;
    color: #000;
    display: block;
    font-weight: 500;
    background: url('../img/dot.webp') no-repeat left top 8px;
    padding-left: 16px;
    line-height: 22px;
    margin-bottom: 14px;
    margin-left: 20px;
    margin-right: 20px;
}
.single-post .single-right a:hover,
.news .single-right a:hover{
    color: var(--blue);
}
.single-post article ul{
    margin-left: 0;
    padding-left: 0;
}
.single-post article ul li{
    list-style-type: none;
    font-size: 16px;
    display: block;
    font-weight: 500;
    background: url('../img/dot.webp') no-repeat left top 8px;
    padding-left: 16px;
    line-height: 22px;
    margin-bottom: 14px;
}

.news date{
    font-size: 14px;
    color: var(--blue);
    margin-bottom: 0;
    font-weight: 500;
    display: block;
    line-height: 1;
}
.news .post-list{
    background: url('../img/dot-list.webp') repeat-x center bottom;
    padding-bottom: 30px;
    margin-bottom: 26px;
}
.news .post-list a{
    display: block;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 4px;
}
.news .post-list a:hover{
    color: var(--orange);
}
.news .post-list p{
    margin: 0;
}


.acf-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.acf-gallery-grid a {
  display: block;
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* 4:3 ratio box — adjust if you want */
}

.gallery-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.acf-gallery-grid a:hover .gallery-thumb-img {
  transform: scale(1.05);
}

/* responsive */
@media (max-width: 900px) {
  .acf-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .acf-gallery-grid {
    grid-template-columns: 1fr;
  }
}

.outer-single a.more {
	border: 0;
	padding: 0 60px 0 0;
	margin-top: 60px;
	margin-left: auto;
}
.outer-single a.more:hover {
	background: transparent;
	color: var(--orange);
}
.outer-single a.more:hover::after {
	color: var(--blue);
}

@media (max-width:576px){
    .single-post h1, .news h1 {
        margin-bottom: 50px;
    }
    .single-post .entry-content, .news .entry-content {
        margin-right: 0;
    }
}
@media (min-width: 577px) {

}
@media (min-width: 577px) and (max-width:768px){

}
@media (max-width: 768px){
    .single-post .outer-single, .news .outer-single{
        display: block;
    }
    .outer-single a.more {
        margin-bottom: 60px;
    }
}
@media (min-width: 769px){

}
@media (min-width: 769px) and (max-width:991px){
}

@media (min-width: 992px) and (max-width:1200px){

}
@media (min-width: 1201px) and (max-width:1440px){

}
@media (min-width: 1441px){

}