/* ============================= */
/* PRESS HEADER */
/* ============================= */

.press-header{
margin-bottom:20px;
}

.press-title{
font-size:32px;
font-weight:700;
margin-bottom:10px;
}

.press-subtitle{
font-size:20px;
font-weight:400;
color:#555;
margin-bottom:20px;
}


/* ============================= */
/* PRESS META */
/* ============================= */

.press-meta{
margin-bottom:20px;
}

.press-author-info{
display:flex;
flex-direction:column;
margin-left:10px;
}

.press-author{
font-weight:600;
}

.press-date{
font-size:14px;
color:#777;
}

.press-dateline{
font-weight:600;
margin-bottom:15px;
margin-top:10px;
}


/* ============================= */
/* PRESS BODY */
/* ============================= */

.press-body{
font-size:17px;
line-height:1.8;
}

.press-body p{
margin-bottom:18px;
}

.press-body h3{
margin-top:28px;
margin-bottom:12px;
font-weight:600;
}

.press-body blockquote{
border-left:4px solid #a24e67;
padding-left:18px;
margin:25px 0;
font-style:italic;
color:#444;
}


/* ===============================
PRESS RELEASE LOCK STATE
=============================== */

.press-body-container {
    position: relative;
}

/* Blur the article when locked */

.press-body-container.locked .press-body {
    filter: blur(8px);
    pointer-events: none;
    user-select: none;
}


/* Overlay that sits on top of page */

.press-lock-overlay {
    position: fixed;

    top: 120px; /* keeps it below navbar */
    left: 0;
    right: 0;

    display: flex;
    justify-content: center;
    align-items: flex-start;

    z-index: 9999;

    padding: 40px 20px;
}

/* Message container */

.press-lock-message {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 12px;
    max-width: 420px;
    text-align: center;

    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* Heading */

.press-lock-message h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

/* Description */

.press-lock-message p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Unlock Button */

.unlock-btn {
    background: #7A3B4E;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 6px;

    font-size: 14px;
    font-weight: 500;

    cursor: pointer;
    transition: all 0.25s ease;
}

.unlock-btn:hover {
    background: #7A3B4E;
    transform: translateY(-1px);
}

/* ===============================
UNLOCK PASSWORD MODAL
=============================== */

.unlock-modal {
    display: none;

    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0,0,0,0.45);

    z-index: 10000;

    align-items: center;
    justify-content: center;
}

.unlock-modal.active {
    display: flex;
}

.unlock-modal-content {
    background: white;
    padding: 35px;
    border-radius: 10px;
    width: 340px;
    text-align: center;

    box-shadow: 0 10px 35px rgba(0,0,0,0.2);
}

.unlock-input {
    width: 100%;
    padding: 10px 12px;
    margin-top: 15px;
    margin-bottom: 18px;

    border: 1px solid #ccc;
    border-radius: 5px;
}

.unlock-submit-btn {
    background: #7A3B4E;
    color: white;

    border: none;
    padding: 10px 18px;

    border-radius: 5px;

    cursor: pointer;
}