/* Cullah EAEL Replacements — 2026-04-15 */

/* Dual header */
.cullah-dual-header { text-align: center; margin: 0 0 1rem; }
.cullah-dual-header__subtext { margin: 0 auto 0.25rem; }
.cullah-dual-header__subtext h3 { margin: 0; }
.cullah-dual-header__title { margin: 0; line-height: 1.15; font-family: inherit; letter-spacing: .02em; }
.cullah-dual-header__first { display: inline; color: #111; }
.cullah-dual-header__last { display: inline; margin-left: .35em; color: #6ec1e4; }

/* Post grid */
.cullah-post-grid { display: grid; gap: 1.5rem; margin: 1.5rem 0; }
.cullah-post-grid--cols-1 { grid-template-columns: 1fr; }
.cullah-post-grid--cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cullah-post-grid--cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cullah-post-grid--cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .cullah-post-grid--cols-3, .cullah-post-grid--cols-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px)  { .cullah-post-grid { grid-template-columns: 1fr !important; } }

.cullah-post-grid__item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.cullah-post-grid__image { display: block; }
.cullah-post-grid__image img { display: block; width: 100%; height: auto; }
.cullah-post-grid__title { margin: 1rem 1rem 0; font-size: 1.1rem; line-height: 1.3; }
.cullah-post-grid__title a { color: inherit; text-decoration: none; }
.cullah-post-grid__title a:hover { text-decoration: underline; }
.cullah-post-grid__excerpt { margin: 0.5rem 1rem; color: #555; font-size: 0.95rem; }
.cullah-post-grid__button {
  margin: auto 1rem 1rem;
  padding: 0.65rem 1rem;
  background: #000;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: background 0.15s ease;
}
.cullah-post-grid__button:hover { background: #333; color: #fff; }
.cullah-post-grid__empty { text-align: center; color: #888; padding: 2rem; }

/* Creative button */
.cullah-creative-button__wrap { margin: 1.25rem 0; }
.cullah-creative-button__align-left   { text-align: left; }
.cullah-creative-button__align-center { text-align: center; }
.cullah-creative-button__align-right  { text-align: right; }
.cullah-creative-button {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5em;
  padding: 0.9rem 1.8rem;
  background: #f96854;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background 0.15s ease;
}
.cullah-creative-button:hover { background: #e0513d; color: #fff; }
.cullah-creative-button__secondary { opacity: 0.85; font-size: 0.9em; font-weight: 500; }

/* WC product grid (slider replacement) */
.cullah-wc-slider {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin: 1.5rem 0;
}
.cullah-wc-slider__item a { display: block; color: inherit; text-decoration: none; }
.cullah-wc-slider__item img { display: block; width: 100%; height: auto; }
.cullah-wc-slider__title { margin: 0.5rem 0 0.25rem; font-size: 1.05rem; }
.cullah-wc-slider__price { color: #000; font-weight: 600; }
.cullah-wc-slider__empty { text-align: center; color: #888; padding: 2rem; }

/* Breadcrumbs */
.cullah-breadcrumbs {
  font-size: 0.9rem;
  color: #666;
  margin: 0.5rem 0 1rem;
}
.cullah-breadcrumbs a { color: inherit; text-decoration: none; border-bottom: 1px dotted currentColor; }
.cullah-breadcrumbs a:hover { color: #000; }
.cullah-breadcrumbs__prefix { margin-right: 0.35em; font-weight: 600; }
.cullah-breadcrumbs__sep { margin: 0 0.25em; opacity: 0.5; }
.cullah-breadcrumbs__current { color: #111; }
