html {
    height: 100%;
    overflow-x: hidden;
}
body {
    background-color: var(--bg);
    box-sizing: border-box;
    color: #fff;
    font-family: var(--font);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    padding: 48px 0;
    min-height: 100%;
}

#main {
    margin: auto;
    max-width: 900px;
    padding: 14px;
    text-align: center;
    display: grid;
    gap: 48px;
    grid-template-columns: 1fr 1fr;
    text-align: left;
}
.news {
    aspect-ratio: 16 / 10;
    position: relative;
}
.news_media {
    border-radius: 14px;
    bottom: 46px;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
}
.news_poster {
    border-radius: 14px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.news_details {
    backdrop-filter: blur(17.5px);
    background: linear-gradient(180deg, rgba(121, 139, 175, 0.15) 0%, rgba(83, 100, 136, 0.15) 100%);
    border-radius: 14px;
    bottom: 0;
    box-shadow: -32px 14px 64px 0px rgba(0, 179, 255, 0.25), 0px 24px 32px 0px rgba(0, 0, 0, 0.57);
    box-sizing: border-box;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 70px;
    padding: 0 24px;
    position: absolute;
    text-decoration: none;
    width: 100%;
    z-index: 9;
    -webkit-backdrop-filter: blur(17.5px);
}
.title:focus {
    color: #00B2FF;
    text-decoration: none;
}
.title:hover {
    text-decoration: none;
}