@charset "UTF-8";
/* style.scss - archivo principal que importa todo */
/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

nav ul li {
  list-style: none;
}

#wpadminbar {
  display: none;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

@media screen and (max-width: 782px) {
  html {
    margin-top: 16px !important;
    width: fit-content;
    padding: 0rem !important;
  }
}
.row {
  padding: 0rem;
}

.header {
  background-color: white;
}
.header__logo img {
  width: 180px;
}
@media (max-width: 768px) {
  .header__logo img {
    width: 112px;
  }
}
.header__nav {
  border-bottom: 1px #ededed solid;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.header__nav .nav-item {
  list-style: none;
}
.header__nav .nav-item .nav-link {
  color: #000000;
  font-weight: 400;
  font-size: 20px;
  transition: color 0.3s;
  font-family: "Bevan", serif;
}
.header__nav .nav-item .nav-link:hover {
  color: rgb(255, 74.5, 106.9199029126);
}
@media (max-width: 768px) {
  .header__nav .nav-item .nav-link {
    font-size: 16px;
  }
}
.header__nav .nav-item .nav-link.active {
  color: #FF3156;
}
@media (max-width: 768px) {
  .header__nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.header__navbar-nav {
  gap: 2rem;
}
@media (max-width: 768px) {
  .header__navbar-nav {
    gap: 0.5rem;
  }
}

.site-footer {
  background-color: #000000;
  padding: 2rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.site-footer__logo {
  width: 150px;
}
.site-footer__info {
  color: white;
  padding: 1rem;
}
.site-footer__social {
  color: white;
  padding: 1rem;
}

.cta__primary {
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  background-color: #000000;
}
@media (max-width: 768px) {
  .cta__primary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: nowrap;
  }
}
.cta__primary__img {
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}
.cta__primary__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
}
.cta__primary__info h3 {
  color: white;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .cta__primary__info h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .cta__primary__info {
    padding: 2rem;
  }
}
.cta__primary__info .btn-container {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .cta__primary__info .btn-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .cta__primary__info .btn {
    width: 100%;
  }
}

.cta__secondary {
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  background-color: #FF3156;
  padding: 1rem;
}
@media (max-width: 768px) {
  .cta__secondary {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: nowrap;
    gap: 1rem;
    padding: 2rem 1rem;
  }
}
.cta__secondary__img {
  padding: 1rem;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
}
.cta__secondary__img img {
  max-width: 180px;
}
@media (max-width: 768px) {
  .cta__secondary__img img {
    max-width: 120px;
  }
}
.cta__secondary__info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
.cta__secondary__info h3 {
  color: #000000;
  margin-bottom: 0rem;
  font-family: "Bevan", serif;
  font-size: 32px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta__secondary__info h3 {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .cta__secondary__info {
    padding: 0rem;
  }
}
.cta__secondary__info .btn-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .cta__secondary__info .btn-container {
    margin-top: 2rem;
    margin-bottom: 2rem;
    width: 100%;
  }
}
.cta__secondary__info .btn {
  background-color: white;
  border: 0px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .cta__secondary__info .btn {
    width: 100%;
  }
}
.cta__secondary__info .btn:hover {
  background-color: rgba(237, 237, 237, 0.85);
}

.single-article__header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  padding: 5rem 0rem 2rem 0rem;
}
@media (max-width: 768px) {
  .single-article__header {
    padding: 3rem 0rem;
  }
}

.single-article__category {
  color: #FF3156;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.single-article__title {
  font-family: "Bevan", serif;
  font-weight: 400;
}

.single-article__excerpt {
  color: #747474;
}

.single-article__date {
  color: #747474;
}

.single-article__thumb {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .single-article__thumb {
    margin-top: 2rem;
  }
}

.single-article__content h2, .single-article__content h3, .single-article__content h4 {
  font-family: "Bevan", serif;
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .single-article__content h2, .single-article__content h3, .single-article__content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
}

.single-article__related__tittle {
  padding: 0rem;
  display: flex;
  flex-direction: start;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 1rem;
  white-space: nowrap;
  margin-bottom: 2rem;
}
.single-article__related__tittle hr {
  background-color: #ededed;
  height: 1px;
  width: 100%;
}
.single-article__related .related-articles {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  align-items: start;
  gap: 2rem;
}
@media (max-width: 768px) {
  .single-article__related .related-articles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
  }
}
.single-article__related .related-article__thumb {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.single-article__related .related-article__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
.single-article__related .related-article__content {
  padding: 1rem 0rem;
}
.single-article__related .related-article__content .related-article__title {
  font-size: 20px;
}

.single-receta__header {
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .single-receta__header {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-top: 3rem;
  }
}
.single-receta__category {
  color: #FF3156;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.single-receta__title {
  font-family: "Bevan", serif;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .single-receta__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .single-receta__title {
    font-size: 3rem;
  }
}
.single-receta__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.single-receta__thumb {
  display: flex;
  align-items: center;
}
.single-receta__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #747474;
  max-width: 900px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .single-receta__description {
    font-size: 1.125rem;
  }
}

.single-receta__main-container {
  margin-top: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .single-receta__main-container {
    margin-top: 2rem;
  }
}
.single-receta__ingredientes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-top: 1rem;
}
.single-receta__content {
  padding: 1rem;
}
@media (max-width: 768px) {
  .single-receta__content {
    padding: 1rem 0rem;
  }
}

.single-receta .wp-block-columns {
  margin-top: 5rem !important;
}
@media (max-width: 768px) {
  .single-receta .wp-block-columns {
    margin-top: 2rem !important;
  }
}

.single-receta .wp-block-columns img {
  width: 600px !important;
}
@media (max-width: 768px) {
  .single-receta .wp-block-columns img {
    width: 500px !important;
  }
}

@media (max-width: 768px) {
  .single-receta__ingredientes ul {
    grid-template-columns: 1fr;
  }
}
.single-resena__header {
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .single-resena__header {
    margin-bottom: 1rem;
    padding-left: 1rem;
    padding-top: 3rem;
  }
}
.single-resena__category {
  color: #FF3156;
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
}
.single-resena__title {
  font-family: "Bevan", serif;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .single-resena__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .single-resena__title {
    font-size: 3rem;
  }
}
.single-resena__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
.single-resena__info {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: 1rem;
}
.single-resena__info .info-item {
  position: relative;
  padding-right: 1rem;
  font-size: 1.1rem;
  color: #747474;
}
.single-resena__info .info-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 18px;
  background-color: #ccc;
}
.single-resena__info__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #747474;
  max-width: 900px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .single-resena__info__description {
    font-size: 1.125rem;
  }
}
.single-resena__info-final {
  gap: 1rem;
}
.single-resena__info-final .info-item {
  position: relative;
  padding-right: 1rem;
  font-size: 1.1rem;
  color: #000000;
}
.single-resena__info-final .info-item.direccion {
  color: #747474;
}
.single-resena__info-final__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #747474;
  max-width: 900px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .single-resena__info-final__description {
    font-size: 1.125rem;
  }
}

.single-resena__main-container {
  margin-top: 6rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
}
@media (max-width: 768px) {
  .single-resena__main-container {
    margin-top: 2rem;
  }
}
.single-resena__ingredientes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.25rem;
  list-style-position: inside;
  padding-left: 0.5rem;
  margin-top: 1rem;
}
.single-resena__content {
  padding: 1rem;
}
@media (max-width: 768px) {
  .single-resena__content {
    padding: 1rem 0rem;
  }
}

.single-resena .wp-block-columns {
  margin-top: 5rem !important;
}
@media (max-width: 768px) {
  .single-resena .wp-block-columns {
    margin-top: 2rem !important;
  }
}

.single-resena .wp-block-columns img {
  width: 600px !important;
}
@media (max-width: 768px) {
  .single-resena .wp-block-columns img {
    width: 500px !important;
  }
}

@media (max-width: 768px) {
  .single-resena__ingredientes ul {
    grid-template-columns: 1fr;
  }
}
.category-page {
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .category-page {
    padding: 3rem 0;
  }
}
.category-page__header {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .category-page__header {
    margin-bottom: 1rem;
    padding-left: 1rem;
  }
}
.category-page__title {
  font-family: "Bevan", serif;
  font-size: 2rem;
  color: #000000;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .category-page__title {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .category-page__title {
    font-size: 3rem;
  }
}
.category-page__description {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: #747474;
  max-width: 900px;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .category-page__description {
    font-size: 1.125rem;
  }
}
.category-page__nav-tabs {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .category-page__nav-tabs {
    margin-bottom: 3rem;
  }
}
.category-page__posts {
  position: relative;
  min-height: 400px;
  transition: opacity 0.3s ease;
}
.category-page__posts.loading {
  opacity: 0.5;
  pointer-events: none;
}
.category-page__no-posts {
  text-align: center;
  padding: 3rem 1rem;
  color: #747474;
  font-size: 1.125rem;
}
.category-page__no-posts p {
  margin: 0;
}
.category-page__error {
  text-align: center;
  padding: 2rem 1rem;
  background-color: rgba(255, 49, 86, 0.1);
  border-left: 4px solid #FF3156;
  border-radius: 4px;
  color: #FF3156;
}
.category-page__error p {
  margin: 0;
  font-weight: 500;
}
.category-page__loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  text-align: center;
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.category-page__loader p {
  margin-top: 1rem;
  color: #747474;
  font-weight: 500;
}
.category-page__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #ededed;
}
.category-page__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  font-weight: 500;
  color: #747474;
  background-color: transparent;
  border: 1px solid #ededed;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.category-page__pagination .page-numbers:hover {
  color: #FF3156;
  border-color: #FF3156;
  background-color: rgba(255, 49, 86, 0.05);
}
.category-page__pagination .page-numbers.current {
  color: white;
  background-color: #FF3156;
  border-color: #FF3156;
  font-weight: 600;
}
.category-page__pagination .page-numbers.dots {
  border: none;
  cursor: default;
}
.category-page__pagination .page-numbers.dots:hover {
  color: #747474;
  background-color: transparent;
}

.posts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 768px) {
  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.loader-spinner {
  width: 50px;
  height: 50px;
  margin: 0 auto;
  border: 4px solid #ededed;
  border-top-color: #FF3156;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.posts-grid .category-article {
  animation: fadeIn 0.5s ease forwards;
}
.posts-grid .category-article:nth-child(1) {
  animation-delay: 0.05s;
}
.posts-grid .category-article:nth-child(2) {
  animation-delay: 0.1s;
}
.posts-grid .category-article:nth-child(3) {
  animation-delay: 0.15s;
}
.posts-grid .category-article:nth-child(4) {
  animation-delay: 0.2s;
}
.posts-grid .category-article:nth-child(5) {
  animation-delay: 0.25s;
}
.posts-grid .category-article:nth-child(6) {
  animation-delay: 0.3s;
}
.posts-grid .category-article:nth-child(7) {
  animation-delay: 0.35s;
}
.posts-grid .category-article:nth-child(8) {
  animation-delay: 0.4s;
}
.posts-grid .category-article:nth-child(9) {
  animation-delay: 0.45s;
}
.posts-grid .category-article:nth-child(10) {
  animation-delay: 0.5s;
}
.posts-grid .category-article:nth-child(11) {
  animation-delay: 0.55s;
}
.posts-grid .category-article:nth-child(12) {
  animation-delay: 0.6s;
}

.featured-col {
  padding: 0rem;
}

.featured {
  position: relative;
}
@media (max-width: 768px) {
  .featured {
    position: inherit;
  }
}
.featured__image img {
  width: 100%;
}
.featured__content {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  z-index: 5;
  padding: 1rem;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 100%, rgba(0, 0, 0, 0.57) 100%);
}
@media (max-width: 768px) {
  .featured__content {
    position: inherit;
    background-color: #000000;
  }
}
.featured__tittle {
  font-family: "Bevan", serif;
  font-weight: 400;
  color: white;
  transition: all 0.3s ease;
}
.featured__tittle :hover {
  color: #FF3156;
}
.featured__category {
  color: #FF3156;
}
.featured__extract, .featured__autor {
  color: white;
}

.featured__image--mobile div {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.featured__image--mobile div img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.header-index {
  text-align: start;
  padding: 3rem 2rem 0rem 0rem;
  color: rgb(65, 65, 65);
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: start;
}
@media (max-width: 768px) {
  .header-index {
    padding: 2rem 1rem 1rem 1rem;
  }
}
.header-index h1 {
  font-size: 20px;
}
.header-index h1 span {
  font-size: 14px;
  color: rgb(185, 185, 185);
}

.category-article-container {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.category-article-container--gap-1 {
  gap: 2rem;
}

.category-title {
  padding: 2rem 6rem;
  display: flex;
  flex-direction: start;
  justify-content: start;
  align-items: center;
  flex-wrap: nowrap;
  width: 100%;
  gap: 1rem;
}
@media (max-width: 768px) {
  .category-title {
    padding: 0.5rem 0rem;
  }
}
.category-title hr {
  background-color: #ededed;
  height: 1px;
  width: 100%;
}

.category-article {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  border-radius: 4px;
  overflow: hidden;
  transition: all ease-in-out 18s;
}
.category-article a:hover {
  background-color: #ededed;
}
.category-article__title {
  font-size: 24px;
  font-family: "Bevan", serif;
  font-weight: 400;
  color: #000000;
  transition: all 0.3s ease;
}
.category-article__title:hover {
  color: #FF3156;
}
.category-article__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.category-article__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.category-article__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  gap: 1rem;
  padding: 0.5rem 0.5rem;
}
.category-article__meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  gap: 0.5rem;
}
.category-article__category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.category-article__tags {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  flex-wrap: start;
  gap: 0.75rem;
}
.category-article__tags .tag-link {
  background-color: #FFC4C6;
  padding: 0rem 0.25rem;
  font-weight: 400;
}
.category-article__tags__rating .star-black {
  color: #000000 !important;
}
.category-article__tags__rating .star-gray {
  color: #747474;
}
.category-article--horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: start;
  height: 400px;
  overflow: hidden;
  padding: 0;
}
@media (max-width: 768px) {
  .category-article--horizontal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: start;
    height: fit-content;
  }
}
.category-article--horizontal .category-article__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  order: 1;
  width: 40%;
  height: 100%;
  background-color: #000000;
  color: #FF3156;
  padding: 2rem;
}
@media (max-width: 768px) {
  .category-article--horizontal .category-article__content {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    flex-wrap: nowrap;
    order: 2;
    width: 100%;
    height: fit-content;
    padding: 1rem;
  }
}
.category-article--horizontal .category-article__thumb {
  order: 2;
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .category-article--horizontal .category-article__thumb {
    height: fit-content;
  }
}
.category-article--horizontal .category-article__thumb img {
  width: 100%;
}
.category-article--horizontal .category-article__category {
  color: #FF3156;
}
.category-article--horizontal .category-article__title {
  color: white;
  font-size: 32px;
}
@media (max-width: 768px) {
  .category-article--horizontal .category-article__title {
    font-size: 20px;
  }
}
.category-article--horizontal .category-article__title :hover {
  text-decoration: underline;
  background-color: transparent;
}
.category-article--horizontal .category-article__excerpt {
  color: white;
}
.category-article--option2 {
  padding: 0;
}
.category-article--option2 .category-article__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  order: 1;
  width: 100%;
  background-color: #000000;
  padding: 0 1rem;
  min-height: 120px;
}
.category-article--option2 .category-article__category {
  color: #FF3156;
}
.category-article--option2 .category-article__title {
  color: white;
  font-size: 20px;
}
.category-article--option2 .category-article__title :hover {
  text-decoration: underline;
  background-color: #000000;
}
.category-article--option2 .category-article__excerpt {
  color: white;
}
.category-article--option2 .category-article__thumb {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}
.category-article--option2 .category-article__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}
.category-article--option3 {
  padding: 0;
}
.category-article--option3 .category-article__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: nowrap;
  order: 1;
  width: 100%;
  background-color: #000000;
  padding: 0 1rem;
  min-height: 120px;
}
.category-article--option3 .category-article__category {
  color: #FF3156;
}
.category-article--option3 .category-article__title {
  color: white;
  font-size: 20px;
}
.category-article--option3 .category-article__title :hover {
  text-decoration: underline;
  background-color: #000000;
}
.category-article--option3 .category-article__excerpt {
  color: white;
}
.category-article--option3 .category-article__thumb {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
.category-article--option3 .category-article__thumb img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  min-height: 100%;
  min-width: 100%;
}

.article-sm-container .category-article .category-article__content h4 {
  font-size: 18px;
}

.category-article__rating .star-black {
  color: #000000 !important;
}

.category-article__rating .star-gray {
  color: #b3b3b3;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 16px;
  height: fit-content;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn--black {
  background: #000000;
  color: #FF3156;
}
.btn--black:hover {
  background: #000000;
  color: #FF3156;
}
.btn--primary {
  background: #ff4f6f;
  color: #000000;
}
.btn--primary:hover {
  background: rgb(255, 28, 69.2727272727);
}
.btn--secondary {
  background: #FFC4C6;
  color: #000000;
  border: 0px solid #444444;
}
.btn--secondary:hover {
  background: rgb(255, 169.5, 171.8108108108);
}
.btn--tertiary {
  background: white;
  color: #000000;
  border: 2px solid #b3b3b3;
}
.btn--tertiary:hover {
  background: #ededed;
  border: 2px solid #b3b3b3;
}
.btn--sm {
  border-radius: 0.25rem;
  font-size: 16px;
  padding: 0.25rem 0.5rem;
}

form select.is-selected {
  border-color: #000;
  background-color: #FFC4C6;
  color: #000000;
  font-weight: 600;
}

.card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  margin: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card__content {
  padding: 1rem;
}
.card__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.card__text {
  font-size: 0.95rem;
  color: #444444;
}

.featured__articles {
  margin-top: 3rem;
  padding: 2rem;
  display: flex;
  flex-direction: center;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .featured__articles {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    flex-wrap: nowrap;
    margin-top: 1rem;
    padding: 1rem;
  }
}
.featured__articles .featured-article {
  background: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  flex-wrap: nowrap;
  margin-bottom: 1rem;
}
.featured__articles .featured-article__thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}
.featured__articles .featured-article__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.featured__articles .featured-article__content {
  padding: 0.5rem 0rem;
}
.featured__articles .featured-article__category {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}
.featured__articles .featured-article__title {
  font-family: "Bevan", serif;
  font-size: 20px;
  transition: all 0.3s ease;
}
.featured__articles .featured-article__title :hover {
  color: #FF3156;
}
.featured__articles .featured-article--big .featured-article__title {
  font-size: 1.5rem;
}

.category-page__nav-tabs {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .category-page__nav-tabs {
    margin-bottom: 3rem;
  }
}
.category-page__nav-tabs .nav-pills {
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .category-page__nav-tabs .nav-pills {
    gap: 1rem;
  }
}
.category-page__nav-tabs .nav-pills .nav-item {
  margin-bottom: 0.5rem;
}
.category-page__nav-tabs .nav-pills .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  background-color: transparent;
  border: 2px solid #000000;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (min-width: 768px) {
  .category-page__nav-tabs .nav-pills .nav-link {
    font-size: 0.938rem;
    padding: 0.625rem 1.5rem;
  }
}
.category-page__nav-tabs .nav-pills .nav-link:hover {
  color: #FF3156;
  border-color: #FF9093;
  background-color: rgba(255, 49, 86, 0.05);
}
.category-page__nav-tabs .nav-pills .nav-link.active {
  color: white;
  background-color: #000000;
  border-color: #000000;
  font-weight: 600;
}
.category-page__nav-tabs .nav-pills .nav-link.active:hover {
  background-color: rgb(255, 23.5, 65.0800970874);
  border-color: rgb(255, 23.5, 65.0800970874);
}
.category-page__nav-tabs .nav-pills .nav-link:focus {
  outline: 0px solid #FF9093;
  outline-offset: 2px;
  box-shadow: none;
}
.category-page__nav-tabs .nav-pills .nav-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

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