.winemakers-section{
    display:flex;
    width: 100%;
    flex-direction: column;
}
.winemakers-section > h1{
    display: none;
}

.winemakers-section .title{
    text-align: center;
}

.winemakers-section .title p{
    margin-bottom: 0;
    font-style: italic;
}

.winemaker-list{
    list-style: none;
    margin: 0px;
    width: 100%;
    max-width: 774px;
    padding: 0px;

}
.winemaker-list li{
    width: 100%;
    display: flex;
    flex-direction: column;
    margin-bottom: 56px;
}

.winemaker-list li .winemaker-cover{
    display: flex;
    flex-direction: row;
    width: 100%;
    background-color: #EBE8D9;
}
.winemaker-list li .winemaker-cover .winemaker-img{
    width: 290px;
    height:420px;
    display: flex;
    flex-direction: row;
}

.winemaker-list li .winemaker-cover .winemaker-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.winemaker-list li .winemaker-cover .winemaker-info{
    width: calc(100% - 290px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30.6px 32px;
    justify-content: flex-start;
}
.winemaker-list li .winemaker-cover .winemaker-info p{
    margin-bottom: 24px;
    width: 100%;
}

.winemaker-link{
    display: flex;
    flex-direction: row;
    width: 100%;
}

.winemaker-link-box .winemaker-link { margin-top: 20px; }
.winemaker-link-box .winemaker-link:first-child{ margin-top: 0; }

.winemaker-link a{
    display: inline-block;
    text-transform: uppercase;
    /* text-decoration: underline; */
    font-size: 11px;
    position: relative;
    margin-right: 24px;
	letter-spacing: 0.2em;
}
.winemaker-link a:last-child{
    margin-right: 0px;
}
/*.winemaker-link a:last-child:after{
    content: none;
}*/

/* .winemaker-link a.modal-toggle:after{
    content: none;
} */

/* .winemaker-link a::after{
    content: "";
    position: absolute;
    right: -12px;
    background-color: #BCBCBC;
    width: 1px;
    height: 12px;
    top:50%;
    transform: translateY(-50%);
} */

.winemaker-list li:nth-child(even) .winemaker-cover .winemaker-info{
    order:1;
}
.winemaker-list li:nth-child(even) .winemaker-cover .winemaker-img{
    display: flex;
    order:2;
}
.winemaker-list li:last-child{
    margin-bottom: 0px;
}

.read-more-collapse{
    display: none;
}

.modal-video{
    position: relative;
}

.video-icon{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left:0;
    right:0;
    margin:0 auto;
}
.video-icon p{
    font-size: 13px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color:#ffffff;
}

.video-icon a {
  display: inline-block;
  width: 108px;
  height: 108px;
  /*border:1px solid #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;*/
  margin: 0 auto;
  background: url(../images/Play_button.svg) no-repeat left top;
}

.video-icon a .shape{
    border-top: 15px solid transparent;
	border-left: 30px solid #ffffff;
    border-bottom: 15px solid transparent;
    display: inline-block;
}

.modal-desc{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 520px;
    margin:0 auto;
}
.modal-desc p{
    color:#ffffff;
}

.modal-video-open{
    width: 100%;
    display: none;
}
.modal-video-open iframe{
    width: 100%;
    height: 438px;
	background-color:#000;
}

.modal-body-inner.is-open .modal-video{
    display: none;
}

.modal-body-inner.is-open .modal-video-open{
    display: block;
}
.modal .modal-body-inner .modal-video .modal-img{
    height: 438px;
    width: 100%;
}
.modal .modal-body-inner .modal-video .modal-img img{
    object-fit: cover;
    height: 100%;
    width: 100%;
}



.modal {
    position: fixed;
    top: 0%;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transition: 1s;
    -webkit-transition:1s;
    -moz-transition:1s;
    -o-transition:1s;
    height: 0px;
	display:flex;
	align-items:center;
	justify-content:center;
}

body.is-open .modal {
   overflow: hidden;
    opacity: 1;
    visibility: visible;
	height:100%
}


.modal-wrapper {
  position: relative;
  margin:0 auto;
  max-width: 88.125vw;
  width: 100%;
  padding: 54px 64px 64px;
  background-color: #F3F1E6;
  transition: 0.6s;
  -webkit-transition:0.6s;
  -moz-transition:0.6s;
  -o-transition:0.6s;
}

.modal-header {
    position: absolute;
    top: 0;
    right: 0;
    background: none;
    border: 0;
    padding: 1.875vw;
}

.modal-header a svg{
    width: 25px;
    fill:#000;
}

.modal .modal-content{
    text-align: center;
    width: 100%;
}
.modal .modal-content h2{
    margin:0 0 1.641vw;
}

.modal-close img{
    width: 24px;
}

.modal .modal-body-inner{
    width: 100%;
}
.modal .modal-body-inner .modal-video{
    width: 100%;
}
.modal .modal-body-inner .modal-video iframe{
    width: 100%;
    height: 34.219vw;
}
.modal-wrapper {
    padding: 4.375vw 5vw 5vw;
    max-width: 88.125vw;
}


.page-template-tpl-winemakers .title {
  margin-bottom: 35px;
}
.page-template-tpl-winemakers h2 {
    margin-bottom: 0;
}


@media screen and (min-width:1280px){
    .page-template-tpl-winemakers .title {
      margin-bottom: 3.906vw;
    }
    .modal-video-open iframe{
        height:34.219vw ;
    }
    .modal .modal-body-inner .modal-video .modal-img{
        height:34.219vw;
    }
    .modal-desc{
        max-width: 40.625vw;
    }
    .video-icon p{
        font-size:1.016vw;
    }
    .video-icon a {
        width: 8.438vw;
        height: 8.438vw;
    }
    .video-icon a .shape{
        border-top: 1.172vw solid transparent;
        border-left: 2.344vw solid #ffffff;
        border-bottom:1.172vw solid transparent;

    }
    .winemaker-list{
        max-width: 60.469vw;
        padding: 0px;
    }
	   .modal-header a svg{
        width:1.953vw;
    }
    .winemaker-list li .winemaker-cover .winemaker-info p{
        margin-bottom: 1.875vw;
    }
    /* .winemaker-link a::after{
        width:0.078vw;
        height:0.938vw;
        right:-0.938vw;
    } */
    .winemaker-link-box .winemaker-link { margin-top: 1.5625vw; }
    .winemaker-link a{
        font-size:0.859vw;
        margin-right: 1.875vw;
    }
    .winemaker-link a:last-child{
        margin-right: 0px;
    }
    .winemaker-list li{
        margin-bottom:4.375vw;
    }
    .winemaker-list li .winemaker-cover .winemaker-img{
        width: 22.7vw;
        height: 28.7vw !important;

    }
    .winemaker-list li .winemaker-cover .winemaker-info{
        width: calc(100% - 22.7vw);
        padding: 2.391vw 2.500vw;
    }
}


@media screen and (max-width:1279px){

    .modal-wrapper {
        max-width: 1128px;
        margin: 100px auto;
    }
    .modal .modal-content h2{
        margin: 0 0 21px;
		padding:0 25px;
    }
    .modal-wrapper{
        padding: 54px 64px 64px;
    }

    .modal .modal-body-inner .modal-video iframe{
        height: 438px;
    }

    .modal-header {
        padding: 24px;
    }
	.modal{
		padding:0 20px;
	}

}

@media screen and (max-width:1023px){
    .winemaker-list li{
        margin-bottom: 40px;
    }
    .winemaker-list li .winemaker-cover .winemaker-info{
        padding: 30px;
    }
    .winemaker-list{
        max-width: 100%;
    }
    .modal-wrapper{
        padding: 44px 50px 50px;
    }
    .modal{
        padding: 0 15px;
    }
}

@media screen and (max-width:767px){
    .winemaker-list li{
        margin-bottom: 25px;
    }
    .winemaker-list li .winemaker-cover .winemaker-info{
        padding: 40px 38px;
        width: 100%;
    }
    .winemaker-list li:nth-child(even) .winemaker-cover .winemaker-img{
        order:1;
    }
    .winemaker-list li:nth-child(even) .winemaker-cover .winemaker-info{
        order:2;
    }
    .winemaker-list li .winemaker-cover{
        flex-direction: column;
    }
    .winemaker-list li .winemaker-cover .winemaker-img{
        width: 100%;
        height: 290px;
    }

    .video-icon a{
        width: 55px;
        height: 55px;
        background-size:100% auto;
    }

    .video-icon a .shape{
        border-top: 10px solid transparent;
        border-left: 15px solid #ffffff;
        border-bottom: 10px solid transparent;
    }
    .modal-desc{
        padding: 0 10px;
    }
    .pd-bottom-100{
        padding-bottom: 50px;
    }

    .modal-wrapper{
        padding: 20px;
		margin:50px 0px;
    }
	body.is-open .modal{
		overflow-y:auto;
	}
	.modal{
		align-items: flex-start;
		justify-content: flex-start;
	}
}

@media screen and (max-width:666px){
  .modal .modal-body-inner .modal-video .modal-img { height: auto;}
  .winemaker-list li .winemaker-cover .winemaker-img { height: 420px; }
}
