/**
 * Blogger Feed Integration Styles
 */

.blogger-feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 2rem 0;
    width: 100%;
}

.blog-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    height: 100%;
    color: inherit;
    text-decoration: none;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.blog-meta {
    font-size: 0.8rem;
    color: inherit;
    opacity: 0.7;
    margin-bottom: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.blog-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
    opacity: 0.8;
}

.read-more {
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card:hover .read-more {
    gap: 12px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .blogger-feed-grid {
        grid-template-columns: 1fr;
    }
    .blog-card {
        padding: 1.5rem;
    }
}
