/* =========================================
   Press Page — Premium Styling
   ========================================= */

.press-page {
    background: var(--r-bg, #ffffff);
    color: var(--r-text, #1a1a2e);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    animation: press-fade-in 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes press-fade-in {
    to { opacity: 1; }
}

.press-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    z-index: 10;
}

.press-container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.press-grid {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 4.5rem;
    align-items: start;
}

/* =========================================
   Left Pane: Press Centre Info
   ========================================= */
.press-sidebar-pane {
    position: sticky;
    top: 140px;
    z-index: 20;
}

.press-sidebar-card {
    background: #ffffff;
    border: 1px solid var(--r-border, #e2e8f0);
    border-radius: 12px;
    padding: 1.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.press-sidebar-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--r-text, #1a1a2e);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.press-sidebar-desc {
    font-size: 0.95rem;
    color: var(--r-text-light, #4a5568);
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.press-sidebar-desc a {
    display: block;
    margin-top: 0.35rem;
    color: var(--r-text, #1a1a2e);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
}

.press-sidebar-desc a:hover {
    color: var(--r-blue, #0066ff);
}

.press-kit-card {
    padding: 1.35rem 1.5rem;
    background: var(--r-bg-alt, #f7f9fc);
    border: 1px solid var(--r-border, #e2e8f0);
    border-radius: 12px;
}

.press-kit-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--r-text-muted, #718096);
    margin-bottom: 0.65rem;
}

.press-kit-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--r-text, #1a1a2e);
    line-height: 1.5;
    margin: 0 0 1.25rem;
}

.press-download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 0;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-size: 0.92rem;
    font-weight: 600;
    background: #0066ff;
    color: #ffffff !important;
    border: 1.5px solid #0066ff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.press-download-btn span,
.press-download-btn i {
    color: #ffffff;
}

.press-download-btn:hover {
    background: #0052cc;
    border-color: #0052cc;
    box-shadow: 0 6px 16px rgba(0, 102, 255, 0.28);
    transform: translateY(-1px);
    color: #ffffff !important;
}

.press-download-btn:hover span,
.press-download-btn:hover i {
    color: #ffffff;
}

.press-download-btn:disabled,
.press-download-btn.loading {
    opacity: 0.7;
    pointer-events: none;
    transform: none;
}

/* =========================================
   Right Pane: Press Mentions
   ========================================= */
.press-content-pane {
    display: flex;
    flex-direction: column;
}

.press-pretitle {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--r-blue, #0066ff);
    margin-bottom: 0.75rem;
}

.press-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.5px;
    color: var(--r-text, #1a1a2e);
    margin-bottom: 1.25rem;
}

.press-subtitle {
    font-size: 1.05rem;
    color: var(--r-text-light, #4a5568);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 640px;
}

.press-mentions-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.press-mention-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--r-border, #e2e8f0);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.press-mention-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.press-mention-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--r-bg-alt, #f7f9fc);
    overflow: hidden;
}

.press-mention-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.press-mention-image-wrap--logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.press-mention-image--logo {
    width: auto;
    height: auto;
    max-width: 70%;
    max-height: 56px;
    object-fit: contain;
}

.press-mention-logo {
    position: absolute;
    left: 12px;
    bottom: 12px;
    max-height: 28px;
    max-width: 120px;
    width: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 6px;
    padding: 4px 8px;
}

.press-mention-body {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding: 1.25rem 1.35rem 1.35rem;
    flex: 1;
}

.press-mention-date {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--r-text-muted, #718096);
}

.press-mention-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.45;
    color: var(--r-text, #1a1a2e);
    margin: 0;
}

.press-mention-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--r-blue, #0066ff);
}

/* Loading & empty states */
.press-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--r-text-muted, #718096);
    font-size: 0.95rem;
}

.press-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--r-border, #e2e8f0);
    border-top-color: var(--r-blue, #0066ff);
    border-radius: 50%;
    animation: press-spin 0.7s linear infinite;
}

@keyframes press-spin {
    to { transform: rotate(360deg); }
}

.press-empty {
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--r-text-light, #4a5568);
    font-size: 0.95rem;
    border: 1px dashed var(--r-border, #e2e8f0);
    border-radius: 12px;
}

/* =========================================
   Slim Footer Bar
   ========================================= */
.press-slim-footer {
    padding: 1rem 0;
    border-top: 1px solid var(--r-border, #e2e8f0);
    background: #ffffff;
    z-index: 100;
}

.press-slim-footer-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: var(--r-text-muted, #718096);
}

.press-slim-links {
    display: flex;
    gap: 1.5rem;
}

.press-slim-links a {
    color: inherit;
    transition: color 0.2s ease;
    text-decoration: none;
}

.press-slim-links a:hover {
    color: var(--r-text, #1a1a2e);
}

/* =========================================
   Responsive Design
   ========================================= */
@media (max-width: 1100px) {
    .press-mentions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .press-main {
        padding-top: 110px;
        padding-bottom: 40px;
    }

    .press-container {
        padding: 0 1.5rem;
    }

    .press-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .press-sidebar-pane {
        position: static;
    }

    .press-title {
        font-size: 2.2rem;
    }

    .press-slim-footer-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .press-title {
        font-size: 2rem;
    }

    .press-kit-card {
        padding: 1.15rem 1.25rem;
    }
}
