* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

.fbsrf-news {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  font-family: sans-serif;
  font-weight: 300;
}

.fbsrf-news__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #8a8a8a;
  z-index: 1;
}

.fbsrf-news__titl-wrapper {
  position: relative;
  width: 100%;
  height: 35%;
  min-height: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.fbsrf-news__title {
  position: relative;
  max-width: 800px;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  z-index: 3;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3em;
  max-height: 100%;
}

.fbsrf-news__tabs {
  position: relative;
  max-width: 800px;
  height: 100%;
  align-items: end;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  column-gap: 10px;
  z-index: 3;
  font-size: 14px;
  padding: 0 10px;
}

.fbsrf-news__tabs a {
  height: 30px;
  width: 100%;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fbsrf-news__tabs a:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.fbsrf-news__tournament-info {
  width: 100%;
  position: relative;
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  font-size: 14px;
  color: #fff;
  z-index: 3;
  background-color: rgba(0, 0, 0, 0.5);
}

.fbsrf-news__tournament-info > * {
  height: 30px;
  padding: 5px 10px;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.fbsrf-news__tournament-info > *:first-child {
  justify-self: self-start;
}

.fbsrf-news__tournament-info > *:last-child {
  justify-self: self-end;
}

.fbsrf-news__link {
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.fbsrf-news__link:hover {
  color: #19c352;
}
