.fws-slider {
    box-sizing: border-box;
    overflow: hidden;
    height: 600px;
    margin: 0;
    padding: 0;
    position: relative; /* Important to keep slides positioned inside */
    white-space: nowrap; /* Prevent line breaks that might add width */
}

body {
    overflow-x: hidden; /* This ensures no scrollbars appear */
    margin:0;
}

.fws-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: left 0s;
}

/* background layer */
.fws-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /*filter: grayscale(0.75) blur(5px) brightness(0.8) contrast(0.85);*/
  filter: grayscale(0.9) blur(5px) sepia(0.3) hue-rotate(-10deg) saturate(2) brightness(0.9);

  z-index: 0;
}

.fws-slide-content {
    border-radius: .4vw;
    position: absolute;
    top: 10%;
    left: 10%;
    transform: translate(-10%, -10%);
    text-align: left;
    color: white;
    padding: 20px;
    width: 80%;
    max-width: 900px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.fws-slide-content h2
{
    font-size:56px;
    font-weight: 500;
    font-style: italic;
}
.fws-slide-content h3
{
    font-size:38px;
    font-weight: 500;
    font-style: italic;
}
.fws-slide-content h4
{
    font-size:32px;
    font-weight: 450;
    font-style: italic;
}
.fws-slide-content p
{
    font-size:28px;
    font-family: "Baskervville", serif;
    font-weight: 400;
    font-style: normal;
    color: #FEFEFE!important;
}
.fws-slide-content h2,.fws-slide-content h3,.fws-slide-content h4 {
    /*font-family: Figtree, sans-serif;*/
    font-family: "Baskervville", serif;
    font-optical-sizing: auto;
    color: #FEFEFE;
}


.fws-slide-text p:last-child {
    padding-top: 30px;
}

.fws-slide-content .gavin-slider-button:hover
{
    background-color:rgba(220,220,220,1.0);
}
.fws-slide-content a.gavin-slider-button
{
    align-items: center;
    border-style: none;
    display: inline-flex;
    justify-content: center;
    line-height: inherit;
    overflow: hidden;
    white-space: normal;
    word-break: break-word;
    
    font-size: 32px;
    background-color: rgba(240,240,240,1.0);
    
    border-width: 0;
    color: rgb(141, 130, 125);
    
    line-height: inherit;
    padding-top: .2rem;
    padding-right: 1.0rem;
    padding-bottom: .2rem;
    padding-left: 1.0rem;
    text-decoration: none;
}
.fws-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 16px;
    z-index: 10;
}

.fws-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.fws-dot.active {
    background: rgba(255, 255, 255, 1);
}
.fws-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0);
    color: white;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 10;
}

.fws-prev {
    left: 10px;
}

.fws-next {
    right: 10px;
}

.fws-nav-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}