.locke-obit {
  --obit-max-width: 860px;
  --obit-accent: var(--nectar-accent-color, #c8a96e);
  --obit-bg: #F4F2EC;
  background-color: var(--obit-bg);
}
.locke-obit__hero {
  padding: 3.5rem 1.5rem 3rem;
  background-color: var(--obit-bg);
}
.locke-obit__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  max-width: var(--obit-max-width);
  margin: 0 auto;
  background: #EAE6D9;
  padding: 35px;
  border-radius: 10px;
}
.locke-obit__photo {
  position: relative;
  flex-shrink: 0;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #ccc5bc;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  margin-bottom: 0.5rem;
}
.locke-obit__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.locke-obit__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ccc5bc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2c-3.33 0-10 1.67-10 5v2h20v-2c0-3.33-6.67-5-10-5z'/%3E%3C/svg%3E") center 35%/55% no-repeat;
}
.locke-obit__name {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin: 0;
}
.locke-obit__dates {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #777;
  margin: 0;
  letter-spacing: 0.02em;
}
.locke-obit__dates-sep {
  color: #aaa;
}
.locke-obit__actions {
  display: flex;
  gap: 0.875rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.75rem;
}
.locke-obit__btn {
  display: inline-block;
  padding: 0.6rem 1.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.4;
  transition: opacity 0.2s ease, background 0.2s ease;
  cursor: pointer;
}
.locke-obit__btn--primary {
  background: var(--obit-accent);
  color: #fff;
  border: 2px solid transparent;
}
.locke-obit__btn--primary:hover {
  opacity: 0.88;
  color: #fff;
}
.locke-obit__btn--outline {
  background: transparent;
  border: 2px solid rgba(0, 0, 0, 0.22);
  color: #333;
}
.locke-obit__btn--outline:hover {
  background: rgba(0, 0, 0, 0.05);
  color: #333;
}
.locke-obit__content {
  padding: 3.5rem 1.5rem;
}
.locke-obit__content-inner {
  max-width: var(--obit-max-width);
  margin: 0 auto;
}
.locke-obit__content-inner p {
  font-size: 1.05rem;
  line-height: 1.8;
}
.locke-obit__content-inner p:last-child {
  margin-bottom: 0;
}
.locke-obit__events {
  padding: 0 1.5rem 4rem;
}
.locke-obit__events-inner {
  max-width: var(--obit-max-width);
  margin: 0 auto;
}
.locke-obit__event-list {
  display: flex;
  background: #fff;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (max-width: 600px) {
  .locke-obit__event-list {
    flex-direction: column;
  }
}
.locke-obit__event {
  flex: 1;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.locke-obit__event p {
  padding-bottom: 0;
}
.locke-obit__event + .locke-obit__event {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 600px) {
  .locke-obit__event + .locke-obit__event {
    border-left: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }
}
@media (max-width: 600px) {
  .locke-obit__event {
    padding: 1.25rem 1.5rem;
  }
}
.locke-obit__event-label {
  font-size: 0.78rem;
  color: #999;
  margin: 0 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.locke-obit__event-date {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  line-height: 1.2;
}
.locke-obit__event-time {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}
.locke-obit__event-location {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  font-size: 0.9rem;
  margin-top: 0.5rem;
}
.locke-obit__event-location strong {
  color: #1a1a1a;
  font-weight: 700;
}
.locke-obit__event-location span {
  color: #777;
}
.locke-obit__event-livestream {
  margin-top: 1rem;
}
.locke-obit__event-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.locke-obit__event-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.locke-obit__event-livestream-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: underline;
}
.locke-obit__condolences {
  padding: 3.5rem 1.5rem 4rem;
  background: white;
}
.locke-obit__condolences-inner {
  max-width: var(--obit-max-width);
  margin: 0 auto;
}
.locke-obit__condolences-heading {
  font-size: 1.5rem;
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.locke-obit__comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.locke-obit__comment-list .comment {
  list-style: none;
  padding: 1.25rem 1.5rem;
  background: var(--obit-bg);
  border-radius: 0 8px 8px 0;
  border-left: 3px solid var(--obit-accent);
}
.locke-obit__comment-list .comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
}
.locke-obit__comment-list .comment-author img {
  border-radius: 50%;
}
.locke-obit__comment-list .fn {
  font-weight: 600;
  font-size: 0.95rem;
  font-style: normal;
}
.locke-obit__comment-list .comment-metadata {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 0.5rem;
}
.locke-obit__comment-list .comment-metadata a {
  color: inherit;
  text-decoration: none;
}
.locke-obit__comment-list .comment-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.locke-comment-form h3 {
  font-size: 1.25rem;
  margin: 0 0 1.25rem;
}
.locke-comment-form .comment-form p {
  margin-bottom: 1rem;
}
.locke-comment-form .comment-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.locke-comment-form .comment-form input[type=text],
.locke-comment-form .comment-form input[type=email],
.locke-comment-form .comment-form input[type=url],
.locke-comment-form .comment-form textarea {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1px solid #d0c9c0;
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.5;
  background: #fff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.locke-comment-form .comment-form input[type=text]:focus,
.locke-comment-form .comment-form input[type=email]:focus,
.locke-comment-form .comment-form input[type=url]:focus,
.locke-comment-form .comment-form textarea:focus {
  border-color: var(--nectar-accent-color, #c8a96e);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}
.locke-comment-form .comment-form textarea {
  resize: vertical;
  min-height: 140px;
}

.woocommerce div.product form.cart .button {
  float: none;
}

.locke-case-selection {
  margin-bottom: 20px;
}
.locke-case-selection label {
  display: block;
  font-size: 14px;
  line-height: 1;
  padding-bottom: 6px;
}
.locke-case-selection label abbr.required {
  color: #e2401c;
  text-decoration: none;
  border: none;
}
.locke-case-selection .select2-container {
  width: 100% !important;
}
.locke-case-selection .select2-container--default .select2-selection--single {
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.locke-case-selection .select2-container--default .select2-selection--single .select2-selection__rendered {
  font-size: 14px;
  color: inherit;
  padding: 0;
  line-height: normal;
}
.locke-case-selection .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 38px;
  right: 6px;
}
.locke-case-selection .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #767676;
}
.locke-case-selection .select2-container--default.select2-container--open .select2-selection--single {
  border-color: #aaa;
}

.yith-ywraq-add-to-quote a {
  font-size: 16px !important;
  font-weight: inherit !important;
  margin: 0 auto;
  text-align: center;
  padding: 20px 45px !important;
}

.locke-obituary-grid__search {
  margin-bottom: 2rem;
}
.locke-obituary-grid__search-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.locke-obituary-grid__search-field {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}
.locke-obituary-grid__search-submit {
  flex: 0 0 auto;
  white-space: nowrap;
  margin-bottom: 0;
}
.locke-obituary-grid__search-submit .locke-obituary-grid__spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.locke-obituary-grid__search-submit.is-loading .locke-obituary-grid__spinner {
  display: inline-block;
  animation: locke-spin 0.6s linear infinite;
}
.locke-obituary-grid__search-icon {
  position: absolute;
  left: 1rem;
  width: 18px;
  height: 18px;
  color: #888;
  pointer-events: none;
  flex-shrink: 0;
}
.locke-obituary-grid__search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 2.75rem !important;
  border: 1px solid #d0c9c0;
  border-radius: 4px;
  background: #fff;
  font-size: 1rem;
  line-height: 1.5;
  color: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.locke-obituary-grid__search-input:focus {
  border-color: var(--nectar-accent-color, #c8a96e);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}
.locke-obituary-grid__search-input::-webkit-search-cancel-button {
  display: none;
}
.locke-obituary-grid__search-clear {
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  color: #888;
  transition: color 0.2s ease;
}
.locke-obituary-grid__search-clear:hover {
  color: #333;
}
.locke-obituary-grid__search-clear svg {
  width: 16px;
  height: 16px;
}
.locke-obituary-grid__search-clear[hidden] {
  display: none;
}
.locke-obituary-grid__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .locke-obituary-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .locke-obituary-grid__items {
    grid-template-columns: 1fr;
  }
}
.locke-obituary-grid__footer {
  text-align: center;
  margin-top: 2.5rem;
}
.locke-obituary-grid__load-more {
  min-width: 160px;
}
.locke-obituary-grid__load-more .locke-obituary-grid__spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.locke-obituary-grid__load-more.is-loading .locke-obituary-grid__spinner {
  display: inline-block;
  animation: locke-spin 0.6s linear infinite;
}
@keyframes locke-spin {
  to {
    transform: rotate(360deg);
  }
}

.locke-obituary-card {
  display: flex;
  flex-direction: column;
}
.locke-obituary-card__photo {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  background-color: #ccc5bc;
}
.locke-obituary-card__photo img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s ease;
}
.locke-obituary-card__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ccc5bc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2c-3.33 0-10 1.67-10 5v2h20v-2c0-3.33-6.67-5-10-5z'/%3E%3C/svg%3E") center 40%/40% no-repeat;
}
.locke-obituary-card:hover .locke-obituary-card__photo img {
  transform: scale(1.03);
}
.locke-obituary-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background-color: #F4F2EC;
  border-radius: 0 0 8px 8px;
  flex: 1;
}
.locke-obituary-card__name {
  font-size: 32px !important;
  line-height: 34.56px !important;
  margin: 0;
}
.locke-obituary-card__name a {
  color: inherit;
  text-decoration: none;
}
.locke-obituary-card__name a:hover {
  opacity: 0.75;
}
.locke-obituary-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin: 0;
  flex: 1;
}

.locke-services-list__rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.locke-services-list__empty {
  text-align: center;
  color: #888;
  padding: 2rem 0;
}
.locke-services-list__footer {
  text-align: center;
  margin-top: 1.75rem;
}
.locke-services-list__footer[hidden] {
  display: none;
}
.locke-services-list__load-more .locke-services-list__spinner {
  display: none;
  width: 13px;
  height: 13px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  vertical-align: middle;
  margin-left: 0.5rem;
}
.locke-services-list__load-more.is-loading .locke-services-list__spinner {
  display: inline-block;
  animation: services-spin 0.6s linear infinite;
}
@keyframes services-spin {
  to {
    transform: rotate(360deg);
  }
}

.locke-service-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.875rem 1.25rem;
  background-color: #F4F2EC;
  border-radius: 8px;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.locke-service-row:hover {
  border-color: var(--nectar-accent-color, #c8a96e);
}
.locke-service-row__photo {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  overflow: hidden;
  background-color: #ccc5bc;
}
.locke-service-row__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.locke-service-row__photo--placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #ccc5bc url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fff'%3E%3Cpath d='M12 12c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm0 2c-3.33 0-10 1.67-10 5v2h20v-2c0-3.33-6.67-5-10-5z'/%3E%3C/svg%3E") center 35%/60% no-repeat;
}
.locke-service-row__info {
  flex: 1;
  min-width: 0;
}
.locke-service-row__name {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0;
}
.locke-service-row__event-name {
  font-size: 1.85rem;
  color: #777;
  margin-left: 0.5rem;
}
.locke-service-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  text-align: center;
  min-width: 80px;
  font-size: 28px;
  line-height: 38px;
  font-weight: 400;
}
.locke-service-row__date-day {
  white-space: nowrap;
}
.locke-service-row__date-year {
  white-space: nowrap;
}
.locke-service-row .nectar-cta {
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .locke-service-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .locke-service-row__info {
    font-size: 1.1rem;
    flex-basis: calc(100% - 56px - 1.25rem);
  }
  .locke-service-row__date {
    margin-left: calc(56px + 1.25rem);
  }
  .locke-service-row .nectar-cta {
    margin-left: auto;
  }
}

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