/* public/css/disclosure.css */

.disclosure-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.disclosure-header {
    margin-bottom: 2rem;
}

.disclosure-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.author-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
}

.author-name {
    font-weight: 600;
    color: #3498db;
}

.disclosure-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.disclosure-banner {
    background-color: #ecf0f1;
    border-radius: 8px;
    height: 120px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7f8c8d;
    font-size: 1.5rem;
}

.disclosure-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #ecf0f1;
}

.disclosure-section:last-child {
    border-bottom: none;
}

.disclosure-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.2rem;
}

.disclosure-section h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin: 1.5rem 0 1rem;
}

.disclosure-section p,
.disclosure-section li {
    margin-bottom: 1rem;
}

.disclosure-section ul {
    padding-left: 2rem;
    margin-bottom: 1.5rem;
}

.important-note {
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    padding: 1.2rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.example-container {
    background-color: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.example-container h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.author-bio {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 3rem;
}

.author-socials {
    display: flex;
    gap: 1rem;
    margin: 1rem 0 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    margin-right: 1rem;
}

.social-link:hover {
    text-decoration: underline;
}

.bio-section {
    margin-bottom: 1.5rem;
}

.read-full-bio {
    display: inline-block;
    margin-top: 1rem;
    color: #3498db;
    font-weight: 600;
    text-decoration: none;
}

.read-full-bio:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .disclosure-header h1 {
        font-size: 2rem;
    }
    
    .disclosure-section h2 {
        font-size: 1.6rem;
    }
    
    .disclosure-section h3 {
        font-size: 1.3rem;
    }
}