.bme-article-divider {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	width: 100%;
	max-width: 760px;
	margin: 30px auto;
}

.bme-article-divider span {
	flex: 1;
	height: 1px;
	background: rgba(176,141,87,.45);
}

.bme-article-divider img {
	display: block;
	width: 42px;
	height: auto;
	flex-shrink: 0;
}

.bme-blog-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 80px 5vw;
  color: #2B2926;
}

.bme-blog-head {
  max-width: 820px;
  margin-bottom: 42px;
}

.bme-eyebrow {
  color: #B08D57;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  margin-bottom: 12px;
}

.bme-blog-head h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 1.05;
  margin: 0 0 18px;
}

.bme-blog-intro {
  font-size: 18px;
  line-height: 1.7;
  max-width: 680px;
}

.bme-blog-search {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 28px;
  flex-wrap: wrap;
}

.bme-blog-search input {
  min-width: min(420px, 100%);
  padding: 14px 18px;
  border: 1px solid rgba(43, 41, 38, .22);
  border-radius: 999px;
  background: #fff;
  color: #2B2926;
  font-size: 15px;
}

.bme-blog-search button {
  border: 1px solid #B08D57;
  background: #B08D57;
  color: #fff;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
}

.bme-blog-search button:hover {
  background: #2B2926;
  border-color: #2B2926;
}

.bme-blog-dog-filter {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.bme-blog-dog-filter input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bme-blog-dog-filter span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 16px;
    color: #2B2926;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(43, 41, 38, 0.14);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease;
}

.bme-blog-dog-filter input:checked + span {
    color: #FFF;
    background: #B08D57;
    border-color: #B08D57;
}

#bmeBlogCount {
  font-size: 14px;
  opacity: .75;
}

.bme-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.bme-blog-card {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(43, 41, 38, .1);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(43, 41, 38, .08);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: pointer;
}

.bme-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(43, 41, 38, .14);
}

.bme-blog-card:focus {
    outline: 2px solid #B08D57;
    outline-offset: 4px;
}

.bme-blog-image {
  display: block;
  aspect-ratio: 4 / 3;
  background: #2B2926;
  overflow: hidden;
}

.bme-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.bme-blog-card:hover .bme-blog-image img {
  transform: scale(1.04);
}

.bme-blog-placeholder {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #F5EFE6;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
}

.bme-blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 30px;
}

.bme-blog-card-link {
  display: flex;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.bme-blog-card-link:hover,
.bme-blog-card-link:focus {
  text-decoration: none;
  color: inherit;
}

.bme-blog-card-link:focus-visible {
  outline: 2px solid #B08D57;
  outline-offset: 6px;
  border-radius: 22px;
}

.bme-blog-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.bme-blog-meta__labels {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.bme-blog-dog-friendly {
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 5px 9px;
    color: #2B2926;
    background: rgba(176, 141, 87, 0.12);
    border: 1px solid rgba(176, 141, 87, 0.28);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    text-transform: uppercase;
}

.bme-blog-date {
    font-size: 13px;
    color: #2B2926;
}

.bme-blog-category {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(176,141,87,.12);
    border: 1px solid rgba(176,141,87,.35);
    color: #B08D57;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.bme-blog-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.bme-blog-title a {
  color: #2B2926;
  text-decoration: none;
}

.bme-blog-title a:hover {
  color: #B08D57;
}

.bme-blog-excerpt {
    line-height: 1.65;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.bme-blog-read {
  color: #2B2926;
  text-decoration: none;
  border-bottom: 1px solid #B08D57;
  padding-bottom: 3px;
}

.bme-blog-read:hover {
  color: #B08D57;
}

.bme-blog-empty {
  max-width: 780px;
  margin: 52px auto 0;
  padding: clamp(38px, 5vw, 64px) clamp(24px, 6vw, 72px);
  border-top: 1px solid rgba(176, 141, 87, .38);
  border-bottom: 1px solid rgba(176, 141, 87, .38);
  color: #2B2926;
  text-align: center;
}

.bme-blog-empty h2 {
  margin: 0 0 16px;
  color: #2B2926;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.bme-blog-empty p {
  max-width: 640px;
  margin: 0 auto;
  color: #5F5A52;
  font-size: 1rem;
  line-height: 1.75;
}

.bme-blog-empty__filtered {
  display: none;
}

.bme-blog-empty.is-filtered .bme-blog-empty__journal {
  display: none;
}

.bme-blog-empty.is-filtered .bme-blog-empty__filtered {
  display: block;
}

.bme-blog-hl {
  background: rgba(176, 141, 87, .25);
  border-radius: 3px;
}

/* Tablet */
@media (max-width: 980px) {
  .bme-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px) {
  .bme-blog-wrap {
    padding: 56px 22px;
  }

  .bme-blog-grid {
    grid-template-columns: 1fr;
  }

  .bme-blog-search {
    align-items: stretch;
  }

  .bme-blog-search input,
  .bme-blog-search button {
    width: 100%;
  }

  #bmeBlogCount {
    width: 100%;
  }

  .bme-blog-title {
    font-size: 24px;
  }
}
.bme-blog-search select {
  min-width: 220px;
  padding: 14px 18px;
  border: 1px solid rgba(43, 41, 38, .22);
  border-radius: 999px;
  background: #fff;
  color: #2B2926;
  font-size: 15px;
  cursor: pointer;
}

.bme-blog-search select:focus,
.bme-blog-search input:focus {
  outline: none;
  border-color: #B08D57;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .16);
}

@media (max-width: 640px) {
  .bme-blog-search select {
    width: 100%;
  }
}

#bmeBlogCategory {
  appearance: none;
  -webkit-appearance: none;
  min-width: 240px;
  padding: 14px 48px 14px 18px;
  border: 1px solid rgba(43, 41, 38, .22);
  border-radius: 999px;
  background-color: #fff;
  color: #2B2926;
  font-size: 15px;
  line-height: 1.2;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #2B2926 50%),
                    linear-gradient(135deg, #2B2926 50%, transparent 50%);
  background-position: calc(100% - 22px) 50%,
                       calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#bmeBlogCategory:focus {
  outline: none;
  border-color: #B08D57;
  box-shadow: 0 0 0 3px rgba(176, 141, 87, .16);
}

/* Latest Posts Styling */
.bme-latest-journal {
  max-width: 1500px;
  margin: 0 auto;
  color: #2B2926;
}

.bme-latest-journal-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.bme-latest-journal-head h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
  margin: 0 0 16px;
}

.bme-latest-journal-head p:last-child {
  font-size: 18px;
  line-height: 1.65;
}

.bme-latest-journal-cta {
  margin-top: 38px;
  text-align: center;
}

.bme-journal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  background: #B08D57;
  color: #fff;
  text-decoration: none;
  border: 1px solid #B08D57;
  transition: all .25s ease;
}

.bme-journal-button:hover {
  background: #2B2926;
  border-color: #2B2926;
  color: #fff;
}

@media (max-width: 640px) {
  .bme-latest-journal {
    padding: 56px 22px;
  }
}
/* END LATEST POSTS STYLING */
