    .profile-container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
    }
    
    .profile-header {
        display: flex;
        align-items: center;
        margin-bottom: 30px;
        flex-wrap: wrap;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #c50225;
        margin-right: 30px;
    }
    
    .profile-info {
        flex: 1;
        min-width: 250px;
    }
    
    .profile-name {
        font-family: 'Abril Fatface', cursive;
        color: #c50225;
        margin-bottom: 10px;
        font-size: 2rem;
    }
    
    .profile-title {
        font-style: italic;
        color: #666;
        margin-bottom: 15px;
    }
    
    .profile-bio {
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .profile-social {
        display: flex;
        gap: 15px;
    }
    
    .profile-social a {
        color: #c50225;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .profile-social a:hover {
        color: #8a021b;
    }
    
    .articles-section {
        margin-top: -30px;
    }
    
    .section-title {
        font-family: 'Abril Fatface', cursive;
        color: #c50225;
        border-bottom: 2px solid #c50225;
        padding-bottom: 5px;
        margin-bottom: 20px;
    }
    
.article-list {
    display: grid;
    grid-template-columns: 1fr; /* Mindig 1 cikk egy sorban */
    gap: 20px;
}
    
    .article-card {
        border: 1px solid #ddd;
        border-radius: 5px;
        overflow: hidden;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .article-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .article-image {
        width: 10%;
        height: 100px;
        object-fit: cover;
    }
    
    .article-content {
        padding: 15px;
        padding-top: 0px;
    }
    
    .article-date {
        font-size: 0.8rem;
        color: #666;
        margin-bottom: 5px;
    }
    
    .article-title {
        font-weight: bold;
        margin-bottom: 8px;
        color: #333;
    }
    
    .article-excerpt {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }
    
    @media (max-width: 768px) {
        .profile-header {
            flex-direction: column;
            text-align: center;
        }
        
        .profile-image {
            margin-right: 0;
            margin-bottom: 20px;
        }
        
        .profile-social {
            justify-content: center;
        }
    }

    