* {
  box-sizing: border-box;
}
.baslikTx {
  font-size: 1.4em;
  color: #ff6c08;
  font-weight: 300;
}
.button {
  font-size: 1.3rem;
  padding: 0.35em 0.75em;
  line-height: 1;
  background-color: transparent;
  border: 0.125rem solid #2a2a2a;
  border-radius: 2rem;
  cursor: pointer;
  transition: 0.1s;
  outline: 0;
}
.button:hover {
  background-color: #2a2a2a;
  color: #fff;
}
.button .fa {
  font-size: 0.75em;
  margin-left: 0.5em;
}
.button.btn--primary {
  border-color: #ff6c08;
  color: #ff6c08;
}
.button.btn--primary:hover {
  background-color: #ff6c08;
  color: #fff;
}
.button.btn--accent {
  border-color: #ff6c08;
  color: #ff6c08;
}
.button.btn--accent:hover {
  background-color: #ff6c08;
  color: #fff;
}
.posts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2.5rem;
}
@media (max-width: 1140px) {
  .posts {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .posts {
    grid-template-columns: repeat(1, 1fr);
  }
}
.post__image {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}
.post__image .imgs {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: center center;
}
.post__image:before,
.post__image:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.post__image:before {
  background-size: cover;
  background-position: center center;
  transform: scale(1);
  filter: blur(0);
  transition: 2s cubic-bezier(0, 0.6, 0.2, 1);
}
.post__image:after {
  background: linear-gradient(30deg, #ffffff 0%, #ff6c08 100%);
  background-size: 100% 300%;
  background-position: bottom left;
  opacity: 0.15;
  transition: 2s cubic-bezier(0, 0.6, 0.2, 1);
}
.post__content {
  margin: -3rem 1.5rem 0;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 3px;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
  transition: margin 0.2s ease-in-out;
  position: relative;
  z-index: 1;
  user-select: none;
}
.post__inside {
  overflow: hidden;
  height: 4.85rem;
  transition: height 0.2s ease-in-out;
}
.post__title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 1rem;
  font-weight: 400;
  color: #ff6c08;
}
.post__excerpt {
  overflow: hidden;
  margin: 0;
  max-height: 15rem;
  position: relative;
}
.post__button {
  margin-top: 1rem;
}
/* ====== HOVER ====== */
.post:hover .post__content {
  margin-top: -18.55rem;
}
.post:hover .post__inside {
  height: 20.4rem;
}
.post:hover .post__image .imgs {
  transform: scale(1.1);
  filter: blur(5px);
}
.post:hover .post__image:after {
  opacity: 0.5;
}
.post:hover .post__image:before {
  transform: scale(1.1);
  filter: blur(10px);
}
