/* Simbuh Dispatches Locked Style - Targeted for your theme */
.wrap,
.section .wrap,
.entry-content,
.st_dispatch-template-default .wrap {
    position: relative;
}

.locked-dispatch {
    background: #1a2421;
    border-radius: 12px;
    overflow: hidden;
    min-height: 260px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 20px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.locked-dispatch:hover {
    transform: scale(1.03);
}

.locked-dispatch.locked {
    filter: brightness(0.6) blur(2.5px);
}

.lock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border: 5px solid #f4a261;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    background: rgba(10, 17, 15, 0.95);
    z-index: 10;
    color: #f4a261;
    box-shadow: 0 0 25px rgba(244, 162, 97, 0.5);
}

.tap-text {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13.5px;
    letter-spacing: 1.5px;
    color: #ddd;
    text-align: center;
    z-index: 5;
    font-weight: 500;
}

.content-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10,17,15,0.98));
    padding: 28px 20px 20px;
    z-index: 2;
}

.content-title {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
}

.content-meta {
    font-size: 14px;
    color: #aaa;
}