/*top-news*/


.top-news-container {
  max-width: 820px;
  width: 85vw;
  margin: 0 auto;
  margin-top: 10vw;

  h2 {
    text-align: center;
    color: #ea553a;
    font-size: 2vw;
    font-weight: 700;
  }

  .top-news-flexbox-container {
    margin: 5vw 0;

    .top-news-flexbox {
      display: flex;
      align-items: center;
      padding: 0 auto;
      border-bottom: 1px solid #000;

      .top-news-text-box {
        font-size: .8rem;
        border: #ea553a 1px solid;
        background-color: #ea553a;
        color: #fff;
        padding: 5px 15px;
        margin: 10px 0;
      }

      .top-news-flex-right {
        display: flex;
        align-items: center;
        margin-left: 2vw;
        gap: 20px;

        a {
          color: #ea553a;
          text-decoration: underline;
        }

        p:nth-child(2) {
          margin-left: 1.5vw;
        }
      }

    }
  }

  .readmore-btn {
    width: 300px;
    border: #ea553a 1px solid;
    background-color: #ea553a;
    padding: 1vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    justify-self: anchor-center;
    font-size: 16px;
    font-weight: 200;
    line-height: 1.5;
    color: #fff;
    margin-top: 5vw;

    img {
      height: 1lh;
    }
  }
}