/* line 1, article_card.scss */
.article_card {
  position: relative; }
  /* line 3, article_card.scss */
  .article_card a {
    border-radius: 6px;
    display: block;
    position: relative;
    overflow: hidden;
    color: var(--white); }
  /* line 10, article_card.scss */
  .article_card_photo {
    position: relative;
    padding-top: 130%;
    overflow: hidden; }
    /* line 15, article_card.scss */
    .article_card_photo img {
      position: absolute;
      height: 100%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  /* line 23, article_card.scss */
  .article_card_content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    background: linear-gradient(166.38deg, rgba(37, 37, 37, 0.91) 26.35%, rgba(60, 60, 60, 0) 91.12%); }
    @media (max-width: 768px) {
      /* line 23, article_card.scss */
      .article_card_content {
        padding: 8px; } }
    /* line 36, article_card.scss */
    .article_card_content_date {
      font-weight: 600;
      font-size: 12px;
      color: #a3a3a3;
      margin-bottom: 4px; }
    /* line 42, article_card.scss */
    .article_card_content_name {
      font-weight: 600;
      font-size: 18px;
      color: var(--white);
      margin-bottom: 8px; }
      @media (max-width: 1024px) {
        /* line 42, article_card.scss */
        .article_card_content_name {
          font-size: 16px; } }
      @media (max-width: 768px) {
        /* line 42, article_card.scss */
        .article_card_content_name {
          font-size: 14px; } }
    /* line 54, article_card.scss */
    .article_card_content_desc {
      font-weight: 500;
      font-size: 14px;
      color: #c3c3c3;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      line-clamp: 6;
      -webkit-box-orient: vertical;
      background: none;
      transition: all .3s;
      height: 126px;
      height: 0; }
      @media (max-width: 768px) {
        /* line 54, article_card.scss */
        .article_card_content_desc {
          font-size: 12px; } }
      /* line 70, article_card.scss */
      .article_card_content_desc * {
        background: transparent !important;
        color: inherit !important;
        margin: 0 !important;
        padding: 0 !important;
        font-weight: 500;
        font-size: 14px !important;
        line-height: 1.25 !important;
        text-align: left !important;
        text-indent: 0 !important; }
        @media (max-width: 768px) {
          /* line 70, article_card.scss */
          .article_card_content_desc * {
            font-size: 12px !important; } }
      /* line 84, article_card.scss */
      .article_card_content_desc p {
        display: none; }
        /* line 86, article_card.scss */
        .article_card_content_desc p:first-child {
          display: block; }
    /* line 91, article_card.scss */
    .article_card_content_link {
      font-weight: 600;
      font-size: 14px;
      text-decoration: underline;
      text-decoration-skip-ink: none;
      color: #a3a3a3;
      transition: all .6s; }
  /* line 102, article_card.scss */
  .article_card:hover .article_card_content_desc {
    height: 126px;
    transition: all .3s; }
  /* line 106, article_card.scss */
  .article_card:hover .article_card_content_link {
    margin-top: auto;
    transition: all .6s; }
  /* line 112, article_card.scss */
  .article_card.review_card a {
    background: #fff; }
  /* line 115, article_card.scss */
  .article_card.review_card .article_card_content_date {
    display: none;
    color: var(--blue); }
  /* line 119, article_card.scss */
  .article_card.review_card .article_card_content_name {
    display: none;
    color: var(--blue); }
  /* line 123, article_card.scss */
  .article_card.review_card .article_card_content_link {
    text-align: right;
    color: var(--blue);
    text-decoration: none; }
  /* line 128, article_card.scss */
  .article_card.review_card .article_card_content {
    background: none; }
  /* line 131, article_card.scss */
  .article_card.review_card .article_card_content_desc {
    color: #000; }
  /* line 135, article_card.scss */
  .article_card.review_card:hover .article_card_content {
    background: #fff; }
  /* line 138, article_card.scss */
  .article_card.review_card:hover .article_card_content_name, .article_card.review_card:hover .article_card_content_date {
    display: block; }
