.intro {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 2px solid var(--black);
    overflow: hidden;
}

.introImage {
    max-height: 600px;
    display: flex;
}

.introImage img {
    width: 100%;
    object-fit: cover;
}

.pageTitle {
    position: absolute;
}

.pageTitle h1 {
    font-variation-settings: "wght" 600;
    color: var(--red);
    background: rgba(255,255,255,0.6);
}

.news {
    border-bottom: 2px solid black;
    position: relative;
}

.lkNewsBox {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    /*padding: 50px 0;*/
}

.lkNewsBox .lkNewsSlider, .lkNewsBox .lkNewsSlide {
    display: flex;
    position: relative;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
}

.lkNewsBox .lkNewsSlider .lkNews, .lkNewsBox .lkNewsSlide .lkNews {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 0;
    width: 1200px;
}

button.newsPrev, button.newsNext {
    position: absolute;
    top: 0;
    display: flex;
    /*padding: 4% 3%;*/
    width: auto;
    height: 100%;
    background: none;
    border: none;
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    font-size: 60px;
    opacity: 0.8;
    cursor: pointer;
    align-items: center;
    z-index: 1;
}

button.newsPrev:hover, button.newsNext:hover {
    opacity: 1;
    -webkit-transition: all 0.2s ease;
}

button.newsPrev {
    border-radius: 0 2px 2px 0;
}

button.newsNext {
    right: 0;
    border-radius: 2px 0 0 2px;
}

.lkNewsImage {
    display: flex;
    width: 100%;
}

.lkNewsImage img {
    object-fit: contain;
    max-width: 100%;
    height: auto;
}

.lkNewsTitle {
    font-weight: 900;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.lkNewsContent a {
    font-weight: bold;
    text-decoration: underline;
}
