/* Plugin UI isolation */
.sf-sermones-ui,
.sf-sermones-ui * {
    box-sizing: border-box;
}

.sermo-plugin * {
    hyphens: none;
    -webkit-hyphens: none;
    word-break: normal;
}

.sf-sermones-ui a,
.sf-sermones-ui button,
.sf-sermones-ui input,
.sf-sermones-ui textarea,
.sf-sermones-ui select {
    font: inherit;
}

.sf-series-shell,
.sf-preacher-archive__shell,
.sf-sermon-page__shell,
.sf-series-index__shell,
.sf-sermons-shortcode__shell,
.sermo-plugin {
    --sf-accent: #2563EB;
    --sf-accent-rgb: 37, 99, 235;
    --sf-accent-soft: #93C5FD;
    --sf-accent-border: #BFDBFE;
    --sf-accent-bg: #EFF6FF;
    --sf-accent-hover-bg: #F8FBFF;
    --sf-accent-dark: #1A3A6B;
    max-width: 896px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

/* Heading system */
.sf-sermones-ui h1.sermo-h1,
.sf-sermones-ui .sermo-h1 {
    font-size: 31px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 0 0 10px;
}

.sf-sermones-ui h2.sermo-h2,
.sf-sermones-ui .sermo-h2 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 10px;
}

.sf-sermones-ui h3.sermo-h3,
.sf-sermones-ui .sermo-h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 10px;
}

.sf-sermones-ui h4.sermo-h4,
.sf-sermones-ui .sermo-h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 10px;
}

.sf-sermones-ui h5.sermo-h5,
.sf-sermones-ui .sermo-h5 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
}

.sf-sermones-ui h6.sermo-h6,
.sf-sermones-ui .sermo-h6 {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 10px;
}

/* Sermon metadata */
.sf-sermones-ui .sermo-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.sf-sermones-ui .sermo-meta-sep {
    color: #d4d4d8;
    font-size: 12px;
}

.sf-sermones-ui .sermo-meta-passage {
    font-size: 13px;
    font-weight: 500;
    color: #52525b;
    letter-spacing: 0.01em;
}

.sf-sermones-ui a.sermo-meta-series,
.sf-sermones-ui .sermo-meta-series {
    font-size: 13px;
    font-weight: 400;
    color: #52525b;
    text-decoration: none;
}

.sf-sermones-ui a.sermo-meta-series:hover {
    color: var(--sf-accent);
}

.sf-sermones-ui a.sermo-meta-preacher,
.sf-sermones-ui .sermo-meta-preacher {
    font-size: 13px;
    font-weight: 400;
    color: #52525b;
    text-decoration: none;
}

.sf-sermones-ui a.sermo-meta-preacher:hover {
    color: var(--sf-accent);
}

.sf-sermones-ui .sermo-meta-date {
    font-size: 13px;
    font-weight: 400;
    color: #71717a;
}

.sf-sermones-ui .sermo-meta-topic {
    font-size: 13px;
    font-weight: 400;
    color: #999;
}

.sf-sermones-ui .sermo-meta.compact .sermo-meta-passage,
.sf-sermones-ui .sermo-meta.compact .sermo-meta-sep,
.sf-sermones-ui .sermo-meta.compact .sermo-meta-series,
.sf-sermones-ui .sermo-meta.compact .sermo-meta-preacher,
.sf-sermones-ui .sermo-meta.compact .sermo-meta-date,
.sf-sermones-ui .sermo-meta.compact .sermo-meta-topic {
    font-size: 12px;
}

.sf-sermons-shortcode {
    padding: 0 1rem;
}

.sf-sermons-shortcode__header {
    margin-bottom: 1rem;
}

.sf-sermons-shortcode__header > .sermo-h2 {
    margin: 0;
    color: #111;
}

.sf-sermons-shortcode__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.sf-sermons-shortcode__card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 1.25rem 1.4rem;
    transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.sf-sermons-shortcode__card:hover {
    border-color: var(--sf-accent-border);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(var(--sf-accent-rgb), 0.15);
}

.sf-sermons-shortcode__card-title {
    margin: 0 0 0.55rem;
}

.sf-sermons-shortcode__card > .sermo-h3 {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.5;
}

.sf-sermons-shortcode__card-link {
    color: var(--sf-text-primary);
    text-decoration: none;
}

.sf-sermons-shortcode__card-link:hover {
    color: var(--sf-accent);
    text-decoration: none;
}

.sf-sermons-shortcode__meta {
    gap: 5px 7px;
}

.sf-sermons-shortcode__meta .sermo-meta-passage,
.sf-sermons-shortcode__meta .sermo-meta-series,
.sf-sermons-shortcode__meta .sermo-meta-preacher,
.sf-sermons-shortcode__meta .sermo-meta-date,
.sf-sermons-shortcode__meta .sermo-meta-sep {
    font-size: 14px;
}

@media (max-width: 900px) {
    .sf-sermons-shortcode__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .sf-sermons-shortcode__grid {
        grid-template-columns: 1fr;
    }
}





/* 
Estilos de subir imagen a una serie
*/

.subir-imagen-serie input {
    width: 100%;
    margin-bottom: 10px;
}

.subir-imagen-serie p {
    margin-top: 10px;
}

.subir-imagen-serie img.image-preview {
    width: 100%;
    margin-top: 20px;
}

.sf-preacher-archive {
    padding: 40px 20px 56px;
    background: transparent;
}

.sf-sermones-ui .sermo-pred-hero {
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    margin-bottom: 1.5rem;
}

.sf-sermones-ui .sermo-pred-hero-top {
    background: var(--sf-accent-hover-bg);
    border-bottom: 1px solid #f0f0f0;
    padding: 1.75rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.sf-sermones-ui .sermo-pred-hero-top--compact {
    gap: 0;
}

.sf-sermones-ui .sermo-pred-hero-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--sf-accent-border);
    background: var(--sf-accent-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-sermones-ui .sermo-pred-hero-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-sermones-ui .sermo-pred-hero-initials {
    font-size: 20px;
    font-weight: 600;
    color: var(--sf-accent);
}

.sf-sermones-ui .sermo-pred-hero-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.sf-sermones-ui .sermo-pred-hero-eyebrow {
    font-size: 11px;
    font-weight: 600;
    color: var(--sf-accent-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.sf-sermones-ui .sermo-pred-hero-name {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin: 0;
}

.sf-sermones-ui .sermo-pred-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sf-sermones-ui .sermo-pred-hero-role {
    font-size: 13px;
    font-weight: 400;
    color: #777;
}

.sf-sermones-ui .sermo-pred-hero-sep {
    font-size: 13px;
    color: #e2e8f0;
}

.sf-sermones-ui .sermo-pred-hero-count {
    font-size: 12px;
    font-weight: 400;
    color: var(--sf-accent);
    background-color: var(--sf-accent-bg);
    border-radius: 100px;
    padding: 3px 10px;
    line-height: 1.4;
}

.sf-sermones-ui .sermo-pred-hero-bio {
    padding: 1.1rem 1.75rem;
    font-size: 14px;
    color: #777;
    line-height: 1.65;
}

.sf-sermones-ui .sermo-pred-hero-bio:empty {
    display: none;
}

.sf-preacher-archive__listing {
    margin-top: 0;
}

.sf-series-page__search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 0 16px;
}

.sf-series-page__search input[type="search"] {
    flex: 1 1 260px;
    min-width: 220px;
    height: 40px;
    padding: 0 14px;
    border: 1px solid #d6dbe3;
    border-radius: 10px;
    background: #ffffff;
    color: #111111;
}

.sf-series-page__search input[type="search"]::placeholder {
    color: #9aa3af;
}

.sf-series-page__search input[type="search"]:focus {
    outline: none;
    border-color: var(--sf-accent-border);
    box-shadow: 0 0 0 3px rgba(var(--sf-accent-rgb), 0.08);
}

.sf-preacher-archive__listing-header {
    margin-bottom: 14px;
}

.sf-preacher-archive__listing-header > .sermo-h2 {
    margin: 0;
    color: #18293f;
}

@media (max-width: 480px) {
    .sf-sermones-ui .sermo-pred-hero-top {
        padding: 1.25rem;
        gap: 1rem;
    }

    .sf-sermones-ui .sermo-pred-hero-avatar {
        width: 60px;
        height: 60px;
    }

    .sf-sermones-ui .sermo-pred-hero-initials {
        font-size: 18px;
    }

    .sf-sermones-ui .sermo-pred-hero-name {
        font-size: 20px;
    }

    .sf-sermones-ui .sermo-pred-hero-bio {
        padding: 1rem 1.25rem;
    }
}

.sf-preacher-sermons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    counter-reset: sf-preacher-card;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(74, 144, 226, 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
}

.sf-preacher-sermons__item {
    counter-increment: sf-preacher-card;
    border-top: 1px solid rgba(74, 144, 226, 0.08);
}

.sf-preacher-sermons__item:first-child {
    border-top: 0;
}

.sf-preacher-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px 24px;
    background: transparent;
    position: relative;
    z-index: 0;
    transition: background 180ms ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.sf-preacher-card:hover {
    background: rgba(var(--sf-accent-rgb), 0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(var(--sf-accent-rgb), 0.15);
    z-index: 1;
}

.sf-preacher-card__body {
    min-width: 0;
}

.sf-preacher-card::before {
    content: counter(sf-preacher-card, decimal-leading-zero);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #99a8b9;
    font-size: 0.76rem;
    font-weight: 600;
    min-height: 42px;
    padding-right: 12px;
    border-right: 1px solid #e6ebf2;
}

.sf-preacher-card__title {
    margin: 0;
}

.sf-preacher-card__link {
    color: var(--sf-text-primary);
    font-weight: 400;
    text-decoration: none;
}

.sf-preacher-card__link:hover {
    color: var(--sf-accent);
    text-decoration: none;
}

.sf-preacher-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 10px;
    margin: 10px 0 0;
    color: var(--sf-text-inactive);
    font-size: 0.8rem;
}

.sf-preacher-sermons__empty {
    padding: 16px 18px;
    background: #ffffff;
    color: var(--sf-text-secondary);
}

.sf-preacher-archive__load-more {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.sf-series-archive__load-more {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.sf-preacher-archive__load-more-button:disabled,
.sf-series-archive__load-more-button:disabled {
    opacity: 0.72;
    cursor: wait;
}

@media only screen and (max-width: 640px) {
    .sf-preacher-archive {
        padding: 28px 16px 40px;
    }

    .sf-sermones-ui .sermo-pred-header {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .sf-sermones-ui .sermo-pred-avatar {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .sf-sermones-ui .sermo-pred-name {
        font-size: 22px;
    }

    .sf-preacher-card {
        grid-template-columns: auto 1fr;
        gap: 8px;
        align-items: flex-start;
    }

    .sf-preacher-card::before {
        min-height: 36px;
        padding-right: 10px;
    }

    .sf-preacher-card__body {
        grid-column: 2;
    }

    .sf-preacher-card__cta {
        grid-column: 2;
        width: 100%;
    }
}

.sf-series-archive {
    padding: 0px 20px 50px;
    background: transparent;
}

.sermo-series-hero-banner {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    width: 100vw;
}

.sermo-series-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sermo-series-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: blur(24px) brightness(0.7) saturate(1.2);
    transform: scale(1.1);
}

.sermo-series-hero-bg--fallback {
    background: var(--sf-accent-dark);
}

.sermo-series-hero-img-wrap {
    position: relative;
    z-index: 1;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.sermo-series-hero-img-wrap img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.sermo-series-body {
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.sermo-series-eyebrow {
    font-size: 10px;
    font-weight: 600;
    color: var(--sf-accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 0.4rem;
    display: block;
    line-height: 1.4;
}

.sermo-series-title {
    font-size: 22px;
    font-weight: 600;
    color: #111;
    line-height: 1.2;
    margin-bottom: 0.6rem;
}

.sermo-series-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 0.85rem;
}

.sermo-series-desc:empty {
    display: none;
}

.sermo-series-desc > *:first-child {
    margin-top: 0;
}

.sermo-series-desc > *:last-child {
    margin-bottom: 0;
}

.sermo-series-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.sermo-series-count {
    background-color: var(--sf-accent-bg);
    color: var(--sf-accent);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 400;
}

.sermo-series-year {
    font-size: 12px;
    color: #bbb;
}

.sf-series-page__list-section > .sermo-h2 {
    margin: 0 0 0.75rem;
    color: #111;
}

.sf-sermones-ui .sermo-sl-list {
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
}

.sermo-plugin .sermo-sl-list,
.sermo-plugin .list {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.sermo-plugin .sermo-sl-item {
  padding: 1.25rem 1.4rem;
  gap: 1rem;
}

.sermo-plugin .sermo-sl-title {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.sermo-plugin .sermo-sl-num {
  font-size: 13px;
  padding: 0 0.95rem 0 0;
  margin-top: 0;
}

.sermo-plugin .m-passage,
.sermo-plugin .sermo-sl-passage {
  font-size: 14px;
  font-weight: 500;
}

.sermo-plugin .m-link,
.sermo-plugin .sermo-sl-preacher {
  font-size: 14px;
  font-weight: 500;
}

.sermo-plugin .m-date,
.sermo-plugin .sermo-sl-date {
  font-size: 14px;
}

.sermo-plugin .m-sep,
.sermo-plugin .sermo-sl-sep {
  font-size: 14px;
}

.sermo-plugin .sermo-sl-cta svg {
  width: 18px;
  height: 18px;
}

.sf-sermones-ui .sermo-sl-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  transition: background-color 0.15s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.sermo-plugin .sermo-sl-item {
  border-bottom: 1px solid #e2e8f0;
}

.sf-sermones-ui .sermo-sl-item:last-child {
  border-bottom: none;
}

.sf-sermones-ui .sermo-sl-item:hover {
  background-color: var(--sf-accent-hover-bg);
  box-shadow: inset 3px 0 0 var(--sf-accent);
}

.sf-sermones-ui .sermo-sl-num {
  display: inline-flex;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: stretch;
  align-items: center;
  margin-top: 0;
  font-size: 13px;
  font-weight: 400;
  color: #bbb;
  background: none;
  border-radius: 0;
  padding: 0;
  white-space: nowrap;
  line-height: 1.4;
  position: relative;
  min-width: 24px;
}

.sf-sermones-ui .sermo-sl-num::after {
  content: "";
  position: absolute;
  top: 0.9rem;
  bottom: 0.9rem;
  right: 0;
  width: 1px;
  background: #e8eef8;
}

.sf-sermones-ui .sermo-sl-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 0%;
  min-width: 0;
  gap: 4px;
}

.sf-sermones-ui .sermo-sl-title-link {
  text-decoration: none;
  display: block;
}

.sf-sermones-ui .sermo-sl-title {
  display: block;
  font-size: 17px;
  font-weight: 400;
  color: #111;
  white-space: normal;
  overflow: hidden;
  text-overflow: initial;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
  line-height: 1.5;
  transition: color 0.15s ease;
}

.sf-sermones-ui .sermo-sl-title:hover {
  color: #111;
  text-decoration: none;
}

.sf-sermones-ui .sermo-sl-meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  line-height: 1.4;
}

.sf-sermones-ui .sermo-sl-passage {
  font-size: 14px;
  font-weight: 400;
  color: #555;
}

.sf-sermones-ui .sermo-sl-sep {
  font-size: 14px;
  color: #e2e8f0;
  flex-shrink: 0;
}

.sf-sermones-ui .sermo-sl-preacher {
  font-size: 14px;
  font-weight: 400;
  color: var(--sf-accent);
  text-decoration: none;
}

.sf-sermones-ui .sermo-sl-preacher:hover {
  text-decoration: underline;
}

.sf-sermones-ui .sermo-sl-date {
  font-size: 14px;
  font-weight: 400;
  color: #bbb;
}

.sf-sermones-ui .sermo-sl-cta {
  font-size: 14px;
  font-weight: 400;
  color: var(--sf-accent);
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: flex-start;
  margin-top: 3px;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.15s ease;
}

.sf-sermones-ui .sermo-sl-cta:hover {
  color: var(--sf-accent);
  text-decoration: none;
}

.sf-sermones-ui .sermo-sl-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.sf-sermones-ui .sermo-sl-item:hover .sermo-sl-arrow {
  transform: translateX(3px);
}

.sf-sermones-ui .sermo-sl-item:hover .sermo-sl-title {
  color: #19283b;
}

.sf-sermones-ui .sermo-sl-item:hover .sermo-sl-cta {
  color: var(--sf-accent);
}

@media (hover: none) {
  .sf-sermones-ui .sermo-sl-item:hover {
    background-color: transparent;
    box-shadow: none;
  }

  .sf-sermones-ui .sermo-sl-item:active {
    background-color: var(--sf-accent-hover-bg);
  }
}

.sf-series-page__empty {
    padding: 16px 18px;
    color: #6b7280;
}

.sf-series-page__empty p {
    margin: 0;
}

.sf-series-hero {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 18px 0 24px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(var(--sf-accent-rgb), 0.12);
    border-radius: 0;
    box-shadow: none;
}

.sf-series-hero__media {
    min-width: 0;
}

.sf-series-hero__image {
    min-height: 220px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(40, 72, 110, 0.05);
}

.sf-series-hero__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.12) 48%, rgba(255, 255, 255, 0.5) 100%);
}

.sf-series-hero__image--placeholder {
    background: linear-gradient(160deg, rgba(var(--sf-accent-rgb), 0.14) 0%, rgba(var(--sf-accent-rgb), 0.22) 48%, var(--sf-accent-hover-bg) 100%);
}

.sf-series-hero__content {
    text-align: left;
}

.sf-series-hero__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--sf-accent-soft);
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 600;
}

.sf-series-hero__title {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    line-height: 1.02;
    color: #13263f;
    font-weight: 650;
}

.sf-series-hero__description {
    max-width: 58ch;
    color: #6f7e90;
    font-size: 16px;
    line-height: 1.7;
}

.sf-series-hero__description p:last-child {
    margin-bottom: 0;
}

.sf-series-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.sf-series-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 10px;
    border-radius: 7px;
    background: var(--sf-accent-bg);
    border: 1px solid var(--sf-accent-border);
    color: var(--sf-accent);
    font-size: 0.86rem;
    font-weight: 400;
    box-shadow: none;
}

.sf-series-listing {
    margin-top: 24px;
}

.sf-series-listing__header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 16px;
    margin-bottom: 12px;
}

.sf-series-listing__header h2 {
    margin: 0;
    color: var(--sf-text-primary);
}

.sf-series-sermons {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    counter-reset: sf-series-card;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(var(--sf-accent-rgb), 0.12);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: none;
}

.sf-series-sermons__item {
    counter-increment: sf-series-card;
    margin-top: 0;
    border-top: 1px solid rgba(var(--sf-accent-rgb), 0.08);
}

.sf-series-sermons__item:first-child {
    border-top: 0;
}

.sf-series-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    padding: 18px 22px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    z-index: 0;
    transition: background 180ms ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.sf-series-card:hover {
    background: rgba(var(--sf-accent-rgb), 0.05);
    border-color: transparent;
    box-shadow: 0 4px 20px rgba(var(--sf-accent-rgb), 0.15);
    transform: translateY(-1px);
    z-index: 1;
}

.sf-series-card__index {
    color: #99a8b9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.76rem;
    font-weight: 600;
    min-height: 42px;
    padding-right: 12px;
    border-right: 1px solid #e6ebf2;
}

.sf-series-card__index::before {
    content: counter(sf-series-card, decimal-leading-zero);
}

.sf-series-card__body {
    min-width: 0;
}

.sf-series-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin: 10px 0 0;
    color: #8391a0;
    font-size: 0.8rem;
}

.sf-series-card__title {
    margin: 0;
}

.sf-series-card__link {
    color: var(--sf-text-primary);
    font-weight: 400;
    text-decoration: none;
}

.sf-series-card__link:hover {
    color: var(--sf-accent);
    text-decoration: none;
}

.sf-series-sermons__empty {
    padding: 16px 18px;
    background: #ffffff;
    color: var(--sf-text-secondary);
}

@media only screen and (max-width: 860px) {
    .sf-series-archive {
        padding: 28px 16px 40px;
    }

    .sf-series-hero {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0 0 18px;
    }

    .sf-series-hero__image {
        min-height: 200px;
    }

    .sf-series-card {
        grid-template-columns: auto minmax(0, 1fr) auto;
    }

    .sf-series-card__cta {
        grid-column: auto;
        padding-left: 0;
        padding-top: 0;
        align-self: center;
    }
}

@media only screen and (max-width: 600px) {
    .sf-series-hero__title {
        font-size: 1.9rem;
    }

    .sf-series-card {
        gap: 10px;
        padding: 14px 16px;
        align-items: start;
    }

    .sf-series-card__index {
        font-size: 0.68rem;
        min-height: 36px;
        padding-right: 10px;
    }

    .sf-series-card__body {
        display: flex;
        flex-direction: column;
    }

    .sf-series-card__meta {
        gap: 5px 7px;
        margin-top: 8px;
    }

    .sf-series-card__cta {
        padding-top: 2px;
    }

}

@media (max-width: 640px) {
    .sermo-series-hero-banner {
        height: 260px;
    }

    .sermo-series-hero-img-wrap {
        height: 220px;
        padding: 0 1.25rem;
    }

    .sermo-series-body {
        padding-top: 1.1rem;
        margin-bottom: 1.5rem;
    }

    .sermo-series-title {
        font-size: 20px;
    }

    .sermo-plugin .sermo-section-label {
        font-size: 15px;
        font-weight: 600;
        color: #111;
        margin-bottom: 0.75rem;
    }

    .sermo-plugin .sermo-sl-passage,
    .sermo-plugin .sermo-sl-preacher,
    .sermo-plugin .sermo-sl-date,
    .sermo-plugin .sermo-sl-sep,
    .sermo-plugin .m-passage,
    .sermo-plugin .m-link,
    .sermo-plugin .m-date,
    .sermo-plugin .m-sep {
        font-size: 12px;
    }
}

@media (max-width: 400px) {
  .sf-sermones-ui .sermo-sl-date {
    display: none;
  }

  .sf-sermones-ui .sermo-sl-sep:last-of-type {
    display: none;
  }
}

@media (max-width: 480px) {
  .sf-sermones-ui .sermo-sl-cta-text {
    display: none;
  }
}

.post_title_area p {
    font-size: 1.2em;
}

p.fecha-sermon {
    text-transform: capitalize;
}

ul.predicadores-listado li a {
    font-size: 1.1em;
    color: #051c38;
    font-weight: 600;
}

ul.predicadores-listado li {
    padding: 3px;
}

.sf-sermon-page {
    --sf-accent-fill: var(--sf-accent-bg);
    --sf-accent-light: var(--sf-accent-soft);
    --sf-progress-bg: var(--sf-accent-hover-bg);
    --sf-border-default: #e8e8e8;
    --sf-border-light: #f0f0f0;
    --sf-text-primary: #18181b;
    --sf-text-secondary: #374151;
    --sf-text-muted: #777;
    --sf-text-faint: #aaa;
    --sf-text-inactive: #999;
    padding: 48px 16px 64px;
    color: var(--sf-text-primary);
}

body.single-sermones .breadcrumb,
body.single-sermones .breadcrumbs,
body.single-sermones .yoast-breadcrumb,
body.single-sermones .rank-math-breadcrumb,
body.single-sermones nav[aria-label="breadcrumb"],
body.tax-series .breadcrumb,
body.tax-series .breadcrumbs,
body.tax-series .yoast-breadcrumb,
body.tax-series .rank-math-breadcrumb,
body.tax-series nav[aria-label="breadcrumb"],
body.tax-predicadores .breadcrumb,
body.tax-predicadores .breadcrumbs,
body.tax-predicadores .yoast-breadcrumb,
body.tax-predicadores .rank-math-breadcrumb,
body.tax-predicadores nav[aria-label="breadcrumb"],
body.page.page-slug-series .breadcrumb,
body.page.page-slug-series .breadcrumbs,
body.page.page-slug-series .yoast-breadcrumb,
body.page.page-slug-series .rank-math-breadcrumb,
body.page.page-slug-series nav[aria-label="breadcrumb"],
body.post-type-sermones .breadcrumb,
body.post-type-sermones .breadcrumbs,
body.post-type-sermones .yoast-breadcrumb,
body.post-type-sermones .rank-math-breadcrumb,
body.post-type-sermones nav[aria-label="breadcrumb"] {
    display: none !important;
}

.sf-sermon-page__header > .sermo-h1 {
    margin: 0 0 0.75rem;
    color: var(--sf-text-primary);
}

.sf-sermon-page__meta-line {
    margin-bottom: 2rem;
    line-height: 1.45;
}

.sf-sermon-page__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: -0.25rem;
    margin-bottom: 1rem;
}

.sf-sermon-page__topic {
    color: var(--sf-text-muted);
    font-size: 12px;
    text-decoration: none;
}

.sf-sermon-page__topic:hover {
    color: var(--sf-accent);
}

.sf-sermon-page__video-wrap {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.sf-sermon-page__video,
.sf-sermon-page__video-frame {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    background: #000;
}

.sf-sermon-page__audio-hero {
    margin-bottom: 1.5rem;
    padding: 1.25rem 1.25rem 1rem;
    background: var(--sf-accent-hover-bg);
    border: 1px solid var(--sf-accent-border);
    border-radius: 12px;
}

.sf-sermon-page__audio-hero-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.sf-sermon-page__audio-hero-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sf-sermon-page__audio-hero-copy strong,
.sf-sermon-page__audio-hero-copy small {
    display: block;
}

.sf-sermon-page__audio-hero-copy strong {
    font-size: 15px;
    font-weight: 600;
    color: #111;
}

.sf-sermon-page__audio-hero-copy small {
    margin-top: 2px;
    font-size: 12px;
    color: #777;
}

.sf-sermon-page__series-progress {
    margin-bottom: 1.5rem;
    padding: 0.85rem 1rem;
    background: var(--sf-progress-bg);
    border: 1px solid var(--sf-accent-border);
    border-radius: 10px;
}

.sf-sermon-page__series-progress-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sf-sermon-page__series-progress-copy {
    margin: 0;
    font-size: 13px;
    color: var(--sf-text-secondary);
}

.sf-sermon-page__series-progress-copy a {
    color: var(--sf-accent);
    text-decoration: none;
}

.sf-sermon-page__series-progress-link {
    flex-shrink: 0;
    white-space: nowrap;
}

.sf-sermon-page__progress-bar {
    height: 1.5px;
    margin-top: 0.85rem;
    background: rgba(var(--sf-accent-rgb), 0.14);
}

.sf-sermon-page__progress-fill {
    height: 100%;
    background: var(--sf-accent-light);
}

.sf-sermon-page__divider {
    height: 0.5px;
    margin: 1.5rem 0;
    background: var(--sf-border-light);
}

.sf-sermon-page__section > .sermo-h4 {
    margin: 0 0 0.75rem;
    color: var(--sf-text-primary);
}

.sf-sermon-page__panel {
    border: 1px solid var(--sf-border-default);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.sf-sermon-page__resource-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0.95rem 1rem;
    border-top: 1px solid var(--sf-border-light);
}

.sf-sermon-page__resource-row:first-child {
    border-top: 0;
}

.sf-sermon-page__resource-main {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.sf-sermon-page__resource-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    color: var(--sf-accent);
    background: var(--sf-accent-fill);
    border-radius: 10px;
}

.sf-sermon-page__resource-icon svg,
.sf-sermon-page__resource-icon i,
.sf-sermon-page__audio-play svg,
.sf-sermon-page__audio-play i,
.sf-sermon-page__audio-volume svg,
.sf-sermon-page__audio-volume i {
    width: 16px;
    height: 16px;
    font-size: 16px;
    line-height: 1;
}

.sf-sermon-page__resource-copy strong,
.sf-sermon-page__resource-copy small {
    display: block;
}

.sf-sermon-page__resource-copy strong {
    font-size: 15px;
    font-weight: 600;
    color: var(--sf-text-primary);
}

.sf-sermon-page__resource-copy small {
    margin-top: 2px;
    font-size: 12px;
    color: var(--sf-text-muted);
}

.sf-sermon-page__resource-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
}

/* =====================
   BUTTON SYSTEM
   ===================== */

.sf-sermones-ui a.sermo-btn-play,
.sf-sermones-ui button.sermo-btn-play,
.sf-sermones-ui a.sermo-btn-dl,
.sf-sermones-ui button.sermo-btn-dl,
.sf-sermones-ui a.sermo-btn-support,
.sf-sermones-ui button.sermo-btn-support,
.sf-sermones-ui a.sermo-btn-share,
.sf-sermones-ui button.sermo-btn-share,
.sf-sermones-ui a.sermo-btn-link,
.sf-sermones-ui button.sermo-btn-link,
.sf-sermones-ui a.sermo-btn-link-soft,
.sf-sermones-ui button.sermo-btn-link-soft,
.sf-sermones-ui span.sermo-notes-toggle {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    text-transform: none;
    line-height: 1.4;
    font-weight: 400;
}

/* ── Botones de acción — base unificada ─────────────────── */
.sf-sermones-ui a.sermo-btn-play,
.sf-sermones-ui button.sermo-btn-play,
.sf-sermones-ui a.sermo-btn-dl,
.sf-sermones-ui button.sermo-btn-dl,
.sf-sermones-ui a.sermo-btn-support,
.sf-sermones-ui button.sermo-btn-support,
.sf-sermones-ui a.sermo-btn-share,
.sf-sermones-ui button.sermo-btn-share {
    height: 32px;
    padding: 0 14px;
    font-size: 13px;
    font-weight: 400;
    color: #3f3f46;
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    gap: 6px;
    transition: background-color 0.15s, border-color 0.15s, color 0.15s;
}

.sf-sermones-ui a.sermo-btn-play:hover,
.sf-sermones-ui button.sermo-btn-play:hover,
.sf-sermones-ui a.sermo-btn-dl:hover,
.sf-sermones-ui button.sermo-btn-dl:hover,
.sf-sermones-ui a.sermo-btn-support:hover,
.sf-sermones-ui button.sermo-btn-support:hover,
.sf-sermones-ui a.sermo-btn-share:hover,
.sf-sermones-ui button.sermo-btn-share:hover {
    background-color: #fafafa;
    border-color: #a1a1aa;
}

/* Iconos — todos al mismo tamaño y color */
.sf-sermones-ui a.sermo-btn-play svg,
.sf-sermones-ui button.sermo-btn-play svg,
.sf-sermones-ui a.sermo-btn-play i,
.sf-sermones-ui button.sermo-btn-play i,
.sf-sermones-ui a.sermo-btn-dl svg,
.sf-sermones-ui button.sermo-btn-dl svg,
.sf-sermones-ui a.sermo-btn-dl i,
.sf-sermones-ui button.sermo-btn-dl i,
.sf-sermones-ui a.sermo-btn-support svg,
.sf-sermones-ui button.sermo-btn-support svg,
.sf-sermones-ui a.sermo-btn-support i,
.sf-sermones-ui button.sermo-btn-support i,
.sf-sermones-ui a.sermo-btn-share svg,
.sf-sermones-ui button.sermo-btn-share svg,
.sf-sermones-ui a.sermo-btn-share i,
.sf-sermones-ui button.sermo-btn-share i {
    color: var(--sf-accent);
    fill: currentColor;
    stroke: none;
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    font-size: 12px;
}

/* Estado activo del botón play */
.sf-sermones-ui a.sermo-btn-play.active,
.sf-sermones-ui button.sermo-btn-play.active {
    background-color: #f4f4f5;
    border-color: #d4d4d8;
    color: #3f3f46;
}

.sf-sermones-ui a.sermo-btn-play.active svg,
.sf-sermones-ui button.sermo-btn-play.active svg,
.sf-sermones-ui a.sermo-btn-play.active i,
.sf-sermones-ui button.sermo-btn-play.active i {
    color: #71717a;
}

.sf-sermones-ui a.sermo-btn-link,
.sf-sermones-ui button.sermo-btn-link {
    font-size: 12px;
    font-weight: 400;
    color: var(--sf-accent);
    background: none;
    border: none;
    gap: 3px;
    padding: 0;
}

.sf-sermones-ui a.sermo-btn-link-soft,
.sf-sermones-ui button.sermo-btn-link-soft {
    font-size: 12px;
    font-weight: 400;
    color: var(--sf-accent-soft);
    background: none;
    border: none;
    gap: 3px;
    padding: 0;
}


.sermo-widget-footer-link svg,
.sermo-widget-footer-link i,
.sf-sermones-ui .sermo-sl-arrow {
    color: currentColor;
}

.sf-sermones-ui a.sermo-btn-link svg,
.sf-sermones-ui button.sermo-btn-link svg,
.sf-sermones-ui a.sermo-btn-link i,
.sf-sermones-ui button.sermo-btn-link i,
.sf-sermones-ui a.sermo-btn-link-soft svg,
.sf-sermones-ui button.sermo-btn-link-soft svg,
.sf-sermones-ui a.sermo-btn-link-soft i,
.sf-sermones-ui button.sermo-btn-link-soft i,
.sermo-widget-footer-link i,
.sf-sermones-ui .sermo-sl-arrow {
    width: 13px;
    height: 13px;
    font-size: 13px;
    line-height: 1;
}

.sf-sermones-ui a.sermo-btn-share i,
.sf-sermones-ui button.sermo-btn-share i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
    position: relative;
    top: 0.5px;
}

.sf-sermon-page__resource-icon i,
.sf-sermon-page__audio-play i,
.sf-sermon-page__audio-volume i,
.sermo-widget-footer-link i,
.sf-sermones-ui .sermo-sl-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sf-sermon-page__audio-inline {
    padding: 0.85rem 1rem;
    background: var(--sf-accent-hover-bg, #F8FBFF);
    border: 1px solid var(--sf-accent-border, #BFDBFE);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.sf-sermon-page__spotify-embed {
    padding: 0.85rem 1rem 1rem;
    border-top: 1px solid var(--sf-accent-border);
    background: #fff;
    margin-top: 10px;
}

.sf-sermon-page__spotify-embed iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 12px;
}

.sf-sermon-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 0.9rem;
}

.sf-sermon-title-row .sermo-h1 {
    margin-bottom: 0;
}

.sermon-hook {
    margin: 0 0 1rem;
    color: #71717a;
    font-size: 15px;
    line-height: 1.65;
    max-width: 660px;
    font-weight: 400;
}

.sermo-meta-duration-chip,
.sermo-meta-reading-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    background: #f4f4f5;
    color: var(--sf-accent-dark, #243041);
    font-size: 0.84rem;
    line-height: 1;
    vertical-align: middle;
    font-weight: 500;
}

.sermo-meta-duration-chip.is-hidden {
    display: none;
}

.sermo-meta-duration,
.sermo-meta-duration-label,
.sermo-meta-reading {
    color: inherit;
    font-weight: 500;
}

.sermo-meta-duration-chip i,
.sermo-meta-reading-chip i {
    font-size: 0.78rem;
    color: var(--sf-accent, #e05a2b);
}

.sermo-meta-duration-chip i {
    font-size: 0.78rem;
    color: var(--sf-accent, #e05a2b);
}

.sermon-duration {
    color: #6b7280;
}

.sermon-pullquote {
    border-left: 4px solid var(--sf-accent);
    background: #f9f9f9;
    padding: 1rem 1.5rem;
    font-style: italic;
    font-size: 1.2rem;
    margin: 1.5rem 0;
}

.sermon-pullquote p:last-child {
    margin-bottom: 0;
}

.sf-sermon-notes-open {
    position: static;
    max-height: none;
    min-height: 0;
    overflow: visible;
    padding: 1.25rem 1.4rem;
}

.sermon-share-label {
    margin: 0 0 14px;
    color: #374151;
    font-size: 0.98rem;
    font-weight: 600;
}

.sf-sermon-share-bottom {
    margin-top: 20px;
}

.sf-sermon-page__audio-layout {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
}

.sf-sermon-page__audio-layout--hero {
    gap: 14px;
}

.sf-sermones-ui button.sf-sermon-page__audio-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--sf-accent);
    color: #fff;
    cursor: pointer;
}

.sf-sermon-page__audio-progress {
    min-width: 0;
}

.sf-sermon-page__audio-range {
    width: 100%;
    margin: 0;
    accent-color: var(--sf-accent);
    height: 3px;
}

.sf-sermon-page__audio-time {
    font-size: 11px;
    color: var(--sf-text-muted);
    white-space: nowrap;
}

.sf-sermon-page__audio-volume {
    color: var(--sf-accent-light);
}

.sf-sermon-page__share-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-sermones-ui a.sermo-btn-share span,
.sf-sermones-ui button.sermo-btn-share span {
    display: inline-block;
    position: relative;
    top: -0.5px;
    letter-spacing: normal;
}

.sf-sermones-ui a.sermo-btn-share.is-success,
.sf-sermones-ui button.sermo-btn-share.is-success {
    color: #16a34a;
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.sf-sermones-ui a.sermo-btn-share.is-success svg,
.sf-sermones-ui button.sermo-btn-share.is-success svg {
    color: #16a34a;
}

.sf-sermon-page__notes {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    padding-top: 0.15rem;
    background: #fff;
}

.sf-sermones-ui .sermo-notes-body {
    transition: max-height 0.3s ease;
}

.sf-sermones-ui .sermo-notes-content {
    font-size: 16px;
    color: #374151;
    line-height: 1.7;
}

.sf-sermones-ui .sermo-notes-content > *:first-child {
    margin-top: 0;
}

.sf-sermones-ui .sermo-notes-content > *:last-child {
    margin-bottom: 0;
}

.sf-sermones-ui .sermo-notes-content p {
    margin-bottom: 0.85rem;
}

.sf-sermones-ui .sermo-notes-content p:last-child {
    margin-bottom: 0;
}

.sf-sermones-ui .sermo-notes-content strong {
    font-weight: 600;
    color: #111;
}

.sf-sermones-ui .sermo-notes-content h1 {
    font-size: 34px;
}

.sf-sermones-ui .sermo-notes-content em {
    font-style: italic;
    color: #555;
}

.sf-sermones-ui .sermo-notes-content h2 {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 1.25rem 0 0.5rem;
}

.sf-sermones-ui .sermo-notes-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin: 1rem 0 0.4rem;
}

.sf-sermones-ui .sermo-notes-content ul {
    padding-left: 1.25rem;
    margin-bottom: 0.85rem;
}

.sf-sermones-ui .sermo-notes-content ul li {
    margin-bottom: 0.4rem;
    color: #374151;
    font-size: 16px;
    line-height: 1.7;
}

.sf-sermones-ui .sermo-notes-content a {
    color: var(--sf-accent);
    text-decoration: underline;
    text-decoration-color: rgba(var(--sf-accent-rgb), 0.3);
    text-underline-offset: 0.14em;
}

.sf-sermones-ui .sermo-notes-content a:hover {
    text-decoration-color: currentColor;
}

.sf-sermones-ui .sermo-notes-content blockquote {
    border-left: 2px solid var(--sf-accent-border);
    padding: 0.5rem 1rem;
    margin: 0.85rem 0;
    background: var(--sf-accent-hover-bg);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
    font-size: 16px;
}

.sf-sermones-ui .sermo-notes-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.25rem 0;
    border-radius: 12px;
}

.sf-sermones-ui .sermo-notes-content figure {
    margin: 1.25rem 0;
}

.sf-sermones-ui .sermo-notes-content figcaption {
    margin-top: 0.55rem;
    color: #9ca3af;
    font-size: 12px;
}

.sf-sermones-ui .sermo-notes-footer {
  border-top: 1px solid #f0f0f0;
  padding: 0.7rem 1.4rem;
  background-color: #FAFCFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.15s;
}

.sf-sermones-ui span.sermo-notes-toggle {
  font-size: 12.5px;
  font-weight: 400;
  color: #111111;
  background: none;
  background-color: #ffffff;
  border: 1px solid #d6dbe3;
  outline: none;
  box-shadow: none;
  padding: 0 18px;
  margin: 0;
  min-height: 38px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  line-height: 1;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 11px;
  background-color: #fff;
  justify-content: center;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}

.sf-sermones-ui a.sermo-btn-play:hover,
.sf-sermones-ui button.sermo-btn-play:hover,
.sf-sermones-ui a.sermo-btn-dl:hover,
.sf-sermones-ui button.sermo-btn-dl:hover,
.sf-sermones-ui a.sermo-btn-support:hover,
.sf-sermones-ui button.sermo-btn-support:hover,
.sf-sermones-ui a.sermo-btn-share:hover,
.sf-sermones-ui button.sermo-btn-share:hover,
.sf-sermones-ui span.sermo-notes-toggle:hover {
    background-color: var(--sf-accent-hover-bg);
    border-color: var(--sf-accent-border);
    color: var(--sf-accent);
    box-shadow: none;
    text-decoration: none;
}

.sf-sermones-ui a.sermo-btn-link:hover,
.sf-sermones-ui button.sermo-btn-link:hover,
.sf-sermones-ui a.sermo-btn-link-soft:hover,
.sf-sermones-ui button.sermo-btn-link-soft:hover {
    color: var(--sf-accent);
    text-decoration: none;
}

.sf-sermones-ui .sermo-notes-footer:hover {
  background-color: var(--sf-accent-hover-bg);
}

.sf-sermones-ui .sermo-notes-hint {
  font-size: 11.5px;
  font-weight: 400;
  color: #bbb;
  line-height: 1;
}

.sf-sermon-page .video_player_sermon,
.sf-sermon-page .audio_player_sermon {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
}

.sf-sermon-page .video_player_sermon div[id^="mep_"],
.sf-sermon-page .video_player_sermon video,
.sf-sermon-page .audio_player_sermon audio {
    width: 100% !important;
    max-width: 100% !important;
}

@media only screen and (min-width: 768px) {
    .sf-sermon-page {
        padding: 56px 40px 80px;
    }
}


@media only screen and (max-width: 768px) {
    .sf-sermon-page__series-progress-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .sf-sermon-page__series-progress-copy {
        max-width: calc(100% - 80px);
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sf-sermon-page__series-progress-link {
        flex-shrink: 0;
        white-space: nowrap;
    }

    .sf-sermon-page__resource-actions {
        width: 100%;
        justify-content: flex-start;
        flex-shrink: 1;
    }

    .sf-sermon-page__resource-row {
        flex-direction: column;
        align-items: stretch;
    }

    .sf-sermon-page__resource-main {
        width: 100%;
    }

    .sf-sermon-page__resource-actions > * {
        flex: 1 1 100%;
        justify-content: center;
    }

    .sf-sermon-page__audio-hero-header {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 10px;
    }

    .sf-sermon-page__audio-hero-main {
        min-width: 0;
    }

    .sf-sermon-page__audio-hero .sf-sermon-page__resource-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .sf-sermon-page__audio-hero .sermo-btn-support {
        flex-shrink: 0;
    }

    .sf-sermon-page__audio-layout {
        grid-template-columns: auto minmax(0, 1fr);
        gap: 10px;
    }

    .sf-sermon-page__audio-time,
    .sf-sermon-page__audio-volume {
        grid-column: 2;
    }

    .sf-sermon-page__audio-layout--hero {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .sf-sermon-page__audio-layout--hero .sf-sermon-page__audio-play,
    .sf-sermon-page__audio-layout--hero .sf-sermon-page__audio-volume {
        flex-shrink: 0;
    }

    .sf-sermon-page__audio-layout--hero .sf-sermon-page__audio-progress {
        flex: 1 1 auto;
        min-width: 0;
    }

    .sf-sermon-page__audio-layout--hero .sf-sermon-page__audio-time {
        grid-column: auto;
        flex-shrink: 0;
    }

    .sf-sermon-page__audio-layout--hero .sf-sermon-page__audio-volume {
        grid-column: auto;
    }
}

.sf-latest-sermon {
    padding: 0 1rem;
}

.sermo-widget {
    border: 1px solid #e2e2e2;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
}

.sermo-widget-featured {
    display: grid;
    grid-template-columns: minmax(360px, 1.15fr) 1fr;
    gap: 0;
    text-decoration: none;
    transition: background 0.15s;
    align-items: stretch;
}

.sermo-widget-featured:hover {
    background-color: #FAFCFF;
}

.sermo-widget-img {
    width: 100%;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    background: var(--sf-accent-dark);
    aspect-ratio: 16 / 9;
}

.sermo-widget-img img,
.sermo-widget-img-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sermo-widget-img-fallback {
    background: var(--sf-accent-dark);
}

.sermo-widget-body {
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.6rem;
    border-left: 1px solid #e2e2e2;
}

.sermo-widget-eyebrow {
    font-size: 10px;
    font-weight: 600;
    color: var(--sf-accent-soft);
    text-transform: uppercase;
    letter-spacing: 0.09em;
}

.sermo-widget-title {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    line-height: 1.25;
    margin: 0;
}

.sermo-widget-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
    font-size: 13px;
}

.sermo-widget-series {
    color: var(--sf-accent);
    font-weight: 500;
    text-decoration: none;
}

.sermo-widget-series:hover {
    text-decoration: underline;
}

.sermo-widget-sep {
    color: #e2e8f0;
}

.sermo-widget-date {
    color: #aaa;
    font-weight: 400;
}

.sermo-widget-actions {
    display: flex;
    gap: 8px;
    margin-top: 0.25rem;
}

.sermo-widget-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1rem;
    border-top: 1px solid #e2e2e2;
    text-decoration: none;
    transition: background 0.15s;
}

.sermo-widget-footer:hover {
    background-color: var(--sf-accent-hover-bg);
}

.sermo-widget-footer-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--sf-accent);
    display: flex;
    align-items: center;
    gap: 4px;
}

.sermo-widget-footer-link svg {
    transition: transform 0.2s;
}

.sermo-widget-footer:hover .sermo-widget-footer-link svg {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .sf-sermon-title-row {
        gap: 12px;
    }

    .sermon-hook {
        font-size: 0.92rem;
    }

    .sermon-pullquote {
        padding: 0.9rem 1rem;
        font-size: 1.05rem;
    }

    .sermo-widget-featured {
        grid-template-columns: 1fr;
    }

    .sermo-widget-img {
        aspect-ratio: 16/9;
        height: auto;
        min-height: 0;
    }

    .sermo-widget-body {
        padding: 1rem 1.1rem 1.1rem;
        border-left: none;
        border-top: 1px solid #e2e2e2;
    }

    .sermo-widget-title {
        font-size: 18px;
    }
}

.sf-series-index {
    padding: 75px 25px 75px;
}

.sf-series-index__header {
    margin-bottom: 0;
}

.sf-series-index__header > .sermo-h1 {
    margin: 0 0 0.35rem;
    color: #111;
}

.sf-series-index__subtitle {
    margin: 0;
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}

.sf-series-index__pill {
    display: inline-flex;
    align-items: center;
    margin-top: 0.85rem;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--sf-accent-bg);
    color: var(--sf-accent);
    font-size: 12px;
    font-weight: 400;
}

.sf-series-index__divider {
    height: 0.5px;
    margin: 1.5rem 0;
    background: #f0f0f0;
}

.sf-series-index__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.sf-series-index__card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    background: #fff;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.sf-series-index__card--featured {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.sf-series-index__card:hover {
    border-color: var(--sf-accent-border);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(var(--sf-accent-rgb), 0.15);
}

.sf-series-index__media {
    aspect-ratio: 16 / 9;
    background: var(--sf-accent-dark);
    flex-shrink: 0;
}

.sf-series-index__media--fallback {
    background: var(--sf-accent-dark);
}

.sf-series-index__card--featured .sf-series-index__media,
.sf-series-index__card--featured .sf-series-index__media--fallback {
    aspect-ratio: 16 / 9;
    min-height: 0;
    width: 100%;
    align-self: stretch;
}

.sf-series-index__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-series-index__body {
    padding: 1rem 1.1rem 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
}

.sf-series-index__card--featured .sf-series-index__body {
    padding: 1.35rem 1.35rem 1.25rem;
    justify-content: flex-start;
}

.sf-series-index__badge {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    margin-bottom: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--sf-accent-bg);
    color: var(--sf-accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sf-series-index__body > .sermo-h3 {
    margin: 0 0 0.4rem;
    color: #111;
}

.sf-series-index__card--featured .sf-series-index__body > .sermo-h3 {
    font-size: 30px;
    line-height: 1.08;
    margin-bottom: 0.55rem;
}

.sf-series-index__card--featured .sf-series-index__description {
    font-size: 15px;
    line-height: 1.7;
    max-width: 52ch;
}

.sf-series-index__description {
    margin: 0 0 0.85rem;
    font-size: 13px;
    color: #777;
    line-height: 1.55;
}

.sf-series-index__description--empty {
    visibility: hidden;
}

.sf-series-index__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-top: 0.75rem;
    border-top: 1px solid #f0f0f0;
    margin-top: 0;
}

.sf-series-index__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.sf-series-index__count-pill {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 100px;
    background: var(--sf-accent-bg);
    color: var(--sf-accent);
    font-size: 12px;
    font-weight: 400;
}

.sf-series-index__year {
    font-size: 12px;
    color: #bbb;
}

.sf-series-index__cta {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 400;
    color: var(--sf-accent);
}

.sf-series-index__cta-arrow {
    transition: transform 0.15s ease;
}

.sf-series-index__card:hover .sf-series-index__cta-arrow {
    transform: translateX(3px);
}

@media only screen and (max-width: 900px) and (min-width: 641px) {
    .sf-series-index__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sf-series-index__card--featured {
        grid-column: 1 / -1;
    }
}

@media only screen and (max-width: 640px) {
    .sf-series-index__grid {
        grid-template-columns: 1fr;
    }

    .sf-series-index__card--featured {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .sf-series-index__card--featured .sf-series-index__body {
        padding: 1rem 1.1rem 1.1rem;
    }

    .sf-series-index__card--featured .sf-series-index__media,
    .sf-series-index__card--featured .sf-series-index__media--fallback {
        aspect-ratio: 16 / 9;
        min-height: 0;
        width: 100%;
        align-self: stretch;
    }

    .sf-series-index__card--featured .sf-series-index__body > .sermo-h3 {
        font-size: 22px;
    }

    .sf-series-index__card--featured .sf-series-index__description {
        font-size: 13px;
        line-height: 1.55;
    }
}


/* ==========================================================
   Preacher chip — meta line
   ========================================================== */
.sf-sermones-ui .sermo-meta-preacher-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    vertical-align: middle;
}

.sf-sermones-ui .sermo-meta-preacher-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(var(--sf-accent-rgb, 37,99,235), 0.12);
    color: var(--sf-accent, #2563EB);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    line-height: 1;
}

.sf-sermones-ui .sermo-meta-preacher-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-sermones-ui a.sermo-meta-preacher-chip__name,
.sf-sermones-ui .sermo-meta-preacher-chip__name {
    font-size: 13px;
    font-weight: 400;
    color: #52525b;
    text-decoration: none;
}

.sf-sermones-ui a.sermo-meta-preacher-chip__name:hover {
    color: var(--sf-accent, #2563EB);
}


/* ==========================================================
   Info card — series + resources below video/audio
   ========================================================== */
.sf-sermon-page__info-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    background: #f8f9fb;
    border: 0.5px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

/* Flush info card to video bottom — form a single connected block */
.sf-sermon-page__video-wrap:has(+ .sf-sermon-page__info-card) {
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
    border: 0.5px solid #e2e8f0;
    border-bottom: none;
}

.sf-sermon-page__video-wrap + .sf-sermon-page__info-card {
    border-top: none;
    border-radius: 0 0 10px 10px;
    margin-bottom: 1.5rem;
}

.sf-sermon-info-card__series {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
}

.sf-sermon-info-card__series-img {
    width: 42px;
    height: 42px;
    border-radius: 6px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.sf-sermon-info-card__series-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

a.sf-sermon-info-card__series-name,
.sf-sermon-info-card__series-name {
    font-size: 13px;
    font-weight: 600;
    color: #3E3838;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

a.sf-sermon-info-card__series-name:hover {
    color: var(--sf-accent, #2563EB);
}

.sf-sermon-info-card__series-count {
    font-size: 12px;
    color: #999;
    white-space: nowrap;
}

.sf-sermon-info-card__resources {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}


/* ==========================================================
   Sticky player — appears when audio hero scrolls out of view
   ========================================================== */
.sf-sermon-sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #1e293b;
    border-top: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
}

.sf-sermon-sticky-player:not([hidden]) {
    transform: translateY(0);
}

.sf-sermon-sticky-player__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sf-sermon-sticky-player__info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    flex: 0 0 auto;
    max-width: 260px;
}

.sf-sermon-sticky-player__thumb {
    width: 38px;
    height: 38px;
    border-radius: 5px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

.sf-sermon-sticky-player__title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.sf-sermon-sticky-player__title {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.sf-sermon-sticky-player__preacher {
    font-size: 11.5px;
    color: rgba(255,255,255,0.5);
    white-space: nowrap;
    display: block;
}

.sf-sermon-sticky-player__controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1 1 auto;
    min-width: 0;
}

.sf-sermon-sticky-player__play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sf-accent, #2563EB);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    transition: opacity 0.15s;
}

.sf-sermon-sticky-player__play:hover { opacity: 0.85; }

.sf-sermon-sticky-player__play svg {
    width: 14px;
    height: 14px;
    fill: #fff;
    pointer-events: none;
}

.sf-sermon-sticky-player__progress {
    flex: 1 1 auto;
    min-width: 0;
}

.sf-sermon-sticky-player__range {
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255,255,255,0.2);
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    accent-color: var(--sf-accent, #2563EB);
}

.sf-sermon-sticky-player__time {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    white-space: nowrap;
    flex-shrink: 0;
    font-variant-numeric: tabular-nums;
}

.sf-sermon-sticky-player__close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
    opacity: 0.5;
    transition: opacity 0.15s;
    color: #fff;
}

.sf-sermon-sticky-player__close:hover { opacity: 1; }

.sf-sermon-sticky-player__close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    pointer-events: none;
}

@media (max-width: 640px) {
    .sf-sermon-page__info-card {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .sf-sermon-sticky-player__info {
        display: none;
    }

    .sf-sermon-sticky-player__inner {
        padding: 0.65rem 1rem;
        gap: 0.65rem;
    }
}


/* ==========================================================
   ETAPA 1 — Accesibilidad base
   ========================================================== */

/* Focus visible — ring consistente en todos los elementos interactivos */
.sf-sermones-ui :focus { outline: none; }

.sf-sermones-ui :focus-visible {
    outline: 2px solid var(--sf-accent, #2563EB);
    outline-offset: 3px;
    border-radius: 4px;
}

.sf-sermones-ui button:focus-visible,
.sf-sermones-ui a:focus-visible {
    outline: 2px solid var(--sf-accent, #2563EB);
    outline-offset: 3px;
}

/* Botones con border-radius propio heredan el radio del outline */
.sf-sermones-ui .sermo-btn-play:focus-visible,
.sf-sermones-ui .sermo-btn-dl:focus-visible,
.sf-sermones-ui .sermo-btn-support:focus-visible,
.sf-sermones-ui .sermo-btn-share:focus-visible {
    border-radius: 8px;
}

/* prefers-reduced-motion — desactiva todas las transiciones y animaciones */
@media (prefers-reduced-motion: reduce) {
    .sf-sermones-ui *,
    .sf-sermones-ui *::before,
    .sf-sermones-ui *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .ibg-fade-up {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .sf-sermon-sticky-player {
        transition: none;
    }
}


/* ==========================================================
   ETAPA 2 — Card del predicador
   ========================================================== */

.sf-sermon-preacher-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 0.5px solid #e2e8f0;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sf-sermon-preacher-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--sf-accent, #2563EB);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sf-sermon-preacher-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sf-sermon-preacher-card__initials {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.01em;
}

.sf-sermon-preacher-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sf-sermon-preacher-card__label {
    font-size: 10px;
    font-weight: 700;
    color: #a1a1aa;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1;
}

.sf-sermon-preacher-card__name {
    font-size: 15px;
    font-weight: 600;
    color: #3f3f46;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

a.sf-sermon-preacher-card__name:hover {
    color: var(--sf-accent, #2563EB);
}

.sf-sermon-preacher-card__role {
    font-size: 13px;
    color: #71717a;
    line-height: 1.3;
}

.sf-sermon-preacher-card__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: #a1a1aa;
    font-size: 12px;
    text-decoration: none;
    flex-shrink: 0;
    transition: color 0.15s, background 0.15s;
}

.sf-sermon-preacher-card__link:hover {
    color: var(--sf-accent, #2563EB);
    background: rgba(var(--sf-accent-rgb, 37,99,235), 0.07);
}

@media (max-width: 640px) {
    .sf-sermon-preacher-card {
        padding: 12px 14px;
    }

    .sf-sermon-preacher-card__avatar {
        width: 40px;
        height: 40px;
    }
}
