/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;1,400;1,500;1,600&display=swap');

/* CSS Custom Properties (Tokens) */
:root {
    /* Light mode tokens */
    --bg-primary: #fafafa;
    --bg-secondary: #f5f5f5;
    --bg-tertiary: #e9ecef;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-tertiary: #6c757d;
    --border-primary: #e9ecef;
    --border-secondary: #dee2e6;
    --accent-primary: #8b5cf6;
    --accent-hover: #7c3aed;
    --shadow-light: rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] {
    /* Dark mode tokens */
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #404040;
    --text-primary: #e5e5e5;
    --text-secondary: #b3b3b3;
    --text-tertiary: #8b8b8b;
    --border-primary: #404040;
    --border-secondary: #404040;
    --accent-primary: #a78bfa;
    --accent-hover: #c4b5fd;
    --shadow-light: rgba(0, 0, 0, 0.3);
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Global link styles */
a {
    color: var(--accent-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

/* Article content images - don't crop */
.article-content .article-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Inline images within article content - natural display */
.article-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0;
    margin: 1.5rem 0;
}

blockquote {
    border-left: 4px solid var(--accent-primary);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background-color: var(--bg-secondary);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    position: relative;
}

blockquote p {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--text-primary);
}

blockquote cite {
    font-style: normal;
    font-size: 0.875rem;
    color: var(--text-tertiary);
    display: block;
    margin-top: 0.5rem;
}

/* All headings use Space Mono */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Mono', monospace !important;
    font-weight: 500 !important;
}

/* UI elements use Inter */
p, span, div, a, button, input, textarea, label {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    min-height: 80px;
}

header.scrolled {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    backdrop-filter: blur(10px);
}

.header-left .logo {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.header-left .logo:hover {
    opacity: 0.8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
}

.header-right nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    height: 100%;
}

/* Navigation links */
.header-right a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-family: 'Space Mono', monospace;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 44px; /* Match theme toggle height */
}

.header-right a:hover {
    color: var(--text-primary);
}

.header-right a.active {
    color: var(--accent-primary);
    font-weight: 500;
    border-bottom-color: var(--accent-primary);
}

/* Theme toggle button */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 44px; /* Match the height of nav links for better touch targets */
}

.theme-toggle:hover {
    background-color: var(--bg-tertiary);
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

/* Sun icon rays animation */
.sun-ray {
    animation: rotate 2s linear forwards;
    transform-origin: center;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Main content */
main {
    padding: 8rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    padding: 4rem 1rem;
    margin-bottom: 5rem;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.text-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

/* Weather Widget */
.weather-widget {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.weather-location-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.location-pin {
    width: 12px;
    height: 12px;
    color: var(--accent-primary);
    opacity: 0.8;
}

.weather-location-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.weather-status-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 28px;
}

.weather-icon {
    font-size: 1.5rem;
    opacity: 0.8;
}

.weather-condition {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.weather-details {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.weather-temp {
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
}

.melbourne-time {
    color: var(--text-secondary);
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Current Status Indicator */
.current-status {
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.current-status:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #00d4aa;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.status-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-tertiary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.company-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 28px;
}

.company-logo {
    width: 24px;
    height: 24px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.company-badge:hover .company-logo {
    transform: scale(1.1);
}

.company-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.linkedin-link {
    margin-left: auto;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.25rem 0.5rem;
    background: var(--bg-tertiary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    text-decoration: none;
}

.linkedin-link:hover {
    background: var(--accent-primary);
    color: var(--bg-primary);
}

.linkedin-icon {
    transition: transform 0.3s ease;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.linkedin-text {
    font-size: 0.75rem;
}

.linkedin-link:hover .arrow-icon {
    transform: translate(2px, -2px);
}

.image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--border-primary);
    box-shadow: 0 8px 32px var(--shadow-light);
    transition: all 0.3s ease;
}

.profile-pic {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 2rem 4rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    border-radius: 0;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1;
}

.header-underline {
    width: 120px;
    height: 20px;
    margin-top: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.header-underline:hover {
    opacity: 1;
}

/* About Page Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
    margin-top: 4rem;
}

.about-page .content-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 40vh;
}

/* About section styling */

.about-section, .experience-section, .speaking-section, .skills-section {
    margin-bottom: 2.5rem;
}

.about-section h3, .experience-section h3, .speaking-section h3, .skills-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-section p:last-child {
    margin-bottom: 0;
}

.experience-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.experience-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.experience-logo .company-logo {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.experience-content {
    flex: 1;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.experience-header h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.company {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-primary);
    margin-bottom: 0.75rem;
}

.speaking-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.duration {
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--bg-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.speaking-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.75rem 0;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.skill-tag {
    background: var(--accent-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Media Page Styles */
.media-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.filter-section {
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.filter-btn:hover {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.filter-btn.active {
    background: var(--accent-primary);
    color: white;
    border-color: var(--accent-primary);
}

.content-listing {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.content-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.content-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.content-image {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-info {
    flex: 1;
}

.content-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.content-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
}

.content-type {
    font-family: 'Space Mono', monospace;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 500;
    margin: -0.5rem 0 0.75rem 0;
}

.content-info h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1.25rem;
    font-weight: 500;
}

.content-info h4 a {
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-weight: 500;
    transition: color 0.3s ease;
}

.content-info h4 a:hover {
    color: var(--accent-primary);
}

.content-info p {
    margin: 0 0 1rem 0;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--bg-primary);
    color: var(--accent-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid var(--accent-primary);
}

/* Article Detail Page Styles */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 2rem;
}

.article-header {
    margin-bottom: 3rem;
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.article-meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-right: 0.5rem;
}

.article-type {
    background: var(--accent-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-left: 0;
}

.article-header h2 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0 0 0 0;
    line-height: 1.3;
    text-align: left;
}

/* Article header images - fixed height, centered */
.article-header + .article-image {
    width: 100%;
    height: 350px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-header + .article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Article content images - natural height */
.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.article-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.article-content {
    line-height: 1.7;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 2rem 0 1rem 0;
    text-align: left;
}

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.article-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.article-footer {
    margin-top: 3rem;
    text-align: center;
}

.back-link {
    color: var(--text-tertiary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.back-link:hover {
    color: var(--accent-primary);
}

/* Recent Article Section */
.recent-article {
    margin: 4rem 0;
    padding: 0 2rem;
}

.article-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: left;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.article-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-primary);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    padding: 0;
}

.article-card .article-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
    border-radius: 12px 12px 0 0;
    position: relative;
}

.article-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    margin: 0;
    padding: 0;
    display: block;
    border: none;
    outline: none;
    transform: scale(1.25);
}

.article-card:hover .article-preview {
    transform: scale(1.15);
}

.article-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 4px 20px var(--shadow-light);
}

.article-date {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 1rem;
}

.article-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-primary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
    padding: 0 1.5rem 1.5rem;
}

.article-link:hover {
    color: var(--accent-hover);
}

.article-link svg {
    transition: transform 0.3s ease;
}

.article-link:hover svg {
    transform: translate(2px, -2px);
}

/* Newsletter Section */
.newsletter {
    margin: 3rem 0;
    padding: 3rem 2rem;
}

.newsletter-content {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.newsletter-actions {
    display: flex;
    justify-content: center;
    align-items: center;
}

.substack-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-primary);
    color: var(--bg-primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.substack-link:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
}

/* Footer */
.footer {
    padding: 3rem 2rem 2rem;
    background: var(--bg-primary);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}

.footer-social {
    color: var(--text-tertiary);
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.footer-social:hover {
    color: var(--accent-primary);
    background: var(--bg-secondary);
}

/* Responsive design */
/* Medium screens (13-inch MacBook, tablets) */
@media (max-width: 1440px) and (min-width: 769px) {
    main {
        padding: 8rem 3rem 2rem;
    }
    
    .content-container {
        gap: 4rem;
        padding: 4rem 1rem;
        margin-bottom: 6rem;
    }
    
    .recent-article {
        padding: 0 3rem;
        margin: 4rem 0;
    }
    
    .articles-grid {
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .newsletter {
        padding: 3rem 3rem;
        margin: 4rem 0;
    }
    
    .about-container {
        padding: 0 3rem 2rem;
        margin-top: 5rem;
    }
    
    .media-container {
        padding: 0 3rem 2rem;
    }
    
    .page-header {
        padding: 4rem 3rem 4rem;
    }
    
    .text-content h2 {
        font-size: 2.25rem;
        margin-bottom: 1.75rem;
    }
    
    .text-content p {
        font-size: 1.1rem;
        margin-bottom: 2.25rem;
    }
}

/* Small screens */
@media (max-width: 768px) {
    header {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-right {
        gap: 1rem;
    }
    
    .header-right nav {
        gap: 1rem;
    }
    
    main {
        padding: 8rem 1rem 1rem;
    }
    
    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .text-content h2 {
        font-size: 2rem;
    }
    
    .current-status {
        padding: 0.75rem;
    }
    
    .company-badge {
        gap: 0.5rem;
    }
    
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .article-card .article-image {
        height: 180px;
        margin: 0;
        padding: 0;
    }
    
    .article-info {
        padding: 1.25rem;
    }
    
    .recent-article {
        margin: 3rem 0;
        padding: 0 1rem;
    }
    
    .article-link {
        padding: 0;
    }
    
    .newsletter {
        margin: 1.5rem 0;
        padding: 2rem 1rem;
    }
    
    .newsletter-actions {
        justify-content: center;
    }
    
    .footer-links {
        gap: 1rem;
    }
    
    .footer {
        padding: 2rem 1rem;
    }
    
    /* About page responsive */
    .about-container {
        padding: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .experience-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .experience-logo {
        width: 50px;
        height: 50px;
        align-self: flex-start;
    }
    
    .experience-logo .company-logo {
        width: 28px;
        height: 28px;
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .skills-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .text-content h2 {
        font-size: 1.75rem;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
}