/* Premium public blog styles */

.blog-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.blog-hero-post {
    min-height: 420px;
}

.blog-content.ql-content h1,
.blog-content.ql-content h2,
.blog-content.ql-content h3 {
    font-family: 'Fraunces', serif;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #1f2937;
}

.blog-content.ql-content p {
    margin-bottom: 1.25em;
    line-height: 1.8;
    color: #374151;
}

.blog-content.ql-content img {
    border-radius: 0.75rem;
    margin: 1.5em 0;
    max-width: 100%;
}

.blog-content.ql-content blockquote {
    border-left: 4px solid #F4A460;
    padding-left: 1.25rem;
    font-style: italic;
    color: #6b7280;
}

.blog-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    transition: transform 0.2s, background 0.2s;
}

.blog-share-btn:hover {
    transform: scale(1.08);
}

.blog-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.blog-gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.blog-gallery-grid img:hover {
    opacity: 0.9;
}

.blog-filter-pill {
    transition: all 0.2s;
}

.blog-filter-pill.active {
    background: #F4A460;
    color: white;
}

.blog-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.blog-comment-item {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.blog-comment-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
