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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header Styles */
.page-header {
    background: var(--gradient);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.9;
    line-height: 1.4;
}

/* Breadcrumbs */
.breadcrumbs {
    background: white;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 14px;
}

/* Intro Section */
.intro-section {
    background: white;
    padding: 20px;
}

/* Author Section */
.author-section {
    background: white;
    padding: 20px;
}

.author-info {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.author-description {
    color: #555;
    line-height: 1.6;
}

/* Editable Elements */
.editable {
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 20px;
}

.editable:hover {
    outline: 2px dashed var(--primary);
    outline-offset: 3px;
}

.edit-label {
    position: absolute;
    top: -28px;
    left: 0;
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 11px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 100;
    font-weight: 500;
}

.editable:hover .edit-label {
    opacity: 1;
}