@import url("https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@300;400;600;700&family=Montserrat:wght@700&display=swap");
a:focus {
  outline: none; }

a:focus {
  outline: none; }

.closers-loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 80px 0; }
  .closers-loading__dots {
    display: flex;
    gap: 10px; }
  .closers-loading__dot {
    display: block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f5cc00;
    animation: closers-bounce 1s ease-in-out infinite; }
    .closers-loading__dot:nth-child(2) {
      animation-delay: 0.15s; }
    .closers-loading__dot:nth-child(3) {
      animation-delay: 0.3s; }
  .closers-loading__text {
    font-family: "Anton", sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    color: #000;
    text-transform: uppercase;
    opacity: 0.5; }

@keyframes closers-bounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.4; }
  40% {
    transform: scale(1);
    opacity: 1; } }
.closers-load-more {
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  align-self: center;
  display: flex;
  width: fit-content;
  cursor: pointer;
  filter: drop-shadow(0px 4.978px 4.978px rgba(0, 0, 0, 0.25));
  transition: filter 0.2s; }
  .closers-load-more.is-loading {
    cursor: default;
    pointer-events: none; }
  @media (hover: hover) {
    .closers-load-more:hover {
      filter: drop-shadow(0px 5.13px 5.13px rgba(0, 0, 0, 0.35)); }
      .closers-load-more:hover .closers-loadmore-inner {
        background: #f5cc00; }
      .closers-load-more:hover .closers-loadmore-icon {
        filter: brightness(0) invert(1); }
      .closers-load-more:hover .closers-loadmore-text {
        color: #fff; } }
  .closers-load-more:active {
    filter: drop-shadow(0px 5.13px 5.13px rgba(0, 0, 0, 0.35)); }
    .closers-load-more:active .closers-loadmore-inner {
      background: #f5cc00; }
    .closers-load-more:active .closers-loadmore-icon {
      filter: brightness(0) invert(1); }
    .closers-load-more:active .closers-loadmore-text {
      color: #fff; }
  @media (max-width: 991px) {
    .closers-load-more {
      width: 100%;
      filter: drop-shadow(0px 2px 2px rgba(0, 0, 0, 0.25)); } }

.closers-loadmore-inner {
  width: 390px;
  height: 83px;
  padding: 18.912px 89.403px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 19.772px;
  box-sizing: border-box;
  background: #fff;
  clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
  transition: background 0.2s; }
  @media (max-width: 991px) {
    .closers-loadmore-inner {
      width: 100%;
      padding: max(1.4vw, 11px) 0;
      gap: 18px;
      clip-path: none;
      height: auto; } }

.closers-loadmore-icon {
  width: 34.452px;
  height: 34.452px;
  flex-shrink: 0;
  display: block; }
  @media (max-width: 991px) {
    .closers-loadmore-icon {
      width: max(3vw, 21.504px);
      height: max(3vw, 21.504px); } }

.closers-loadmore-spinner {
  display: block;
  width: 28px;
  height: 28px;
  border: 3px solid rgba(0, 0, 0, 0.15);
  border-top-color: #333;
  border-radius: 50%;
  animation: closers-spin 0.7s linear infinite; }
  @media (max-width: 991px) {
    .closers-loadmore-spinner {
      width: 20px;
      height: 20px; } }

@keyframes closers-spin {
  to {
    transform: rotate(360deg); } }
.c-page-title {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 20px; }
  @media (max-width: 991px) {
    .c-page-title {
      position: relative; } }

.c-page-title__bg--mobile {
  display: none; }
  @media (max-width: 991px) {
    .c-page-title__bg--mobile {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      pointer-events: none;
      z-index: 0; } }

.c-page-title__inner {
  position: relative;
  width: 100%;
  max-width: 1460px;
  flex-shrink: 0;
  aspect-ratio: 1460 / 89; }
  @media (max-width: 991px) {
    .c-page-title__inner {
      width: 100%;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center; } }

.c-page-title__bg {
  position: absolute;
  left: 0;
  top: 16.85%;
  width: 100%;
  height: 83.15%;
  max-width: none;
  object-fit: fill;
  pointer-events: none;
  display: block; }
  @media (max-width: 991px) {
    .c-page-title__bg {
      display: none; } }

.c-page-title__text {
  position: absolute;
  left: 17%;
  top: 35%;
  transform: translateY(-50%);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: clamp(34px, 4.3vw, 64px);
  line-height: 1.4;
  color: #000;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap; }
  @media (max-width: 991px) {
    .c-page-title__text {
      position: relative;
      left: auto;
      top: auto;
      z-index: 1;
      font-size: 28px;
      letter-spacing: 0.3657px;
      transform: none; } }

.closers-loadmore-text {
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 30px;
  line-height: normal;
  letter-spacing: 0.9px;
  color: #333;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s; }
  @media (max-width: 991px) {
    .closers-loadmore-text {
      font-size: max(2.2vw, 18px);
      letter-spacing: 0.42px; } }

.loading-circle {
  transform-origin: center;
  animation: closers-spin 1s linear infinite; }

@keyframes closers-spin {
  to {
    transform: rotate(360deg); } }
.post-flags {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex: 0 0 auto; }
  .post-flags .flag {
    display: block; }
  .post-flags .flag-new {
    width: 46px;
    height: 46px;
    margin: -11px 0; }
  .post-flags .flag-pin {
    width: 24px;
    height: 24px; }

.post-flags--tag {
  display: none; }

.row-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto; }

.row-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0; }

.card-meta-left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0; }

@media screen and (max-width: 991px) {
  .post-flags--tag {
    display: inline-flex; }

  .post-flags--title {
    display: none; } }
.news-page {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: 58px;
  font-family: "Inter", sans-serif;
  color: #333;
  box-sizing: border-box;
  overflow: hidden; }
  .news-page *, .news-page *::before, .news-page *::after {
    box-sizing: border-box; }
  .news-page .news-page-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none; }
  .news-page .news-inner {
    position: relative;
    z-index: 1;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 20px 100px; }
  .news-page .c-page-title {
    padding: 0 20px;
    margin-bottom: 28px; }
  .news-page .news-filter {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px 0;
    margin-bottom: 36px; }
  .news-page .news-tabs {
    width: 100%;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
    .news-page .news-tabs .tab-item {
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 8px 6px;
      min-height: 52px;
      text-align: center;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 24px;
      line-height: 1.4;
      color: #333;
      background-color: #fff;
      border: 1px solid #ddd;
      border-right: none;
      cursor: pointer;
      transition: background-color 0.15s, color 0.15s; }
      .news-page .news-tabs .tab-item:first-child {
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px; }
      .news-page .news-tabs .tab-item:last-child {
        border-right: 1px solid #ddd;
        border-top-right-radius: 10px;
        border-bottom-right-radius: 10px; }
      .news-page .news-tabs .tab-item.active {
        background-color: #111;
        color: #f5cc00;
        border-color: #111;
        border-bottom: 3px solid #f5cc00; }
      .news-page .news-tabs .tab-item:hover:not(.active) {
        color: #f5cc00; }
  .news-page .news-subfilters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px; }
    .news-page .news-subfilters .subfilter-btn {
      padding: 11px 31px;
      border: 2px solid #ddd;
      border-radius: 36px;
      background-color: #fff;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 20px;
      color: #000;
      cursor: pointer;
      transition: all 0.15s; }
      .news-page .news-subfilters .subfilter-btn.active {
        background-color: #111;
        color: #f5cc00;
        border-color: #f5cc00; }
      .news-page .news-subfilters .subfilter-btn:hover:not(.active) {
        border-color: #fdd55e;
        color: #fcca36; }
  .news-page .news-search {
    margin-left: auto;
    width: 645px;
    max-width: 100%;
    height: 54px;
    display: flex;
    align-items: stretch;
    gap: 10px; }
    .news-page .news-search .search-input {
      flex: 1;
      min-width: 0;
      background-color: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 0 22px;
      outline: none;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 24px;
      color: #333; }
      .news-page .news-search .search-input::placeholder {
        color: #ddd; }
    .news-page .news-search .search-btn {
      position: relative;
      flex: 0 0 auto;
      width: 133px;
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px 0 15px;
      border: none;
      background: none;
      color: #ddd;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 24px;
      letter-spacing: -0.48px;
      white-space: nowrap; }
      .news-page .news-search .search-btn .search-btn-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: fill;
        z-index: 0;
        pointer-events: none; }
      .news-page .news-search .search-btn .search-btn-bg--hover {
        opacity: 0;
        transition: opacity 0.15s; }
      .news-page .news-search .search-btn .search-btn-text {
        position: relative;
        z-index: 1; }
      .news-page .news-search .search-btn .search-btn-chevron {
        position: relative;
        z-index: 1;
        flex: 0 0 auto;
        width: 7px;
        height: 12px;
        display: block; }
      @media (hover: hover) {
        .news-page .news-search .search-btn:hover {
          color: #f5cc00; }
          .news-page .news-search .search-btn:hover .search-btn-bg--hover {
            opacity: 1; } }
  .news-page .news-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    margin-bottom: 70px; }
  .news-page .news-list-wrap {
    margin-bottom: 70px; }
  .news-page .news-list {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden; }
    .news-page .news-list .news-row {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 30px 70px;
      border-bottom: 1px solid #ddd; }
      .news-page .news-list .news-row:last-child {
        border-bottom: none; }
    .news-page .news-list .news-row-link {
      position: absolute;
      inset: 0;
      z-index: 1; }
    .news-page .news-list .row-left {
      display: flex;
      align-items: center;
      gap: 72px;
      min-width: 0; }
    .news-page .news-list .row-right {
      display: flex;
      align-items: center;
      gap: 47px;
      flex: 0 0 auto; }
    .news-page .news-list .news-title {
      margin: 0;
      min-width: 0;
      font-family: "Inter", sans-serif;
      font-weight: 400;
      font-size: 20px;
      line-height: 1.48;
      letter-spacing: -0.4px;
      color: #333;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .news-page .news-list .news-date {
      font-family: "Inter", sans-serif;
      font-weight: 300;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: -0.6px;
      color: #787878;
      white-space: nowrap; }
    .news-page .news-list .row-arrow {
      width: 11px;
      height: 18px;
      color: #333;
      display: block; }
  .news-page .news-tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    width: auto;
    height: 35px;
    padding: 0 14px;
    border-radius: 10.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.4px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap; }
    .news-page .news-tag.notice {
      background-color: #f49a9a; }
    .news-page .news-tag.update {
      background-color: #f5cc00; }
    .news-page .news-tag.event {
      background-color: #29a15e; }
    .news-page .news-tag.shop {
      background-color: #ff8a00; }
    .news-page .news-tag.gmnote {
      background-color: #1c6dc9; }
    .news-page .news-tag.ongoing {
      background-color: #2eac66; }
    .news-page .news-tag.pastevents {
      background-color: #787878; }
    .news-page .news-tag.winners {
      background-color: #282aae; }
  .news-page .news-cards {
    margin-bottom: 70px; }
  .news-page .card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 50px 46px; }
  .news-page .news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 2px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit; }
    .news-page .news-card .card-thumb {
      flex: 0 0 auto;
      aspect-ratio: 469 / 356;
      background-color: #ddd;
      overflow: hidden; }
      .news-page .news-card .card-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block; }
    .news-page .news-card .card-body {
      flex: 1 1 auto;
      border: 1px solid #ddd;
      border-top: none;
      border-radius: 0 0 10px 10px;
      padding: 14px 16px 18px;
      display: flex;
      flex-direction: column;
      gap: 10px; }
    .news-page .news-card .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px; }
    .news-page .news-card .card-date {
      font-family: "Inter", sans-serif;
      font-weight: 300;
      font-size: 16px;
      letter-spacing: -0.48px;
      color: #000;
      white-space: nowrap; }
    .news-page .news-card .card-title {
      margin: 0;
      font-family: "Inter", sans-serif;
      font-weight: 600;
      font-size: 24px;
      line-height: 1.14;
      letter-spacing: -0.48px;
      color: #000;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden; }
  .news-page .card-tag {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    border-radius: 10.5px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: -0.36px;
    text-transform: uppercase;
    color: #fff;
    white-space: nowrap; }
    .news-page .card-tag.ongoing, .news-page .card-tag.event {
      background-color: #2eac66; }
    .news-page .card-tag.pastevents {
      background-color: #787878; }
    .news-page .card-tag.winners {
      background-color: #282aae; }
    .news-page .card-tag.notice {
      background-color: #f49a9a; }
    .news-page .card-tag.update {
      background-color: #f5cc00; }
    .news-page .card-tag.shop {
      background-color: #ff8a00; }
    .news-page .card-tag.gmnote {
      background-color: #1c6dc9; }
  .news-page .news-loadmore {
    display: flex;
    justify-content: center; }
    .news-page .news-loadmore .load-more-btn {
      appearance: none;
      background: none;
      border: none;
      padding: 0;
      display: flex;
      width: fit-content;
      cursor: pointer;
      color: #333;
      filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.25));
      transition: filter 0.15s; }
      .news-page .news-loadmore .load-more-btn .load-more-inner {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        min-width: 390px;
        max-width: 100%;
        min-height: 72px;
        box-sizing: border-box;
        padding: 0 40px;
        background: #fff;
        clip-path: polygon(18px 0%, 100% 0%, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0% 100%, 0% 18px);
        font-family: "Anton", sans-serif;
        font-weight: 400;
        font-size: 30px;
        letter-spacing: 0.9px;
        text-transform: uppercase;
        transition: background 0.15s; }
      .news-page .news-loadmore .load-more-btn .load-more-icon {
        width: 34px;
        height: 34px;
        display: block;
        flex: 0 0 auto; }
      @media (hover: hover) {
        .news-page .news-loadmore .load-more-btn:hover {
          color: #fff; }
          .news-page .news-loadmore .load-more-btn:hover .load-more-inner {
            background: #f5cc00; } }
  @media screen and (max-width: 991px) {
    .news-page {
      padding-top: 0; }
    .news-page .news-page-bg {
      display: none; }
    .news-page .news-inner {
      padding: 0px 15px 60px; }
    .news-page .c-page-title {
      padding: 0;
      margin-bottom: 16px; }
    .news-page .c-page-title__bg {
      display: none; }
    .news-page .news-filter {
      flex-direction: column;
      align-items: stretch;
      gap: 14px;
      margin-bottom: 22px; }
    .news-page .news-search {
      order: -1;
      width: 100%;
      margin-left: 0;
      height: 44px;
      gap: 6px; }
      .news-page .news-search .search-input {
        font-size: 15px;
        padding: 0 14px;
        border-radius: 8px; }
      .news-page .news-search .search-btn {
        width: 92px;
        padding: 0 12px 0 10px;
        font-size: 16px; }
        .news-page .news-search .search-btn .search-btn-chevron {
          width: 6px;
          height: 10px; }
    .news-page .news-tabs {
      order: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr); }
      .news-page .news-tabs .tab-item {
        min-height: 40px;
        font-size: 18px;
        padding: 8px 4px;
        border: 1px solid #ddd;
        border-radius: 0 !important;
        margin: -0.5px; }
    .news-page .news-subfilters {
      order: 1;
      gap: 8px; }
      .news-page .news-subfilters .subfilter-btn {
        padding: 7px 16px;
        font-size: 14px;
        border-width: 1px; }
    .news-page .news-loading {
      min-height: 240px;
      margin-bottom: 30px; }
    .news-page .news-list-wrap {
      margin-bottom: 30px; }
    .news-page .news-list {
      border-radius: 12px;
      padding: 0; }
      .news-page .news-list .news-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 15px; }
      .news-page .news-list .row-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        width: 100%; }
      .news-page .news-list .row-title {
        width: 100%; }
      .news-page .news-list .row-right {
        width: 100%;
        justify-content: flex-start;
        gap: 8px; }
      .news-page .news-list .news-title {
        font-size: 14px;
        line-height: 1.3;
        width: 100%; }
      .news-page .news-list .news-date {
        font-size: 12px; }
      .news-page .news-list .row-arrow {
        width: 8px;
        height: 13px; }
    .news-page .news-tag {
      min-width: 96px;
      width: auto;
      height: 26px;
      padding: 0 10px;
      font-size: 13px; }
    .news-page .news-cards {
      margin-bottom: 30px; }
    .news-page .card-grid {
      grid-template-columns: 1fr;
      gap: 16px; }
    .news-page .news-card .card-thumb {
      aspect-ratio: 330 / 180; }
    .news-page .news-card .card-body {
      padding: 12px 14px 14px;
      gap: 8px; }
    .news-page .news-card .card-title {
      font-size: 16px; }
    .news-page .news-card .card-date {
      font-size: 14px; }
    .news-page .card-tag {
      height: 24px;
      font-size: 13px;
      padding: 0 10px; }
    .news-page .news-loadmore .load-more-btn {
      width: 100%;
      filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25)); }
      .news-page .news-loadmore .load-more-btn .load-more-inner {
        min-width: 0;
        width: 100%;
        min-height: 0;
        gap: 18px;
        padding: 11px 0;
        font-size: 14px;
        letter-spacing: 0.42px;
        clip-path: none; }
      .news-page .news-loadmore .load-more-btn .load-more-icon {
        width: 21.5px;
        height: 21.5px; } }

.news-view .c-page-title {
  margin-bottom: 56px; }
.news-view .news-list-btn {
  position: relative;
  width: 207.5px;
  aspect-ratio: 1467 / 392;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; }
  .news-view .news-list-btn .news-list-btn-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 0;
    pointer-events: none; }
  .news-view .news-list-btn .news-list-btn-bg--hover {
    opacity: 0;
    transition: opacity 0.15s; }
  .news-view .news-list-btn .news-list-btn-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.4;
    color: #ddd;
    white-space: nowrap; }
  .news-view .news-list-btn .news-list-btn-icon {
    flex: 0 0 auto;
    display: block;
    width: 34.5px;
    height: 19px; }
  @media (hover: hover) {
    .news-view .news-list-btn:hover .news-list-btn-bg--hover {
      opacity: 1; }
    .news-view .news-list-btn:hover .news-list-btn-inner {
      color: #f5cc00; } }
  .news-view .news-list-btn:active .news-list-btn-bg--hover {
    opacity: 1; }
  .news-view .news-list-btn:active .news-list-btn-inner {
    color: #f5cc00; }
.news-view .pt-banner {
  position: relative; }
.news-view .pt-banner .news-list-btn {
  position: absolute;
  top: 78%;
  right: max(20px, calc((100% - 1460px) / 2));
  z-index: 3; }
.news-view .news-inner .news-list-btn {
  display: none; }
.news-view .article {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 70px; }
.news-view .article-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 70px;
  border-bottom: 1px solid #ddd; }
.news-view .article-head-left {
  display: flex;
  align-items: center;
  gap: 72px;
  min-width: 0; }
.news-view .article-title {
  margin: 0;
  min-width: 0;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.48;
  letter-spacing: -0.4px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }
.news-view .article-date {
  flex: 0 0 auto;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: -0.6px;
  color: #787878;
  white-space: nowrap; }
.news-view .article-body {
  max-width: 840px;
  overflow-wrap: break-word;
  margin: 0 auto;
  padding: 50px 20px 60px;
  color: #333; }
  .news-view .article-body img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 29px;
    border-radius: 4px; }
  .news-view .article-body .article-block {
    margin-bottom: 29px; }
    .news-view .article-body .article-block:last-child {
      margin-bottom: 0; }
  .news-view .article-body p {
    margin: 0 0 6px;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5; }
    .news-view .article-body p:last-child {
      margin-bottom: 0; }
.news-view .news-cards .card-title {
  font-weight: 400; }
.news-view .news-list .news-row.current .news-title {
  font-weight: 600; }
.news-view .news-cards .news-card.current .card-title {
  font-weight: 700; }
@media screen and (max-width: 991px) {
  .news-view .news-row.current,
  .news-view .news-card.current {
    display: none; }
  .news-view .c-page-title {
    padding: 0 15px;
    margin-bottom: 15px; }
  .news-view .pt-banner .news-list-btn {
    display: none; }
  .news-view .news-inner .news-list-btn {
    display: flex;
    margin: 20px 0 0;
    width: 100%;
    aspect-ratio: auto;
    padding: 11px;
    background: #f5cc00;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25); }
    .news-view .news-inner .news-list-btn .news-list-btn-bg {
      display: none; }
    .news-view .news-inner .news-list-btn .news-list-btn-inner {
      gap: 18px;
      font-family: "Anton", sans-serif;
      font-weight: 400;
      font-size: 14px;
      letter-spacing: 0.42px;
      color: #333; }
    .news-view .news-inner .news-list-btn .news-list-btn-icon {
      width: 19.5px;
      height: 10.83px; }
  .news-view .article {
    border-radius: 12px;
    margin-bottom: 30px; }
  .news-view .article-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 15px; }
  .news-view .article-head-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px; }
  .news-view .article-title {
    font-size: 15px;
    line-height: 1.3; }
  .news-view .article-date {
    font-size: 12px; }
  .news-view .article-body {
    padding: 24px 15px 30px; }
    .news-view .article-body img {
      margin-bottom: 18px; }
    .news-view .article-body p {
      font-size: 14px; } }

/*# sourceMappingURL=news_view.css.map */
