@charset "UTF-8";

.article-share {
  margin-top: 64px;
}

.article-share-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 124px;
  padding: 20px 24px 24px;
  background: #e9e9e9;
}

.article-share-ttl {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4285714286;
}

.article-share-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

.article-share-btn {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  line-height: 0;
}

.article-share-btn img {
  display: block;
  width: 40px;
  height: 40px;
  transition: opacity 0.2s;
}

.article-share-btn .hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.article-share-btn.copied::after {
  content: "Copied";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  padding: 3px 8px;
  color: #fff;
  font-family: "Schibsted Grotesk", serif;
  font-size: 1.1rem;
  line-height: 1.2;
  background: #212121;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .article-share-btn:hover .normal {
    opacity: 0;
  }

  .article-share-btn:hover .hover {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .article-share {
    margin-top: 40px;
  }

  .article-share-box {
    min-height: 120px;
    padding: 20px 16px 24px;
  }

  .article-share-list {
    gap: 25px;
    margin-top: 17px;
  }
}
