@import "tailwindcss/preflight";
@import "tailwindcss/utilities";

/* PressNews Logo Styles */
.press-news-logo {
    font-family: 'Georgia', serif;
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
    letter-spacing: -0.02em;
}

.press-news-tagline {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: -0.25rem;
}

.footer-logo {
    font-family: 'Georgia', serif;
    font-size: 2rem;
    font-weight: bold;
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #1e40af 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.footer-tagline {
    font-size: 0.7rem;
    color: #9ca3af;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-top: -0.25rem;
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
    .press-news-logo {
        font-size: 2rem;
    }
}

/* Enhanced Prose Styling */
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: #1f2937;
    font-weight: 700;
}

.prose h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.prose h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #374151;
}

.prose a {
    color: #2563eb;
    text-decoration: underline;
    text-decoration-color: #93c5fd;
    text-underline-offset: 3px;
}

.prose a:hover {
    color: #1d4ed8;
    text-decoration-color: #2563eb;
}

.prose blockquote {
    border-left: 4px solid #2563eb;
    background: #f8fafc;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.prose img {
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.prose ul, .prose ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin: 0.5rem 0;
}

.prose code {
    background: #f1f5f9;
    padding: 0.2rem 0.4rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    color: #475569;
}

.prose pre {
    background: #1e293b;
    color: #e2e8f0;
    padding: 1rem;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Line Clamp Utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
