@charset "UTF-8";
/*
    Theme Name: Studio Blog
    Author: Emerson Gonçalves
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

input {
  outline: none;
  border: 0px;
}

img {
  width: 100%;
  height: auto;
}

html, body, input, button, li, ul, a {
  font-family: "Roboto", sans-serif;
}

button {
  cursor: pointer;
}

.header {
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: #fff;
  z-index: 999;
  border-bottom: 2px solid #ef3534;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .header {
    height: 70px;
    position: fixed;
    width: 100%;
    top: 0px;
    padding: 0px 10px;
  }
}
.header__area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  max-width: 180px;
  padding: 10px 0px;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 120px;
  }
}
.header__search {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__search-area {
  display: flex;
  justify-content: space-between;
  padding: 5px;
  align-items: center;
  background-color: #fff;
  height: 35px;
  width: 280px;
  border-radius: 6px;
  border: 1px solid rgba(239, 53, 52, 0.7);
}
.header__search-area form {
  width: 100%;
  height: 100%;
  flex: 1;
}
.header__search-area input {
  height: 100%;
  border-radius: 6px;
  width: 100%;
  padding: 0px 10px;
}
.header__search-area i {
  color: rgba(239, 53, 52, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header__search {
    display: none;
  }
}
.header__cta a {
  padding: 10px 25px;
  background-color: #ef3534;
  border-radius: 6px;
  color: #fff;
  font-weight: 600;
}
.header__cta a:hover {
  color: #D45151;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  padding: 20px;
  background-color: #333;
}
footer .logo-footer {
  max-width: 150px;
  height: auto;
  margin: 1rem 0rem;
}
@media screen and (max-width: 768px) {
  footer .logo-footer {
    max-width: 120px;
  }
}
footer span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}
footer .social-icons {
  display: flex;
  gap: 16px;
  color: #c0c0c0;
  font-size: 1.2rem;
  transition: 0.5s;
}
footer .social-icons i:hover {
  color: #ef3534;
  transition: 0.5s;
}

.main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 0rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .main {
    margin-top: 70px;
  }
}

.last-posts {
  display: grid;
  gap: 8px;
  min-height: 441px;
  max-width: 1104px;
  grid-template-columns: 2fr 1fr fit-content(20%);
  grid-template: "post-1 post-1 post-2" "post-1 post-1 post-3";
}
@media screen and (max-width: 768px) {
  .last-posts {
    padding: 20px;
    min-height: 100%;
    grid-template: "post-1 post-1" "post-1 post-1" "post-2 post-3";
  }
}
.last-posts__item-1 {
  grid-area: post-1;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  width: 735px;
  height: auto;
  padding: 20px;
  background-position: center;
  cursor: pointer;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: 6px 0px 0px 6px;
  border: 1px solid #fff;
}
.last-posts__item-1 h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .last-posts__item-1 h2 {
    font-size: 1.3rem;
  }
}
.last-posts__item-1 span {
  align-self: flex-start;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .last-posts__item-1 {
    border-radius: 6px 6px 0px 0px;
    height: 280px;
    width: auto;
  }
}
.last-posts__item-2 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: start;
  cursor: pointer;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: 0px 6px 0px 0px;
  width: 358px;
  height: 221px;
  padding: 20px;
  border: 1px solid #fff;
}
.last-posts__item-2 h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .last-posts__item-2 h2 {
    font-size: 1rem;
  }
}
.last-posts__item-2 span {
  visibility: hidden;
  height: 0px;
  transform: scaleY(0%);
  align-self: flex-start;
  color: #fff;
  transition: visibility 0.3s ease;
}
.last-posts__item-2:hover span {
  visibility: visible;
  margin-top: 10px;
  height: auto;
  transform: scaleY(100%);
  transition: 0.3s;
  transition: visibility 1s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .last-posts__item-2 {
    border-radius: 0px 0px 0px 6px;
    height: 150px;
    width: 100%;
  }
  .last-posts__item-2 span {
    display: none;
  }
}
.last-posts__item-3 {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  align-items: start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  border-radius: 0px 0px 6px 0px;
  width: 358px;
  height: 221px;
  padding: 20px;
  border: 1px solid #fff;
}
.last-posts__item-3 h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .last-posts__item-3 h2 {
    font-size: 1rem;
  }
}
.last-posts__item-3 span {
  visibility: hidden;
  max-height: 0px;
  transform: scaleY(0%);
  align-self: flex-start;
  color: red;
  transition: visibility 0.3s ease;
}
.last-posts__item-3:hover span {
  visibility: visible;
  margin-top: 10px;
  max-height: 100%;
  transform: scaleY(100%);
  transition: 0.3s;
  transition: visibility 1s ease, transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .last-posts__item-3 {
    height: 150px;
    border-radius: 0px 0px 6px;
    width: 100%;
  }
  .last-posts__item-3 span {
    display: none;
  }
}

.posts-area {
  display: grid;
  padding-top: 20px;
  grid-template-columns: 800px 304px;
}
@media screen and (max-width: 768px) {
  .posts-area {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }
}
.posts-area .loop-post {
  grid-area: posts;
  display: flex;
  gap: 10px;
  padding: 20px 0px;
}
@media screen and (max-width: 768px) {
  .posts-area .loop-post {
    flex-direction: column;
    padding: 20px;
  }
}
.posts-area .loop-post__thumbnail {
  min-width: 270px;
  max-width: 270px;
  min-height: 170px;
  background-size: cover;
  background-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .posts-area .loop-post__thumbnail {
    padding: 20px;
    min-width: 100%;
    min-height: 270px;
  }
}
.posts-area .loop-post__categories-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.posts-area .loop-post__categories-item a {
  font-size: 0.7rem;
  color: #ef3534;
  font-weight: 600;
  letter-spacing: 2px;
}
.posts-area .loop-post__content {
  display: flex;
  gap: 10px;
  padding: 0px 15px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .posts-area .loop-post__content {
    padding: 15px 0px;
  }
}
.posts-area .more-posts {
  display: flex;
  width: 100%;
  justify-content: start;
}
@media screen and (max-width: 768px) {
  .posts-area .more-posts {
    display: flex;
    width: 50%;
    justify-content: center;
    margin: 0 auto;
  }
}
.posts-area .more-posts button {
  width: 95%;
  background-color: #FCFCFC;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 1rem 0rem;
  color: #ef3534;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 0.7rem;
  text-transform: uppercase;
  opacity: 0.8;
  transition: 0.8s;
}
.posts-area .more-posts button:hover {
  opacity: 1;
  transition: 0.8s;
}
.posts-area .sidebar-home {
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .posts-area .sidebar-home {
    width: 90%;
    margin: 0 auto;
    padding: 2rem 0rem;
  }
}
.posts-area .sidebar-home__banner {
  min-height: 335px;
  padding-left: 20px;
  margin: 2rem 0rem;
}
@media screen and (max-width: 768px) {
  .posts-area .sidebar-home__banner {
    margin: 0 auto;
    margin-top: 24px;
    height: 335px;
    width: 276px;
  }
}
.posts-area .sidebar-home h2 {
  font-size: 1rem;
  margin-top: 20px;
  padding-left: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #D45151;
}
.posts-area .sidebar-home ul {
  margin: 10px 0px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.posts-area .sidebar-home li {
  background-color: rgba(0, 0, 0, 0);
  padding: 10px 20px;
  margin: 5px 0px;
  list-style: none;
  transition: 0.5s;
}
.posts-area .sidebar-home li::before {
  content: "";
}
@media screen and (max-width: 768px) {
  .posts-area .sidebar-home li {
    margin: 10px 0px;
    padding: 10px;
  }
}
.posts-area .sidebar-home li:hover {
  color: #ef3534;
  transition: 0.5s;
}
.posts-area .sidebar-home li a {
  font-size: 1rem;
  font-weight: 400;
}

.banner-full {
  margin: 2rem 0rem;
  background-color: #d1d1d1;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2rem 0rem;
}
@media screen and (max-width: 768px) {
  .banner-full {
    display: none;
  }
}

.slider-duo {
  padding: 1rem 0rem;
}
.slider-duo a {
  padding: 20px;
  margin: 10px;
}
.slider-duo__item {
  width: 545px;
  height: 344px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  margin: 5px;
  padding: 20px;
  border-radius: 6px;
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  background-repeat: no-repeat;
  background-size: cover;
  object-fit: cover;
  object-position: center center;
}
.slider-duo__item h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .slider-duo__item {
    width: auto;
    height: 300px;
  }
}

.sidebar-home__social {
  width: 100%;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 1.3rem 0rem;
}
.sidebar-home__social .social__box {
  padding: 10px;
  font-size: 1.4rem;
  line-height: 1.4rem;
  opacity: 0.7;
  color: white;
  border-radius: 6px;
  transition: 1s;
}
.sidebar-home__social .social__box:hover {
  opacity: 1;
  transition: 1s;
}

.content {
  max-width: 780px;
}
.content h2 {
  font-size: 2rem;
  line-height: 2.4rem;
  margin: 2rem 0rem 1.5rem 0rem;
  font-weight: 700;
  color: #D45151;
}
.content h3 {
  font-size: 1.5rem;
  color: #D45151;
  font-weight: 600;
  margin: 2rem 0rem 1.5rem 0rem;
}
.content p {
  margin-bottom: 1rem;
}
.content a {
  color: #D45151;
  font-weight: 700;
}
.content ul li {
  margin-bottom: 16px;
}
.content ul li::before {
  content: "◈ ";
  color: #ef3534;
}
@media screen and (max-width: 768px) {
  .content {
    padding: 10px;
  }
}
.content__meta {
  margin: 1.3rem 0rem;
}
.content__share-icons {
  font-size: 1.5rem;
  color: #D45151;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0.7;
  transition: 1s;
}
.content__share-icons:hover {
  transition: 1s;
  opacity: 1;
}
.content__share-icons i:hover {
  transition: 1s;
  color: #ef3534;
}
.content__share-icons span {
  font-size: 0.8rem;
  color: #D45151;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.content__divider {
  width: 100px;
  height: 1.3px;
  background-color: #D45151;
}
.content__title {
  margin-bottom: 1.3rem;
}
.content__title h1 {
  font-size: 2.5rem;
}
.content__feature-image {
  margin-top: 1.5rem;
  width: 780px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 768px) {
  .content__feature-image {
    width: 100%;
    height: 400;
  }
}
.content__content {
  font-size: 18px;
  line-height: 1.8rem;
  background-color: #ffffff;
  padding: 2rem 1rem;
  border-radius: 0px 0px 6px 6px;
}

.comments {
  width: 1104px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .comments {
    width: 100%;
    padding: 20px;
  }
}
.comments ol {
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .comments__list {
    padding: 20px;
  }
}
.comments__list .comment-author img {
  display: none;
}
.comments__list .comment-body {
  background-color: #fff;
  padding: 20px;
  border-radius: 6px;
  margin: 1rem;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}
.comments__list .children {
  margin-left: 4rem;
}
.comments__list li {
  margin-bottom: 2rem;
}
.comments__list .comment-author {
  color: #D45151;
  font-weight: 600;
  line-height: 1.5rem;
  font-size: 1rem;
}
.comments__list .comment-meta {
  color: rgba(0, 0, 0, 0.4);
  font-size: 0.7rem;
  margin-bottom: 0.5rem;
}
.comments__list p {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
}
.comments__list .reply {
  background-color: #D45151;
  padding: 3px 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  display: inline;
  color: #fff;
  border-radius: 6px;
}
@media screen and (max-width) {
  .comments__list .reply {
    width: 100%;
  }
}

.comment-form__container {
  width: 80%;
  margin: 0 auto;
}

.comment-form input {
  font-size: 1rem;
  padding: 1rem;
  margin-right: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
}
.comment-form textarea {
  background-color: #fff;
  outline: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.3rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
}
.comment-form input[type=submit] {
  background-color: rgba(212, 81, 81, 0.5);
  color: #fff;
  transition: 1s;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 6px;
}
.comment-form input[type=submit]:hover {
  transition: 1s;
  background-color: #d45151;
}

#cancel-comment-reply-link {
  color: rgba(255, 0, 0, 0.5);
}

body {
  background-color: #f6f6f6;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  body {
    width: 100%;
  }
}

a:hover {
  transition: 1s;
  color: #ef3534;
}

.container {
  width: 1104px;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

.shadow {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
}
.shadow:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  transition: 0.5s;
}

.btn {
  background-color: #D45151;
  padding: 8px 16px;
  color: #fff;
  font-weight: 400;
  font-size: 0.8rem;
  margin: 10px 0px;
  cursor: pointer;
  border-radius: 6px;
  transition: 1s ease-in-out;
}
.btn:hover {
  background-image: linear-gradient(to right bottom, #D45151 80%, rgba(255, 255, 255, 0.2));
  border-radius: 6px 6px 0px 6px;
  transition: 1s ease-in-out;
}

ol {
  padding-left: 20px;
}

h4 {
  line-height: 32px;
  margin-top: 16px;
  margin-bottom: 12px;
}

/*# sourceMappingURL=style.css.map */
