body {
  --page-bg: var(--c-alter2);
  background: var(--page-bg);
}

.floreal-blog--search-page {
  padding: 100px 0;
  text-align: center;
  min-height: calc(100vh - 184px);
}

@media screen and (max-width: 1440px) {
  .floreal-blog--search-page {
    padding: 90px 0;
  }
}

@media screen and (max-width: 991px) {
  .floreal-blog--search-page {
    padding: 80px 0;
  }
}

@media screen and (max-width: 767px) {
  .floreal-blog--search-page {
    padding: 50px 0;
  }
}

.floreal-blog--search-page__title {
  margin-bottom: 30px;
}

.floreal-blog--search-page__search-form div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 767px) {
  .floreal-blog--search-page__search-form div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.floreal-blog--search-page__search-form input[type="text"] {
  border: 1px solid rgba(var(--ca-dark), 0.15);
  padding: 4px 20px;
  min-width: 250px;
  margin-bottom: 20px;
  margin-right: 10px;
  height: 44px;
  border-radius: var(--post-br);
}

@media screen and (max-width: 767px) {
  .floreal-blog--search-page__search-form input[type="text"] {
    margin-right: 0;
    text-align: center;
  }
}

.floreal-blog--search-page__search-form input[type="submit"] {
  border: none;
  position: relative;
  z-index: 10;
  font-weight: 600;
  padding: 0 20px;
  background-color: var(--c-active);
  color: var(--c-light);
  cursor: pointer;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: var(--post-br);
  height: 44px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.floreal-blog--search-page__search-form input[type="submit"]:hover {
  background-color: var(--c-dark);
}

.floreal-blog--banner {
  background-color: var(--c-alter2);
  padding: 130px 15px;
  text-align: center;
  min-height: 150px;
  background-size: cover;
  background-position: center;
}

.floreal-blog--banner.with-image * {
  color: var(--c-light);
}

@media screen and (max-width: 1199px) {
  .floreal-blog--banner {
    padding: 100px 15px;
  }
}

@media screen and (max-width: 767px) {
  .floreal-blog--banner {
    padding: 80px 15px;
  }
}

.floreal-blog--banner__title {
  line-height: 1.4;
  font-size: 70px;
}

@media only screen and (max-width: 1024px) {
  .floreal-blog--banner__title {
    font-size: 55px;
  }
}

@media only screen and (max-width: 767px) {
  .floreal-blog--banner__title {
    font-size: 45px;
  }
}

.floreal-blog--banner__count-results {
  margin-top: 25px;
  color: var(--c-grey);
}

.floreal-blog--wrapper {
  --page-bg: var(--c-alter2);
  --post-br: 0;
  --post-cat-bg: var(--c-active);
  --post-bg: var(--c-light);
  background: var(--page-bg);
  padding: 100px 0 70px;
}

@media screen and (max-width: 1440px) {
  .floreal-blog--wrapper {
    padding: 90px 0 60px;
  }
}

@media screen and (max-width: 991px) {
  .floreal-blog--wrapper {
    padding: 80px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .floreal-blog--wrapper {
    padding: 30px 0;
  }
}

.floreal-blog--wrapper .floreal-blog--top-wrap {
  padding-bottom: 100px;
  text-align: center;
}

@media screen and (max-width: 1440px) {
  .floreal-blog--wrapper .floreal-blog--top-wrap {
    padding-bottom: 90px;
  }
}

@media screen and (max-width: 991px) {
  .floreal-blog--wrapper .floreal-blog--top-wrap {
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 767px) {
  .floreal-blog--wrapper .floreal-blog--top-wrap {
    padding-bottom: 30px;
  }
}

.floreal-blog--wrapper .floreal-blog--top-title {
  margin-bottom: 0;
}

.floreal-blog--wrapper .floreal-blog--top-title + .floreal-blog--top-subtitle {
  margin-top: 10px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
}

.floreal-blog--wrapper .floreal-blog--featured {
  margin-bottom: 30px;
  position: relative;
}

.floreal-blog--wrapper .floreal-blog--featured-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--c-dark);
  background-size: cover;
  background-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: brightness(50%);
          filter: brightness(50%);
  border-radius: var(--post-br);
}

.floreal-blog--wrapper .floreal-blog--featured-item {
  padding: 200px 30px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 100%;
  border-radius: var(--post-br);
  -webkit-box-shadow: rgba(var(--ca-dark), 0.05) 0 0 15px 0;
          box-shadow: rgba(var(--ca-dark), 0.05) 0 0 15px 0;
}

.floreal-blog--wrapper .floreal-blog--featured__footer {
  width: 100%;
}

.floreal-blog--wrapper .floreal-blog--featured__footer > * {
  display: inline-block;
  font-size: .9rem;
}

.floreal-blog--wrapper .floreal-blog--featured__footer > *:not(:last-child)::after {
  content: "\2015";
  margin-right: 5px;
  margin-left: 5px;
}

.floreal-blog--wrapper .floreal-blog--featured__time, .floreal-blog--wrapper .floreal-blog--featured__date, .floreal-blog--wrapper .floreal-blog--featured__footer, .floreal-blog--wrapper .floreal-blog--featured__title-wrap {
  position: relative;
  color: var(--c-light);
  z-index: 20;
}

.floreal-blog--wrapper .floreal-blog--featured__date:hover {
  color: rgba(var(--ca-light), 0.7);
}

.floreal-blog--wrapper .floreal-blog--featured__date:hover::after {
  color: var(--c-light);
}

.floreal-blog--wrapper .floreal-blog--featured__title-wrap {
  margin-bottom: 10px;
}

.floreal-blog--wrapper .floreal-blog--featured__title {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-bottom: 0;
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  line-height: inherit;
}

.floreal-blog--wrapper .floreal-blog--featured__title:hover {
  color: rgba(var(--ca-light), 0.7);
}

.floreal-blog--wrapper .floreal-blog--featured__time b,
.floreal-blog--wrapper .floreal-blog--featured__author-info b, .floreal-blog--wrapper .floreal-blog--featured__author-info {
  color: var(--c-light);
}

.floreal-blog--wrapper .floreal-blog--featured .swiper-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 30px;
}

.floreal-blog--wrapper .floreal-blog--featured .swiper-button-next,
.floreal-blog--wrapper .floreal-blog--featured .swiper-button-prev {
  position: static;
  padding: 4px 10px;
  background: var(--post-cat-bg);
  border-radius: calc(var(--post-br) * 2);
  color: var(--c-light);
  display: inline-block;
  min-width: 60px;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  text-align: center;
  line-height: 1;
  margin: auto 7px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.floreal-blog--wrapper .floreal-blog--featured .swiper-button-next:hover,
.floreal-blog--wrapper .floreal-blog--featured .swiper-button-prev:hover {
  background: var(--c-dark);
}

.floreal-blog--wrapper .floreal-blog--featured .swiper-button-next::before {
  content: "\f10b";
}

.floreal-blog--wrapper .floreal-blog--featured .swiper-button-prev::before {
  content: "\f108";
}

.floreal-blog--wrapper .floreal-blog--post {
  margin-bottom: 30px;
}

@media only screen and (max-width: 767px) {
  .floreal-blog--wrapper .floreal-blog--post {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}

.floreal-blog--wrapper .floreal-blog--post__media img {
  width: 100%;
  border-top-left-radius: var(--post-br);
  border-top-right-radius: var(--post-br);
}

.floreal-blog--wrapper .floreal-blog--post__media + .floreal-blog--post__info-wrap .floreal-blog--post-header {
  margin-top: calc(-27px - 0.8rem);
}

.floreal-blog--wrapper .floreal-blog--post-wrap {
  border-radius: var(--post-br);
  background: var(--post-bg);
  -webkit-box-shadow: rgba(var(--ca-dark), 0.05) 0 0 15px 0;
          box-shadow: rgba(var(--ca-dark), 0.05) 0 0 15px 0;
}

.floreal-blog--wrapper .floreal-blog--post.sticky .floreal-blog--post__title::before {
  content: '\f367';
  font-family: "Ionicons";
  display: inline-block;
  margin-right: 10px;
  -webkit-transform: rotate(30deg);
      -ms-transform: rotate(30deg);
          transform: rotate(30deg);
  color: var(--c-active);
}

.floreal-blog--wrapper .floreal-blog--post__info-wrap {
  padding: 20px 30px;
  position: relative;
}

.floreal-blog--wrapper .floreal-blog--post-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 20px;
}

.floreal-blog--wrapper .floreal-blog--post__categories a {
  padding: 4px 10px;
  background: var(--post-cat-bg);
  border-radius: calc(var(--post-br) * 2);
  color: var(--c-light);
  border: 1px solid var(--post-cat-bg);
  display: inline-block;
  font-weight: 600;
  font-size: .9rem;
}

.floreal-blog--wrapper .floreal-blog--post__categories + .floreal-blog--post__time {
  min-width: 100px;
  width: 100px;
}

.floreal-blog--wrapper .floreal-blog--post__time {
  text-align: right;
  margin-left: auto;
}

.floreal-blog--wrapper .floreal-blog--post__time b {
  color: var(--c-grey);
  font-size: .9rem;
}

.floreal-blog--wrapper .floreal-blog--post__time span {
  padding: 4px 10px;
  background: var(--c-light);
  border-radius: calc(var(--post-br) * 2);
  color: var(--c-grey);
  border: 1px solid var(--c-light);
  display: inline-block;
}

.floreal-blog--wrapper .floreal-blog--post__title {
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin-bottom: 8px;
  display: inline-block;
  word-wrap: break-word;
  max-width: 100%;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  font-family: inherit;
  line-height: inherit;
}

.floreal-blog--wrapper .floreal-blog--post__title:hover {
  color: var(--c-active);
}

.floreal-blog--wrapper .floreal-blog--post__text {
  margin-bottom: 20px;
  word-wrap: break-word;
}

.floreal-blog--wrapper .floreal-blog--post__text p {
  margin-bottom: 0;
}

.floreal-blog--wrapper .floreal-blog--post__author {
  color: var(--c-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: auto;
  margin-bottom: 20px;
}

.floreal-blog--wrapper .floreal-blog--post__author img {
  border-radius: 50%;
  margin-right: 15px;
}

.floreal-blog--wrapper .floreal-blog--post__author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.floreal-blog--wrapper .floreal-blog--post__author-info a {
  color: var(--c-grey);
  display: inline-block;
  margin-bottom: 0;
}

.floreal-blog--wrapper .floreal-blog--post__author-info a:hover {
  color: var(--c-active);
}

.floreal-blog--wrapper .floreal-blog--post__author-info a:hover::before {
  color: var(--c-grey);
}

.floreal-blog--wrapper .floreal-blog--post__author-info + a::before {
  content: "\2015";
  margin-right: 5px;
  margin-left: 5px;
}

.floreal-blog--wrapper .floreal-blog--post__author > a {
  text-align: right;
}

.floreal-blog--wrapper .floreal-blog--post__footer {
  border-top: 1px solid rgba(var(--ca-grey), 0.15);
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.floreal-blog--wrapper .floreal-blog--post__link a {
  font-weight: 500;
}

.floreal-blog--wrapper .floreal-blog--post__link a:hover {
  color: inherit;
  opacity: .7;
}

.floreal-blog--wrapper .floreal-blog--post__comments {
  border-left: 1px solid rgba(var(--ca-grey), 0.15);
  padding-left: 20px;
}

.floreal-blog--wrapper .floreal-blog--post__comments i {
  display: inline-block;
  margin-right: 5px;
  font-weight: inherit;
}

.floreal-blog--wrapper .floreal-blog--post__comments i::before {
  font-weight: inherit;
}

.floreal-blog--wrapper .floreal-blog--post__comments b {
  color: inherit;
}

.floreal-blog--wrapper .floreal-blog--pagination {
  text-align: center;
  margin-top: 63px;
  margin-bottom: 23px;
}

@media screen and (max-width: 1440px) {
  .floreal-blog--wrapper .floreal-blog--pagination {
    margin-top: 53px;
  }
}

@media screen and (max-width: 991px) {
  .floreal-blog--wrapper .floreal-blog--pagination {
    margin-top: 33px;
    margin-bottom: 53px;
  }
}

@media screen and (max-width: 767px) {
  .floreal-blog--wrapper .floreal-blog--pagination {
    margin-top: 15px;
    margin-bottom: 23px;
  }
}

.floreal-blog--wrapper .floreal-blog--pagination .page-numbers {
  color: var(--c-grey);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1;
  margin: 8px;
  font-size: 1rem;
}

.floreal-blog--wrapper .floreal-blog--pagination .page-numbers:hover {
  color: var(--c-active);
}

.floreal-blog--wrapper .floreal-blog--pagination .page-numbers.current {
  background: var(--c-active);
  color: var(--c-light);
  padding: 10px 13px;
  font-weight: 600;
  border-radius: 50%;
}
