@charset "utf-8";

.article {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 0;
}
.article_category_wrapper {
  display: flex;
  align-items: center;
  margin-right: 64px;
}
.article_category {
  font-size: 28px;
  font-weight: 600;
}
.article_category_link_wrapper {
  display: none;
  align-items: center;
  gap: 0 16px;
  margin-left: auto;
}
.article_category_link {
  transition: opacity 0.15s ease;
}
.article_category_link_icon {
  width: 24px;
  height: auto;
}
.article_wrapper {
  flex: 1;
  max-width: 880px;
  padding: 40px 40px 0;
  border: 1px solid #eef3f7;
  border-radius: 2px;
}
.article_header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.article_header_category_wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.article_header_category {
  padding: 0 8px;
  background-color: #0e1a25;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 24px;
}
.article_header_category.AnyMindGroup {
  background-color: #e04f49;
}
.article_header_category.EcommerceD2C {
  background-color: #3db161;
}
.article_header_category.InfluencerMarketing {
  background-color: #b077e9;
}
.article_header_category.DigitalMarketing {
  background-color: #5cc9ec;
}
.article_header_category.PublisherGrowth {
  background-color: #3980c3;
}
.article_header_category.CreatorGrowth {
  background-color: #ffab2d;
}
.article_header_date {
  margin-left: 8px;
  color: #6e7c89;
  font-size: 12px;
}
.article_header_link_wrapper {
  display: flex;
  align-items: center;
  gap: 0 16px;
  margin-left: auto;
}
.article_header_link {
  transition: opacity 0.15s ease;
}
.article_header_link_icon {
  width: 24px;
  height: auto;
}
.article_title {
  margin-top: 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
}
.article_subtitle {
  margin-top: 16px;
  color: #6e7c89;
  font-size: 15px;
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}
.article_thumbnail {
  max-width: 100%;
  height: auto;
  margin: 24px auto 0;
  border-radius: 2px;
}
.article_body {
  margin-top: 24px;
}
.article_body h4 {
  font-size: 18px;
  font-weight: 700;
}
.article_body p {
  font-size: 16px;
  line-height: 1.8;
}
.article_body b {
  font-weight: 700;
}
.article_body a {
  display: inline;
  color: #3892e5;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  text-decoration: underline;
  word-wrap: break-word;
  word-break: break-all;
  transition: opacity 0.15s ease;
}
.article_body dt {
  display: flex;
  align-items: flex-start;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.article_body dt::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 1px;
  margin: 12px 16px 0 0;
  background-color: #182127;
}
.article_body img {
  max-width: 100%;
  height: auto;
  border-radius: 2px;
}
.article_footer_link {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding: 24px 0;
  border-top: 1px solid #eef3f7;
}
.article_footer_link_img {
  width: 16px;
  height: auto;
}
.article_footer_link_text {
  margin-left: 16px;
  position: relative;
  color: #3892e5;
  font-size: 16px;
  font-weight: 600;
}
.article_footer_link_text::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #3892e5;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.15s ease;
}

@media screen and (max-width: 1040px) {
  .article {
    display: block;
  }
  .article_category_wrapper {
    margin-right: 0;
  }
  .article_category_link_wrapper {
    display: flex;
  }
  .article_wrapper {
    margin-top: 24px;
  }
  .article_header_date {
    margin-left: auto;
  }
  .article_header_link_wrapper {
    display: none;
  }
}

@media screen and (min-width: 641px) {
  .article_category_link:hover {
    opacity: 0.6;
  }
  .article_body a:hover {
    opacity: 0.6;
  }
  .article_footer_link:hover .article_footer_link_text::after {
    transform: none;
  }
}

@media screen and (max-width: 860px) {
  .article_wrapper {
    padding: 24px 20px 0;
  }
}

@media screen and (max-width: 640px) {
  .article {
    padding: 48px 20px 0;
  }
}

@media screen and (max-width: 480px) {
  .article {
    padding: 32px 20px 0;
  }
  .article_category {
    font-size: 24px;
  }
  .article_category_link_icon {
    width: 22px;
  }
  .article_wrapper {
    margin-top: 32px;
    padding: 0;
    border: none;
  }
  .article_header_date {
    width: 100%;
    margin: 8px 0 0;
  }
  .article_title {
    margin-top: 16px;
    font-size: 20px;
  }
  .article_subtitle {
    font-size: 13px;
  }
  .article_body h4 {
    font-size: 16px;
  }
  .article_body p {
    font-size: 14px;
  }
  .article_body a {
    font-size: 14px;
  }
  .article_body dt {
    font-size: 14px;
  }
  .article_footer_link {
    margin-top: 24px;
  }
  .article_footer_link_img {
    width: 14px;
  }
  .article_footer_link_text {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .article_category {
    font-size: 20px;
  }
  .article_category_link_wrapper {
    gap: 0 12px;
  }
  .article_category_link_icon {
    width: 20px;
  }
}
