

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #ffffff;
    color: #334155;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}


.press-hero-section {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 50%, #f8fafc 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.press-hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    z-index: 1;
}

.press-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

.press-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: #eff6ff;
    color: #0284c7;
    font-size: 13px;
    font-weight: 600;
    border-radius: 9999px;
    margin-bottom: 24px;
    border: 1px solid #dbeafe;
}

.press-hero-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.press-hero-container p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}


.press-grid-section {
    padding: 60px 0 120px;
    background: #ffffff;
}

.press-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}


.press-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
    border-color: #cbd5e1;
}

.press-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: #f1f5f9;
    overflow: hidden;
}

.press-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.press-card:hover .press-card-image img {
    transform: scale(1.05);
}

.press-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.press-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.press-publisher {
    font-size: 12px;
    font-weight: 700;
    color: #0284c7;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.press-date {
    font-size: 13px;
    color: #94a3b8;
    font-weight: 500;
}

.press-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 75px;
}

.press-card-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.2s ease, gap 0.2s ease;
}

.press-link svg {
    transition: transform 0.2s ease;
}

.press-card:hover .press-link {
    color: #0284c7;
}

.press-card:hover .press-link svg {
    transform: translateX(4px);
}


.floating-action-bar {
    z-index: 100;
}


@media (max-width: 1024px) {
    .press-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .press-hero-container h1 {
        font-size: 44px;
    }
}

@media (max-width: 640px) {
    .press-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .press-hero-section {
        padding: 100px 0 40px;
    }

    .press-hero-container h1 {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .press-hero-container p {
        font-size: 15px;
    }

    .press-card h3 {
        font-size: 16px;
        height: auto;
        min-height: auto;
        margin-bottom: 20px;
        -webkit-line-clamp: unset;
    }
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}


.footer {
    background: #0f172a;
    padding: 72px 0 32px;
    color: #94a3b8;
    border-top: 1px solid #1e293b;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.6; max-width: 300px; color: #64748b; }
.footer-contact-info { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 8px; }
.contact-row span { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.footer-links h4, .footer-newsletter h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-links a { display: block; font-size: 13px; margin-bottom: 10px; color: #94a3b8; transition: color 0.2s, padding-left 0.2s; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-newsletter p { font-size: 13px; margin-bottom: 16px; color: #64748b; line-height: 1.5; }
.newsletter-input { display: flex; }
.newsletter-input input {
    flex: 1; padding: 11px 14px; border-radius: 10px 0 0 10px; border: 1px solid #334155; border-right: none;
    background: #1e293b; color: #fff; font-size: 13px; outline: none; transition: border-color 0.2s;
}
.newsletter-input input:focus { border-color: #0284c7; }
.newsletter-input input::placeholder { color: #64748b; }
.newsletter-input button {
    padding: 0 20px; border: none; background: #0284c7; color: #fff; font-weight: 600; font-size: 13px;
    border-radius: 0 10px 10px 0; cursor: pointer; transition: background 0.25s;
}
.newsletter-input button:hover { background: #0369a1; }
.footer-bottom { padding-top: 24px; border-top: 1px solid #1e293b; text-align: center; font-size: 13px; color: #475569; }

@media (max-width: 768px) {
    .footer {
        padding: 40px 15px 28px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px 16px !important;
    }
    .footer-brand { grid-column: 1 / -1 !important; }
    .footer-newsletter { grid-column: 1 / -1 !important; }
}
