/**Layer 133: Press Release Styles*/

.pr-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    opacity: 1;
    transition: opacity 0.3s;
}

.pr-modal.hidden {
    opacity: 0;
    pointer-events: none;
}

.pr-modal-content {
    background: #e2e8f0;
    width: 900px;
    height: 85vh;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.pr-toolbar {
    background: #0f172a;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pr-brand {
    font-weight: 700;
    font-size: 1.1rem;
}

.pr-paper {
    background: #fff;
    flex: 1;
    overflow-y: auto;
    padding: 3rem 4rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a;
    line-height: 1.6;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
}

.pr-actions {
    background: #fff;
    padding: 1rem;
    border-top: 1px solid #cbd5e1;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.pr-action-btn {
    padding: 8px 16px;
    border-radius: 4px;
    border: 1px solid #cbd5e1;
    background: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s;
}

.pr-action-btn:hover {
    background: #f1f5f9;
}

.pr-action-btn.primary {
    background: #2563eb;
    color: #fff;
    border-color: #2563eb;
}

.pr-action-btn.primary:hover {
    background: #1d4ed8;
}

/* PR Content Styling */
.pr-header {
    margin-bottom: 2rem;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 1rem;
}

.pr-release-line {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.pr-headline {
    font-family: 'Arial', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pr-dateline strong {
    text-transform: uppercase;
    color: #4b5563;
}

.pr-quote {
    margin: 2rem 0;
    padding: 1rem 2rem;
    border-left: 4px solid #cbd5e1;
    font-style: italic;
    font-size: 1.1rem;
    background: #f8fafc;
}

.pr-attribution {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-style: normal;
    font-weight: 600;
}

.pr-boilerplate {
    margin-top: 3rem;
    background: #f1f5f9;
    padding: 1.5rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.pr-boilerplate h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
}

.pr-contact {
    margin-top: 2rem;
    font-family: 'Arial', sans-serif;
    font-size: 0.9rem;
}

.pr-end {
    text-align: center;
    margin-top: 3rem;
    font-weight: bold;
    letter-spacing: 0.1em;
}