@charset "UTF-8";

.blog-page {
  padding: 30px;
  background-color: #d6d6d6;
  display: flex;
  font-family: georgia, palatino, "book antiqua", "palatino linotype", serif;
}

.blog-page__left {
  width: 100%;
  padding-right: 20px;
}

.blog-page__right {
  max-width: 220px;
  min-width: 220px;
}

.blog-page__right__section {
  min-height: 320px;
  margin-bottom: 10px;
}

.blog-page__right__section h2 {
  font-size: 31px;
  margin-bottom: 15px;
  color: #706C6C;
  font-family: georgia, palatino, book antiqua, palatino linotype, serif;
}

.blog-page__right__section .line {
  width: 100%;
  height: 1px;
  background-color: #404041;
  margin-bottom: 10px;
}

.blog-page__right__section h3 {
  color: #706C6C;
  font-size: 15px;
  text-align: center;
}

.blog-page__right__section h2,
.blog-page__right__section h3,
.blog-page__right__section h4 {
  font-weight: 400;
}

.blog-page__right__section ul {
  padding: 0;
  list-style-type: none;
}

.blog-page__right__section ul li {
  margin-bottom: 7px;
}

.blog-page__right__section ul li a {
  color: #706C6C;
  font-size: 15px;
}

.blog-page__right__section ul li a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.blog-page__right__section__social img {
  margin-right: 5px;
  width: 19px;
  height: 19px;
}

.blog-page__right__item {
  display: flex;
  margin-bottom: 20px;
}

.blog-page__right__item__thumbnail {
  position: relative;
  min-width: 70px;
  max-width: 70px;
  max-height: 40px;
  min-height: 40px;
  margin-right: 5px;
}

.blog-page__right__item__thumbnail__video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-page__right__item__thumbnail__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25px;
  height: 20px;
  opacity: 0.8;
}

.blog-page__right__item__info h4 {
  color: #706C6C;
  font-size: 15px;
  margin-bottom: 0;
}

.blog-page__right__item__info h4:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.blog-page__right__item__info span {
  display: block;
  font-size: 10px;
  color: #404041;
  font: normal normal normal 10px/1.4em Arial, "\FF4D\FF53   \FF50\30B4\30B7\30C3\30AF", "ms pgothic", "\B3CB\C6C0", dotum, helvetica, sans-serif;
}

.blog-page__post {
  border: 1px solid #404041;
  padding: 20px;
  margin-bottom: 30px;
}

.blog-page__post img {
    width: 300px;
    max-width: 100%;
    object-fit: contain;
}

.blog-page__post__title a {
  color: #404041;
  margin-bottom: 3px;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2em;
}

.blog-page__post__title a:hover {
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
}

.blog-page__post__date {
  font-size: 12px;
  margin-bottom: 15px;
  color: #706C6C;
  display: block;
}

.blog-page__post__video-read-more {
  display: flex;
  align-items: flex-end;
}

.blog-page__post__video-read-more iframe {
  max-width: 100%;
}

.blog-page__post__video-read-more a {
  margin-left: 40px;
  transition: opacity 0.4s ease 0s;
  color: #404041;
  font-size: 15px;
}

.blog-page__post__video-read-more a:hover {
  opacity: 0.5;
}

.blog-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.blog-page__pagination button {
  background: none;
  border: none;
  margin-right: 20px;
  color: #404041;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.blog-page__pagination button:hover,
.blog-page__pagination button:disabled {
  opacity: 0.5;
}

.blog-page__pagination button:focus {
  outline: none;
}

.blog-page__pagination button:disabled {
  cursor: default;
}

.blog-post-page {
  background-color: #f6dcd0;
}

.blog-post-page__title {
  line-height: 1.2em;
  font-size: 28px;
  margin-bottom: 3px;
}

.blog-post-page__tag-area {
  display: flex;
  font-size: 15px;
  color: #706C6C;
}

.blog-post-page__tag-area .tags a {
  color: #706C6C;
  white-space: nowrap;
  margin-right: 10px;
}

.blog-post-page__tag-area .tags-text {
  display: block;
  margin-right: 10px;
  color: #706C6C;
}

.blog-post-page__share-like {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-post-page__share-like .socials a {
  margin-right: 10px;
}

.blog-post-page__share-like .socials a:last-of-type {
  margin-right: 0;
}

.blog-post-page__share-like .like button {
  background: white;
  border: none;
  width: 32px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  border-radius: 2px;
}

.blog-post-page__share-like .like button img {
  width: 100%;
  height: 100%;
}

.blog-post-page__share-like .like button .hover {
  display: none;
}

.blog-post-page__share-like .like button:focus {
  outline: none;
}

.blog-post-page__share-like .like button:hover .unhover {
  display: none;
}

.blog-post-page__share-like .like button:hover .hover {
  display: block;
}

.blog-post-page .blog-page__post iframe {
  margin-bottom: 50px;
  max-width: 100%;
}

.blog-post-page .blog-page__post__date {
  margin-bottom: 30px;
}

@media (max-width: 960px) {
  .blog-page {
    max-width: calc(100% - 20px) !important;
    display: block;
    padding: 10px;
  }

  .blog-page__left {
    padding: 0;
  }

  .blog-page__right {
    max-width: unset;
    min-width: unset;
  }

  .blog-page__right__section {
    min-height: unset;
  }

  .blog-page__right__section.favs {
    min-height: 300px;
  }

  .blog-page__right__item {
    flex-direction: column-reverse;
  }

  .blog-page__right__item__info {
    margin-bottom: 5px;
  }

  .blog-page__right__item__info h4 {
    line-height: 1.2em;
    font-size: 27px;
    margin-bottom: 5px;
  }

  .blog-page__right__item__info span {
    font-size: 12px;
  }

  .blog-page__right__item__thumbnail {
    padding: 10px;
    max-width: unset;
    width: 100%;
    max-height: unset;
    margin-right: 0;
    box-shadow: 0px 1px 5px 0px rgba(131, 131, 131, 0.2);
    background-color: #eff0e1;
    border: 12px solid #eff0e1;
  }

  .blog-page__right__item__thumbnail__video {
    height: unset;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .blog-page__right__item__thumbnail__play {
    width: 50px;
    height: 40px;
  }

  .blog-page__post__video-read-more {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }

  .blog-page__post__video-read-more iframe {
    margin-bottom: 20px;
  }

  .blog-page__post__video-read-more a {
    display: block;
    margin: 0;
    text-align: center;
  }

  .blog-page__pagination {
    margin-bottom: 20px;
  }
}

@media (max-width: 600px) {
  .blog-post-page .blog-page__post iframe {
    height: 300px;
  }

  .blog-post-page__tag-area {
    flex-direction: column;
  }
}

@media (max-width: 500px) {
  .blog-post-page .blog-page__post iframe {
    height: 250px;
  }
}

@media (max-width: 450px) {
  .blog-post-page .blog-page__post iframe {
    height: 200px;
  }
}

@media (max-width: 400px) {
  .blog-post-page .blog-page__post iframe {
    height: 180px;
  }
}

@media (max-width: 350px) {
  .blog-post-page .blog-page__post iframe {
    height: 160px;
  }
}

