/*
Theme Name: Mom Daily Ideas
Theme URI: https://github.com/sahilrajan91/MomDaily
Author: Stitch x Antigravity
Author URI: https://stitch.com
Description: A premium, minimalist editorial theme built with Tailwind CSS, specifically optimized for Pinterest traffic and personal blogging.
Version: 1.0.0
Text Domain: mom-daily
*/

/* =============================================
   IMAGE CAPTIONS — Center aligned
   Covers: Block editor, Classic editor, Gallery
   ============================================= */

/* Block editor (Gutenberg) */
figcaption,
.wp-element-caption,
.blocks-gallery-caption {
    text-align: center !important;
    width: 100%;
}

/* Classic editor */
.wp-caption-text,
.wp-caption p {
    text-align: center !important;
    width: 100%;
}

/* Prose / Tailwind Typography override */
.prose figcaption,
.prose .wp-element-caption {
    text-align: center !important;
}

/* =============================================
   ARTICLE BODY IMAGES — Force 2:3 aspect ratio
   To safely crop 9:16 images for the front end
   while allowing Pinterest to scrape the original
   ============================================= */
.prose .wp-block-image img,
.prose figure img {
    aspect-ratio: 2 / 3 !important;
    object-fit: cover !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0.75rem; /* Matches Tailwind rounded-xl */
}
