/* cbnet-common.css - Shared styles across all pages */
/* Extracted from multiple layout templates to avoid duplication */

/* === Page Layout === */
.cb-page-wrapper {
  background-color: #000;
  color: #fff;
}
.cb-block-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}
.content {
  padding-top: 0;
  border: none;
}
.responsive .container {
  max-width: 1620px;
}

/* === Global Titles === */
.cb-title-h1 {
  font-family: MiSans-Semibold;
  font-size: 46px;
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}
.cb-title-p {
  font-family: MiSans-Light;
  color: rgba(255,255,255,.6);
  font-size: 16px;
  line-height: 1.5;
  margin: 30px 0;
  font-weight: normal;
}
.cb-title-wrapper {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cb-title-h1 {
    font-size: 64px;
  }
  .cb-title-p {
    font-size: 18px;
  }
}
@media screen and (min-width: 1200px) {
  .cb-title-h1 {
    font-size: 72px;
  }
  .cb-title-p {
    font-size: 22px;
  }
}
@media screen and (min-width: 1600px) {
  .cb-title-h1 {
    font-size: 76px;
  }
  .cb-title-p {
    font-size: 24px;
  }
}

/* === Release / Update Log Blocks === */
.realease_block {
  display: block;
  margin: 0 auto;
  margin-bottom: 16px;
  width: 980px;
  background-color: #111111;
  padding: 60px;
  min-height: 360px;
  border-radius: 20px;
}
.realease_block .realease_block_title {
  color: #ffffff;
  font-size: 30px;
  font-family: MiSans-Semibold;
}
.realease_block .realease_block_content p {
  position: relative;
  margin-top: 20px;
  font-family: MiSans-Light;
  font-size: 18px;
  color: rgba(254,254,255,.6);
  padding-left: 15px;
}
.realease_block .realease_block_content p:before {
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: rgba(254,254,255,.6);
  position: absolute;
  top: 10px;
  left: 0;
}
.show-more {
  margin-top: 15px;
  font-family: MiSans-Regular;
  font-size: 16px;
  cursor: pointer;
  color: rgba(254,254,255,.7);
  text-decoration: none;
}
.show-more:hover {
  opacity: .75;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .realease_block {
    width: 100%;
    padding: 30px 20px;
    min-height: auto;
  }
}

/* === Release Page Wrapper === */
.cb-release-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}