/* ========================================
   Rome Nail Academy - Blog Styles
   ======================================== */

/* --- Blog Post Content --- */
.post-header {
    margin-bottom: 32px;
}

.post-header h1 {
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.post-featured-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 32px;
    aspect-ratio: 16/9;
    background-color: var(--color-bg-alt);
}

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

.photo-credit {
    display: block;
    text-align: right;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.post-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.post-content p {
    margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.post-content ul {
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: 8px;
}

.post-content strong {
    font-weight: 600;
}

.post-content blockquote {
    border-left: 4px solid var(--color-primary);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--color-bg-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
}

.post-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

/* --- Post Footer --- */
.post-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
}

/* --- Share Buttons --- */
.share-section {
    margin-top: 24px;
}

.share-section h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-bg-alt);
    color: var(--color-text);
    transition: all var(--transition);
}

.share-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* --- Related Posts --- */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 32px;
}

/* --- Consigli / Tips Page --- */
.tips-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    justify-content: center;
}
