/* ==========================================
   Ashford & Briggs - Styles
   Paladin Veritai Agent — Product-Focused Site
   ========================================== */

/* CSS Variables for Brand Colors */
:root {
    --primary-color: #1a365d;
    --secondary-color: #2563eb;
    --accent-color: #c7a06c;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --background-light: #f8fafc;
    --background-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-primary:hover {
    background-color: #0f2a47;
    color: var(--background-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--background-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2.5rem;
}

.nav-menu li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.nav-menu li a.btn-primary {
    color: var(--background-white);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 0;
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    margin-top: 80px;
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.03) 0%, rgba(37, 99, 235, 0.05) 100%);
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 0.625rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--background-white);
    border-radius: 100px;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   Problem Section
   ========================================== */
.problem {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stat-card .stat-detail {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.stat-card cite {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
    opacity: 0.7;
}

/* ==========================================
   Solution Section
   ========================================== */
.solution {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.solution-card {
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.solution-icon {
    width: 64px;
    height: 64px;
    background-color: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.solution-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   How It Works Section
   ========================================== */
.how-it-works {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    position: relative;
}

.step-card .step-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.features-callout {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.callout-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
}

.callout-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* ==========================================
   Market Context Section
   ========================================== */
.market-context {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2563eb 100%);
    color: var(--background-white);
}

.market-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.market-text h2 {
    color: var(--background-white);
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.market-text p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 1.05rem;
}

.market-text .market-lead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
}

.market-text .market-highlight {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.15rem;
    margin-top: 1rem;
}

.market-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.market-stat {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.market-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.market-stat p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.advantage-card {
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-color);
}

.advantage-icon {
    width: 64px;
    height: 64px;
    background-color: var(--background-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.advantage-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.competitor-context {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2.5rem;
    background-color: var(--background-white);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.competitor-context p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.competitor-context p:last-child {
    margin-bottom: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.competitor-context strong {
    color: var(--text-primary);
}

/* ==========================================
   Team Section
   ========================================== */
.team {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.team-card {
    text-align: center;
    padding: 3rem 2.5rem;
    background-color: var(--background-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-lg);
}

.team-avatar {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--background-white);
}

.team-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.team-role {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.team-card p:last-child {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* ==========================================
   Services Section (condensed / secondary)
   ========================================== */
.services {
    padding: 5rem 0;
    background-color: var(--background-light);
}

.services .section-header {
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2rem;
    background-color: var(--background-white);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 56px;
    height: 56px;
    background-color: var(--background-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    box-shadow: var(--shadow-sm);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 0.95rem;
}

/* ==========================================
   Contact / Demo Request Section
   ========================================== */
.contact {
    padding: 6rem 0;
    background-color: var(--background-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
}

.contact-form {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-group label .optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    transition: var(--transition);
    background-color: var(--background-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card address {
    font-style: normal;
}

.contact-card address p {
    margin-bottom: 1.5rem;
}

.contact-card address p:last-child {
    margin-bottom: 0;
}

.contact-card strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-card a {
    color: var(--text-secondary);
}

.contact-card a:hover {
    color: var(--secondary-color);
}

.demo-checklist {
    list-style: none;
    padding: 0;
}

.demo-checklist li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    line-height: 1.5;
}

.demo-checklist li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%232563eb' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* ==========================================
   Footer
   ========================================== */
.site-footer {
    background-color: var(--primary-color);
    color: rgba(255, 255, 255, 0.9);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: var(--background-white);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.75rem;
    }

    .problem-stats {
        grid-template-columns: 1fr;
    }

    .solution-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .market-content {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--background-white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding: 5rem 0 4rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .market-text h2 {
        font-size: 1.75rem;
    }

    .features-callout {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .competitor-context {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .btn-large {
        width: 100%;
    }

    .hero-badge {
        font-size: 0.85rem;
    }

    .stat-card {
        padding: 2rem 1.5rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }
}

/* ==========================================
   Animations
   ========================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scroll offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .site-header,
    .mobile-menu-toggle,
    .hero-cta,
    .contact-form,
    .site-footer {
        display: none;
    }
}

/* ==========================================
   Press Teaser Banner
   ========================================== */
.press-teaser {
    padding: 1rem 0;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
}

.press-teaser-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.press-teaser-date {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
    white-space: nowrap;
}

.press-teaser-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.4;
}

.press-teaser-link {
    margin-left: auto;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.press-teaser-link:hover {
    color: var(--primary-color);
}

/* ==========================================
   Press Release Article Page
   ========================================== */
.press-release-article {
    max-width: 750px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.press-release-article .back-link {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.press-release-article .back-link:hover {
    color: var(--secondary-color);
}

.press-release-article h1 {
    font-size: 2.25rem;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.press-release-article .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.press-release-article .dateline {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.press-release-article h2 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.press-release-article p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
}

.press-release-article blockquote {
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background-color: var(--background-light);
    border-radius: 0 8px 8px 0;
}

.press-release-article blockquote p {
    font-style: italic;
    color: var(--text-primary);
    margin: 0;
}

.press-release-article ul,
.press-release-article ol {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.press-release-article li {
    margin-bottom: 0.5rem;
}

.press-release-contacts {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.press-release-contacts h2 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.press-release-contacts p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.press-release-note {
    margin-top: 2rem;
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .press-teaser-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .press-teaser-link {
        margin-left: 0;
    }

    .press-release-article {
        padding: 3rem 1.5rem 4rem;
    }

    .press-release-article h1 {
        font-size: 1.75rem;
    }

    .press-release-article blockquote {
        padding: 1rem 1.25rem;
    }
}
