/* =============================================
   Preaching Series Block — Frontend Styles
   ============================================= */

.psb-preaching-series {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    font-family: inherit;
}

/* ── Canvas: sized to overlay's aspect ratio (2000×1804) ── */
.psb-canvas {
    position: relative;
    width: 100%;
    padding-bottom: 90.2%; /* 1804/2000 */
    background: transparent;
}

/* ── Background photo: fills the BLACK brush-stroke zone ──
   Black region = rows 7.0% → 63.4% of overlay height      */
.psb-background-image {
    position: absolute;
    top: 7%;
    left: 5%;        /* match horizontal extent of black brush (5%→92.4%) */
    right: 7.6%;
    width: 95%;   /* 63.4% - 7.0% */
    object-fit: fill;
    object-position: center center;
    z-index: 1;
}

/* ── Overlay PNG: sits on top, white areas are transparent ── */
.psb-overlay-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 2;
    pointer-events: none;
}

/* ── Text zone: over the grey brush band (60.9% → 96.7%) ── */
.psb-text-area {
    position: absolute;
    top: 60%;
    left: 10%;
    right: 10%;
    bottom: 4%;
    z-index: 3;
    justify-content: center;
}

.entry-content h2.psb-title{
	margin : 0;
}

.psb-title {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 600;
    color: #111111;
    letter-spacing: 0.04em;
    line-height: 1.15;
	text-align : Center;
}

.psb-description {
    margin: 0;
    font-size: 14px;
    color: #222222;
    line-height: 1.55;
}

/* ── Placeholder when no image uploaded ── */
.psb-bg-placeholder {
    position: absolute;
    top: 7%;
    left: 5%;
    right: 7.6%;
    height: 56.4%;
    z-index: 1;
    background: #555;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── Block link wrapper ── */
.psb-preaching-series .psb-block-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.psb-preaching-series .psb-block-link:hover {
    text-decoration: none;
}

.psb-preaching-series .psb-background-image {
    transition: transform 0.3s ease;
}
