/* Ourkive FSE - lightweight styling overrides */

:root{
  --ourkive-max-content: 860px;
}

/* Reduce default gaps slightly on small screens */
.wp-site-blocks { padding: 0; }
main.wp-block-group { padding: clamp(16px, 2.5vw, 36px); }

/* Query loop cards */
.ourkive-feed .wp-block-post-template{
  gap: clamp(18px, 2.2vw, 28px);
}

.ourkive-card{
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.ourkive-card .wp-block-post-featured-image img{
  width: 100%;
  height: auto;
  display:block;
}

.ourkive-card .ourkive-card-inner{
  padding: 18px 18px 16px;
}

.ourkive-kicker{
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  opacity: .75;
}

.ourkive-title a{
  text-decoration: none;
}

.ourkive-meta{
  font-size: 12px;
  opacity: .7;
}

/* Excerpt clamp (best-effort) */
.ourkive-excerpt{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Footer navigation centered */
.ourkive-footer{
  padding: 32px 18px 42px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.ourkive-footer .wp-block-navigation__container{
  justify-content: center;
  gap: 18px;
}
.ourkive-footer .wp-block-site-title{
  text-align:center;
  margin-bottom: 10px;
}

/* Single post typography */
.ourkive-single .wp-block-post-title{
  margin-bottom: 10px;
}
.ourkive-single .wp-block-post-content{
  line-height: 1.75;
}
