/* Edge-to-edge full width */
.crucifix-votd {
    width: 100vw;
    height: 250px;
    background-color: #112e29;

    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Soft divine glow */
.crucifix-votd::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(212,175,55,0.22), transparent 70%);
    pointer-events: none;
}

.crucifix-votd-inner {
    max-width: 1100px;
    padding: 20px 30px;
    text-align: center;
    z-index: 2;
}

.crucifix-votd-title {
    font-size: 40px;
    color: #d4af37;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.crucifix-votd-verse {
    font-size: 32px;
    line-height: 1.6;
    color: #f5e6b8;
    font-style: italic;
    min-height: 60px;
}

/* Typewriter cursor */
.typing::after {
    content: "▍";
    margin-left: 4px;
    color: #d4af37;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0; }
}
