/* OliviaZ Blog Styles */

.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid rgba(255,255,255,0.3);
}

.profile-img-lg {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border: 4px solid rgba(0,0,0,0.1);
}

.hero-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 20px;
}

.hero-section .profile-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.post-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
}

.post-image {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.post-content {
    line-height: 1.8;
    font-size: 1.05rem;
}

.post-content h2,
.post-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 15px;
    }
    
    .profile-img-lg {
        width: 200px;
        height: 200px;
    }
}
