/* News */
  .single-post{
    body{
      min-width: unset !important;
    }
    color: #DCD7CE;
    a{
      color: #DCD7CE;
      text-decoration: none;
      transition: ease-in all .3s;      
    }    
    h1{
      font-family: "p22-typewriter", sans-serif !important;
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .fixed, .pum, .mobile-header{
      display: none;
    }
    main{
      width: 100%;
      min-height: 100vh;
      box-sizing: border-box;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-sizing: border-box;
      
      .bg-video{
        position: absolute;        
        object-fit: cover;
        width: 100%;
        height: 100%;
      }    
      section{
        position: relative;
        .container{
          width: 100%;
          max-width: 1080px;
          margin: 0 auto;
          padding: 0 15px;
          display: flex;
          box-sizing: border-box;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 30px;
          @media screen and (max-width:768px){
            flex-direction: column;
          }
        }
        h1{
          font-size: 36px;
          @media screen and (max-width:768px){
            text-align: center;            
          }
        }
        .nav{
          order: 3;
          display: flex;
          opacity: 0;
          pointer-events: none;
          justify-content: space-between;
          flex-wrap: wrap;          
          gap: 30px;
          a{
            font-size: 20px;
          }
          a:hover{
            color: #971917;
          }
          @media screen and (max-width:768px){
            gap: 20px;
            justify-content: center;
            a{
              font-size: 14px;
            }
          }
        }
        .nav.active{
          opacity: 1;
          pointer-events: all;
        }
        @media screen and (min-width:768px){
          h1{
            order: 2; 
            margin-right: auto;
          } 
        }        
        .navigation-button{
          cursor: pointer;
          order: 1;
          width: 30px;
          height: 20px;
          position: relative;
          border: none;
          background-color: transparent;
          span{
            display:block;
            width: 100%;
            height: 2px;
            background-color: #fff;
            position: absolute;
            left: 0;
          }
          span:nth-child(1){
            top: 0;
          }
          span:nth-child(2){
            top: calc(50% - 1px);
          }
          span:nth-child(3){
            bottom: 0;
          }
          @media screen and (max-width:768px){
            margin: 0 auto;
          }   
        }
        .social{
          display: flex;
          width: 100%;
          justify-content: center;
          flex-wrap: wrap;
          gap: 10px;
          a{
            width: 30px;
            height: 30px;
            border: solid 2px #DCD7CE;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
          }
          a:hover{
            color: #971917;
            border-color: #971917;
          }
          @media screen and (max-width:768px){
            justify-content: center;
          }
        }
        .lp-newsletter{
          display: flex;
          align-items: center;
          gap: 10px;
          font-size: 20px;
          i{
            width: 30px;
            height: 30px;
            border: solid 2px #DCD7CE;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 18px;
            transition: ease-in all .3s;
          }
          @media screen and (max-width:768px){
            justify-content: center;
          }
        }
        .lp-newsletter:hover{
          color: #971917;
          i{
           border-color: #971917; 
          }          
        }        
      }
      .lp-header{
        padding: 30px 0 0;
      }
      .lp-footer{
        padding: 0 0 30px 0;
      }
      .news-main{
        padding: 60px 0;
        .container{
          display: block;
          >h2{
            margin-bottom: 40px;
            text-align: center;
            font-size: 40px;
            font-family: "p22-typewriter", sans-serif !important;
          } 
          .post-content{
            display: flex;
            flex-direction: column;
            gap:10px;
            p{
              a{
                text-decoration: underline;
              }
              a:hover{
                color: #971917 !important;
              }
            }
            .post-image{
              img{
                width: 100%;
                height: auto;
                object-fit: contain;
                max-width: 600px;
                margin: 0 auto 30px;
                display: block;
              }
            }
            *{
              color: #fff !important;
              font-size: 16px;
              line-height: 1.4;
            }
          }
        }        
      }
      .footer{
        padding: 40px 0;
        .footer-menu{
          display: flex;
          justify-content: center;
          gap: 20px;
          flex-wrap: wrap;
          list-style: none;
          padding: 0;
          margin: 0 auto;
          font-family: "p22-typewriter", sans-serif !important;
          font-size: 18px;
        }
      }
      .copyright{
        text-align: center;
        font-size: 12px;
        width: 100%;
        p{
          color: #fff;
        }
      }
    }
  }
  
  .page-template-template-landing-page *{
    cursor: url('https://www.rogertaylorofficial.com/wp-content/themes/rogertaylor/landing-page/drumstick-cursor-2.png') 16 16, auto !important;
}