.news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(330px, 1fr));
  grid-gap: 15px;
  grid-template-rows: repeat(3, minmax(170px, 1fr)); }
  @media screen and (max-width: 1366px) {
    .news-grid {
      grid-template-columns: repeat(4, minmax(250px, 1fr)); } }
  @media screen and (max-width: 768px) {
    .news-grid {
      grid-template-columns: repeat(2, minmax(150px, 1fr));
      grid-template-rows: repeat(2, minmax(150px, 1fr)); } }
  @media screen and (max-height: 768px) {
    .news-grid {
      grid-template-columns: repeat(2, minmax(150px, 1fr));
      grid-template-rows: repeat(2, minmax(150px, 1fr)); } }
  @media screen and (max-width: 560px) {
    .news-grid {
      display: flex;
      flex-direction: column; } }
  .news-grid .news {
    position: relative;
    color: var(--white);
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
    padding-left: 20px;
    border-radius: 16px;
    overflow: hidden;
    width: 100%; }
    @media screen and (max-width: 768px) {
      .news-grid .news {
        min-height: 150px; } }
    @media screen and (max-height: 768px) {
      .news-grid .news {
        min-height: 150px; } }
    .news-grid .news::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: -1; }
    .news-grid .news:first-child {
      grid-row-start: 1;
      grid-row-end: 4;
      grid-column-start: 1;
      grid-column-end: 3;
      padding-bottom: 20px;
      padding-left: 20px; }
      .news-grid .news:first-child h4 {
        font-size: 42px; }
        @media screen and (max-width: 560px) {
          .news-grid .news:first-child h4 {
            font-size: 24px; } }
        @media screen and (max-height: 768px) {
          .news-grid .news:first-child h4 {
            font-size: 24px; } }
    .news-grid .news img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -2;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); }
    .news-grid .news time {
      display: block;
      margin-bottom: 10px;
      line-height: 1em;
      font-weight: 400;
      opacity: 0.75; }
    .news-grid .news h4 {
      margin: 0;
      line-height: 1em;
      font-size: 24px;
      font-weight: 500;
      text-overflow: ellipsis;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1; }

.menu {
  margin-right: 42px;
  border-radius: 10px;
  background-color: var(--primary);
  color: var(--white); }
  @media screen and (max-width: 768px) {
    .menu {
      display: none; } }
  .menu li.menu-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); }
    .menu li.menu-item a {
      display: block;
      font-size: 20px;
      font-weight: 500;
      padding: 20px 0;
      text-align: center; }
    .menu li.menu-item:last-child {
      border-bottom: 0; }

main .container .filter-area {
  margin-bottom: 22px;
  justify-content: space-between; }
  @media screen and (max-width: 767px) {
    main .container .filter-area {
      flex-direction: column; }
      main .container .filter-area > * {
        margin-top: 10px; }
        main .container .filter-area > *:first-child {
          margin-top: 0; } }
  @media screen and (max-width: 767px) {
    main .container .filter-area .ui.search .input {
      width: 100%; } }
  main .container .filter-area .ui.search input.prompt {
    border-radius: 10px;
    width: 450px;
    border-color: #e2e2ea;
    color: #474774;
    height: 38px; }
    @media screen and (max-width: 768px) {
      main .container .filter-area .ui.search input.prompt {
        width: 100%; } }
  main .container .filter-area .ui.search i.search {
    color: #92929d; }
  main .container .filter-area .ui.dropdown {
    border-color: #e2e2ea; }
    @media screen and (max-width: 767px) {
      main .container .filter-area .ui.dropdown {
        width: 100%; } }
    @media screen and (max-width: 768px) {
      main .container .filter-area .ui.dropdown:not(:last-child) {
        margin-left: 10px; } }
    @media screen and (max-width: 767px) {
      main .container .filter-area .ui.dropdown:not(:last-child) {
        margin: 0 0 10px; } }

main .container .live-tv-alert {
  width: 100%;
  text-align: center;
  height: 45px;
  background-color: var(--primary);
  box-shadow: 0 0 6px var(--gray);
  border-radius: 10px;
  line-height: 45px;
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700; }

main .container .live-tv-wrapper {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 20px;
  cursor: pointer;
  display: none; }
  main .container .live-tv-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 10px; }

main .container section.news {
  margin-bottom: 45px; }
  main .container section.news .news-divider {
    max-width: 80%;
    margin: 18px auto 8px;
    height: 1px;
    background-color: var(--gray); }
  main .container section.news > div.wrapper {
    align-items: flex-start;
    margin-top: 25px; }
    main .container section.news > div.wrapper .grid-three {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-row-gap: 25px;
      grid-column-gap: 20px; }
      @media screen and (max-width: 768px) {
        main .container section.news > div.wrapper .grid-three {
          grid-template-columns: repeat(2, 1fr); } }
      @media screen and (max-width: 456px) {
        main .container section.news > div.wrapper .grid-three {
          grid-template-columns: repeat(1, 1fr); } }
      main .container section.news > div.wrapper .grid-three.w75 {
        width: 75%; }
        @media screen and (max-width: 768px) {
          main .container section.news > div.wrapper .grid-three.w75 {
            width: 100%; } }
      main .container section.news > div.wrapper .grid-three .news {
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1); }
        main .container section.news > div.wrapper .grid-three .news-img {
          position: relative; }
          main .container section.news > div.wrapper .grid-three .news-img img {
            width: 100%;
            max-height: 230px; }
          main .container section.news > div.wrapper .grid-three .news-img::after {
            content: '';
            position: absolute;
            background: black;
            background: linear-gradient(225deg, rgba(0, 0, 0, 0) 0%, black 100%);
            z-index: -1; }
        main .container section.news > div.wrapper .grid-three .news .info-area {
          padding: 20px 25px; }
          main .container section.news > div.wrapper .grid-three .news .info-area time {
            color: var(--gray); }
          main .container section.news > div.wrapper .grid-three .news .info-area h4 {
            margin-top: 10px;
            font-size: 21px;
            font-weight: 500;
            color: var(--black); }
