/* SkipIntro – More Recipes Feature CSS */
/* @since 2.0.0 - Cleaned up: Blog Loadmore removed */

/* More Recipes Container */
.sic-more-recipes {
  margin: 2rem 0;
}

.sic-more-recipes h3 {
  font-size: clamp(1.25rem, 1.2rem + 1vw, 1.75rem);
  margin: 0 0 1rem 0;
  text-align: left;
}

/* ColibriWP Card Styling für More Recipes */
.sic-more-recipes .colibri-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.sic-more-recipes .colibri-post-thumbnail {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
}

.sic-more-recipes .h-blog-categories {
  margin-bottom: 0;
  padding-bottom: 5px;
}

.sic-more-recipes .h-blog-categories a {
  font-size: 0.75rem;
  font-family: roboto slab;
  font-weight: 400;
  color: #E39E00;
  letter-spacing: 0.5px;
  display: block;
  text-align: left !important;
}

.sic-more-recipes .h-blog-title h4 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: left;
  padding-top: 0;
}

.sic-more-recipes .h-blog-title a {
  color: #1a1a1a;
  text-decoration: none;
}

.sic-more-recipes .h-blog-title a:hover {
  color: #E39E00;
}

/* Loader */
.sic-infinite-loader {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.sic-infinite-loader[hidden] {
  display: none !important;
}

.sic-spinner {
  width: 22px;
  height: 22px;
  border: 3px solid rgba(0, 0, 0, .15);
  border-top-color: rgba(0, 0, 0, .55);
  border-radius: 50%;
  animation: sic-spin 1s linear infinite;
}

@keyframes sic-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Loadmore Button */
.sic-loadmore-more-recipes {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  margin: 0.75rem auto 1rem;
  padding: .75rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.sic-loadmore-more-recipes:hover {
  background: #f7f7f7;
}

.sic-loadmore-more-recipes.is-loading {
  opacity: .8;
  cursor: progress;
}

.sic-loadmore--frozen {
  opacity: .55;
  cursor: default;
  pointer-events: none;
}

/* Sanftes Einblenden */
.sic-fade-prepare {
  opacity: 0;
  transform: translateY(6px);
}

.sic-fade-in {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}
