/* Project Header Styling */
.project-info-header {
margin-bottom: 2.5rem;
}
.project-title-row {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
margin-bottom: 1.5rem;
}
.project-title {
margin: 0;
font-size: 2.5rem;
}
.repo-button {
background: var(--bg-tag, #f0f0f0);
padding: 0.5rem 1rem;
border-radius: 6px;
text-decoration: none;
font-family: "Roboto Mono", monospace;
font-weight: bold;
color: var(--text-main);
border: 1px solid var(--border-medium, #ccc);
transition: all 0.2s ease;
}
.repo-button:hover {
background: var(--accent-primary);
color: white;
}
.project-metadata {
display: flex;
flex-wrap: wrap;
gap: 2rem;
font-size: 0.85rem;
}
.meta-label {
display: block;
text-transform: uppercase;
color: #888;
font-weight: bold;
margin-bottom: 0.25rem;
}
.tag-list {
display: flex;
gap: 0.5rem;
}
.tag {
color: var(--accent-primary);
font-family: "Roboto Mono", monospace;
}
.project-divider {
border: 0;
border-top: 1px solid var(--border-medium, #eee);
margin-top: 1.5rem;
}