/* Post Excerpt Block Styles */
.post-excerpt {
    margin-bottom: var(--margin-medium);
}

.post-excerpt p {
    margin: 0;
    line-height: 1.25em;
}

/* Text alignment */
.post-excerpt.align-left {
    text-align: left;
}

.post-excerpt.align-center {
    text-align: center;
}

.post-excerpt.align-right {
    text-align: right;
}

/* Style variations */
.post-excerpt.highlighted {
    background: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #0073aa;
    border-radius: 4px;
}

.post-excerpt.highlighted p {
    color: #333;
    font-weight: 500;
}

.post-excerpt.quote {
    position: relative;
    padding: 25px 40px;
    background: #f9f9f9;
    border-radius: 8px;
    font-style: italic;
}

.post-excerpt.quote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: #0073aa;
    font-family: serif;
    line-height: 1;
}

.post-excerpt.quote::after {
    content: '"';
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 3rem;
    color: #0073aa;
    font-family: serif;
    line-height: 1;
}

.post-excerpt.quote p {
    font-style: italic;
    font-size: 1.2rem;
    color: #555;
}

.post-excerpt.large p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.7;
    color: #444;
}

.post-excerpt.small p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #777;
}

.post-excerpt.boxed {
    background: #ffffff;
    padding: 25px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.post-excerpt.boxed p {
    color: #333;
}

.post-excerpt.gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px;
    border-radius: 8px;
    color: white;
}

.post-excerpt.gradient p {
    color: white;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .post-excerpt p {
        font-size: 1rem;
    }
    
    .post-excerpt.large p {
        font-size: 1.1rem;
    }
    
    .post-excerpt.quote {
        padding: 20px 35px;
    }
    
    .post-excerpt.quote::before,
    .post-excerpt.quote::after {
        font-size: 2.5rem;
    }
    
    .post-excerpt.highlighted,
    .post-excerpt.boxed,
    .post-excerpt.gradient {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .post-excerpt p {
        font-size: 0.95rem;
    }
    
    .post-excerpt.quote {
        padding: 15px 30px;
    }
    
    .post-excerpt.quote::before,
    .post-excerpt.quote::after {
        font-size: 2rem;
    }
    
    .post-excerpt.highlighted,
    .post-excerpt.boxed,
    .post-excerpt.gradient {
        padding: 15px;
    }
}
