.article-layout {
  margin-top: var(--header-height);
  padding-top: var(--x-pad);
  padding-bottom: var(--x-pad);
}

.article-box {
  padding: var(--x-pad);
  background-color: #fff;
  color: #494747;
}

@media screen and (min-width: 560px) {
  .article-layout {
    padding-left: var(--x-pad);
    padding-right: var(--x-pad);
  }
}
@media screen and (min-width: 768px) {
  .article-layout {
    padding-top: 1.15rem;
  }
}
@media screen and (min-width: 1024px) {
  .article-layout {
    padding-top: 1.75rem;
  }
}
@media screen and (min-width: 1280px) {
  .article-layout {
    padding-top: 2.25rem;
  }
}
@media screen and (min-width: 1560px) {
  .article-layout {
    padding-top: 1.25rem;
  }
  .section-layout-main .article,
  .section-layout-copyright .copyright-contaier {
    max-width: 900px;
  }
}
.post-layout {
  display: grid;
  width: 100%;
}

.post-layout-main {
  grid-area: main;
}

.post-layout-breadcrumbs {
  grid-area: breadcrumbs;
}

.post-layout-sharing {
  grid-area: sharing;
}

@media screen and (max-width: 767px) {
  .post-layout {
    grid-template-columns: 100%;
    grid-template-areas: "breadcrumbs" "main" "sharing";
    gap: var(--x-pad);
  }
}
@media screen and (min-width: 768px) {
  .post-layout {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "breadcrumbs sharing" "main main";
    gap: var(--x-pad);
  }
}
.post-layout-breadcrumbs {
  min-width: 0;
  align-self: center;
}

.post-layout-sharing .post-sharing-list {
  justify-content: flex-start;
}

@media screen and (max-width: 767px) {
  .post-layout-sharing .post-sharing {
    border-top: 1px solid var(--color-bb-black);
    padding-top: var(--x-pad);
  }
  .post-layout-breadcrumbs {
    border-bottom: 1px solid var(--color-bb-black);
    padding-bottom: var(--x-pad);
  }
}
@media screen and (min-width: 560px) and (max-width: 767px) {
  .post-layout-sharing .post-sharing {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .post-layout-sharing .post-sharing {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
  }
  .post-layout-sharing .post-sharing-title {
    margin-bottom: 0;
    margin-right: 16px;
  }
  .post-layout-sharing .post-sharing-list {
    width: auto;
  }
  .post-layout-main {
    border-top: 1px solid black;
    padding-top: var(--x-pad);
  }
}
.post-layout-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
}

.post-layout-views {
  font-size: 14px;
  color: #A4A4A4;
  text-align: center;
}

.post-layout-title + .post-layout-views,
.post-layout-views + .post-layout-title {
  margin-top: 1rem;
}

.post-layout-desc {
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
}

@media screen and (min-width: 560px) {
  .post-layout-title {
    font-size: 18px;
    max-width: 80%;
    line-height: 1.4;
  }
  .post-layout-content {
    max-width: 80%;
  }
}
@media screen and (min-width: 768px) {
  .post-layout-title {
    font-size: 24px;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1024px) {
  .post-layout-title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1560px) {
  .post-layout-title {
    font-size: 58px;
  }
  .post-layout-views {
    font-size: 20px;
  }
}
.post-layout-content {
  text-align: justify;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  margin-top: calc(2 * var(--x-pad));
}

.post-layout-content > *:not(:first-child) {
  margin-top: 1.78em;
}

.post-layout-content blockquote {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
}

.post-layout-content blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/icon-blockquote-991d07cd45e5ef90949cb77bc08338225b17d450447f0e407df362b8e95ff918.svg) 0 0/contain no-repeat;
}

.post-layout-content ul,
.post-layout-content ol {
  padding-left: 2em;
}

.post-layout-content li {
  display: list-item;
}

.post-layout-content li:not(:first-child) {
  margin-top: 1em;
}

.post-layout-content ul li {
  list-style-type: disc;
}

.post-layout-content ol li {
  list-style-type: decimal;
}

.post-layout-content a {
  text-decoration: underline;
}

.post-layout-content a:hover {
  text-decoration: none;
}

.post-layout-content img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) and (max-width: 1559px) {
  .post-body-content {
    font-size: 18px;
  }
}
@media screen and (min-width: 1560px) {
  .post-body-content {
    font-size: 21px;
  }
  .post-layout-content {
    margin-top: 4rem;
  }
}
.post-sharing {
  --icon-size: 32px;
}

.post-sharing-title {
  margin-bottom: 8px;
  font-size: 14px;
}

.post-sharing-list {
  display: flex;
  align-items: center;
}

.post-sharing-list {
  flex-flow: row nowrap;
}

.post-sharing-item:not(:first-child) {
  margin-left: 0.75rem;
}

.post-sharing-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  border-radius: 50%;
  color: var(--color-text-base);
  background-color: var(--color-bg);
  transition: background-color 0.25s;
}

.post-sharing-link svg {
  display: block;
  max-width: calc(var(--icon-size) / 2);
  max-height: calc(var(--icon-size) / 2);
}

.post-sharing-link:hover {
  background-color: var(--color-accent);
}

@media screen and (min-width: 1024px) {
  .post-sharing {
    --icon-size: 40px;
  }
}
@media screen and (min-width: 768px) {
  .post-sharing-list {
    width: 100%;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 559px) {
  .post-sharing-list {
    justify-content: center;
  }
}
@media screen and (min-width: 1024px) {
  .post-sharing {
    --icon-size: 40px;
  }
  .post-sharing-title {
    display: block;
    font-size: 14px;
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1559px) {
  .post-sharing {
    --icon-size: 60px;
  }
  .post-sharing-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .post-sharing-link svg {
    width: calc(var(--icon-size) / 1.75);
    height: calc(var(--icon-size) / 1.75);
  }
}
.subsection {
  padding-bottom: var(--x-pad);
}

.subsection-header {
  text-align: center;
  text-transform: uppercase;
  font-weight: 700;
  color: #BABABA;
}

.subsection-button {
  text-align: center;
}

@media screen and (max-width: 559px) {
  .subsection {
    padding-top: 2rem;
  }
  .subsection-header {
    font-size: 18px;
    margin-bottom: 2rem;
  }
  .subsection-button {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 560px) and (max-width: 767px) {
  .subsection {
    padding-top: 2rem;
  }
  .subsection-header {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .subsection-button {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .subsection {
    padding-top: 3rem;
  }
  .subsection-header {
    font-size: 24px;
    margin-bottom: 2rem;
  }
  .subsection-button {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .subsection {
    padding-top: 4rem;
  }
  .subsection-header {
    font-size: 24px;
    margin-bottom: 3.5rem;
  }
  .subsection-button {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 1560px) {
  .subsection {
    padding-top: 4rem;
  }
  .subsection-header {
    font-size: 32px;
    margin-bottom: 3.5rem;
  }
  .subsection-button {
    margin-top: 5rem;
  }
}
.presentation-preview-list {
  display: grid;
  width: 100%;
}

@media screen and (max-width: 480px) {
  .presentation-preview-list {
    grid-template-columns: 100%;
    gap: 1.5rem;
  }
  .presentation-preview-item:not(:first-child) {
    border-top: 1px solid #3B3B3B;
    padding-top: 1.5rem;
  }
}
@media screen and (min-width: 479px) and (max-width: 767px) {
  .presentation-preview-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .presentation-preview-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1559px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .presentation-preview-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.news-preview-card {
  display: flex;
  flex-flow: column wrap;
  width: 100%;
  height: 100%;
}

.news-preview-picture {
  display: block;
  width: 100%;
  overflow: hidden;
}

.news-preview-image {
  display: block;
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

@supports (aspect-ratio: 560/314) {
  .news-preview-image {
    aspect-ratio: 560/314;
    height: auto;
  }
}
@supports not (aspect-ratio: 560/314) {
  .news-preview-picture::before {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    padding-top: 56.07%;
  }
  .news-preview-image {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
}
.news-preview-desc {
  padding: 1rem;
  background-color: #363636;
  flex: 1 auto;
  transition: background-color 0.25s;
}

.news-preview-card:hover .news-preview-desc {
  background-color: var(--color-accent);
}

.news-preview-date {
  color: #BABABA;
  font-size: 12px;
}

.news-preview-title {
  margin-top: 0.5rem;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.news-preview-card:hover .news-preview-date,
.news-preview-card:hover .news-preview-title {
  color: var(--color-bb-black);
}

@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .news-preview-date {
    font-size: 14px;
  }
  .news-preview-title {
    font-size: 16px;
  }
  .news-preview-desc {
    padding-bottom: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .news-preview-desc {
    padding: 1.5rem 1.5rem 2rem;
  }
  .news-preview-date {
    font-size: 14px;
  }
  .news-preview-title {
    font-size: 21px;
  }
}
@media screen and (min-width: 1560px) {
  .news-preview-desc {
    padding: 2rem 2rem 4rem;
  }
  .news-preview-date {
    font-size: 20px;
  }
  .news-preview-title {
    font-size: 28px;
  }
}
.text-box {
  padding: var(--x-pad);
}

.text-theme-light {
  background: #fff;
  color: #494747;
}

.text-box-btn {
  margin-top: var(--x-pad);
}

.text-box-btn .page-call2action-btn {
  margin-top: 0;
}

@media screen and (max-width: 559px) {
  .text-box {
    width: calc(100% + 2 * var(--x-pad));
    margin-left: calc(-1 * var(--x-pad));
  }
  .text-box-data {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 560px) and (max-width: 1023px) {
  .text-box-data {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1559px) {
  .text-box-data {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .text-box-data {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .text-box-container {
    max-width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.text-box-content {
  line-height: 1.6;
}

.text-box-content > *:not(:first-child) {
  /* margin-top: 1.78em; last comments */
  margin-top: 1.5em;
}

.text-box-content blockquote {
  display: block;
  width: 100%;
  position: relative;
  padding-left: 3rem;
  font-weight: 600;
}

.text-box-content blockquote::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/assets/icon-blockquote-991d07cd45e5ef90949cb77bc08338225b17d450447f0e407df362b8e95ff918.svg) 0 0/contain no-repeat;
}

.text-box-content ul,
.text-box-content ol {
  padding-left: 2em;
}

.text-box-content li {
  display: list-item;
}

.text-box-content li:not(:first-child) {
  margin-top: 1em;
}

.text-box-content ul li {
  list-style-type: disc;
}

.text-box-content ol li {
  list-style-type: decimal;
}

.text-box-content a {
  text-decoration: underline;
}

.text-box-content a:hover {
  text-decoration: none;
}

.text-box-content img {
  display: block;
  width: 100%;
  height: auto;
}

.action-container {
  margin-top: 1rem;
  text-align: center;
  line-height: 1.3;
}

.page-call2action,
.page-call2action-body {
  position: relative;
}

.page-call2action-picture {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

.page-call2action-title {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.page-call2action-text,
.page-call2action-btn {
  margin-top: 1rem;
}

.page-call2action-btn {
  display: inline-block;
  padding: 0 1rem;
  height: 52px;
  line-height: 52px;
  text-transform: uppercase;
  color: #161616;
  font-weight: 600;
  background-color: var(--color-accent);
  border: 1px solid var(--color-accent);
  transition: color 0.25s, background-color 0.25s;
}

.page-call2action-btn:hover {
  background-color: transparent;
  color: var(--color-accent);
}

@media screen and (max-width: 559px) {
  .action-container {
    padding: 0;
  }
  .page-call2action-body {
    padding: 2rem var(--x-pad);
  }
}
@media screen and (min-width: 560px) {
  .page-call2action-body {
    padding: 5rem var(--x-pad);
  }
}
@media screen and (min-width: 768px) {
  .page-call2action-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1024px) {
  .page-call2action-title {
    font-size: 32px;
  }
  .page-call2action-text {
    font-size: 20px;
  }
  .page-call2action-btn {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1560px) {
  .page-call2action-title {
    font-size: 40px;
  }
  .page-call2action-text {
    font-size: 24px;
  }
  .page-call2action-btn {
    font-size: 20px;
    height: 77px;
    line-height: 77px;
    padding: 0 3rem;
  }
}
.big-varaint {
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: auto;
  align-items: center;
}

.big-varaint::before,
.big-varaint .page-call2action-body {
  grid-row: 1/2;
  grid-column: 1/2;
}

.big-varaint::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-top: 35%;
}

.big-varaint .page-call2action-title {
  color: var(--color-accent);
  font-size: 32px;
  letter-spacing: 0;
  font-weight: 800;
}

.big-varaint .page-call2action-text,
.big-varaint .page-call2action-btn {
  margin-top: 1.5em;
}

@media screen and (min-width: 768px) {
  .big-varaint .page-call2action-title {
    font-size: 64px;
  }
}
@media screen and (min-width: 1280px) {
  .big-varaint .page-call2action-title {
    font-size: 72px;
  }
}
@media screen and (min-width: 1560px) {
  .big-varaint .page-call2action-title {
    font-size: 124px;
  }
}
