/* Yoga Blocks Frontend Styles */

/* Pose Block */
.yoga-pose-block {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #fdfcf8;
    border-left: 3px solid #8b7355;
    border-radius: 4px;
    font-family: 'Crimson Pro', Georgia, serif;
    font-size: 20px;
    line-height: 1.7;
}

.pose-header {
    display: flex;
    align-items: baseline;
    margin-bottom: 1rem;
}

.pose-number {
    display: inline-block;
    width: 35px;
    font-weight: 600;
    color: #8b7355;
    margin-right: 0.5rem;
}

.pose-name {
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
    color: #2a2a2a;
}

.sanskrit {
    font-style: italic;
    color: #5a5a5a;
    font-size: 0.85em;
    margin-left: 0.5rem;
}

.yoga-pose-block.layout-image-right .pose-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.yoga-pose-block.layout-image-left .pose-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: start;
}

.pose-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.pose-instructions {
    margin-bottom: 1rem;
}

.pose-instructions p {
    margin-bottom: 1rem;
}

.pose-variations {
    font-style: italic;
    color: #5a5a5a;
    padding: 0.5rem 0;
    border-top: 1px dashed #e0ddd5;
    margin-top: 1rem;
    font-size: 0.95em;
}

/* Section Block */
.yoga-section {
    margin: 3rem 0;
}

.section-header {
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0ddd5;
}

.section-title {
    font-size: 2rem;
    color: #6b5a47;
    margin: 0;
    font-weight: 400;
}

.timestamp {
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 0.8rem;
    color: #5a5a5a;
    margin-left: 1rem;
}

/* Note Block */
.yoga-note-block {
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.04) 0%, rgba(180, 152, 120, 0.06) 100%);
    border-left: 3px solid #8b7355;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 4px;
    font-size: 20px;
    line-height: 1.7;
}

.yoga-note-block strong {
    color: #8b7355;
}

/* Responsive */
@media (max-width: 768px) {
    .yoga-pose-block.layout-image-right .pose-content-wrapper,
    .yoga-pose-block.layout-image-left .pose-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .pose-image {
        order: -1;
    }
}