/**
 * Custom CSS
 *
 * This file is for your custom styles.
 * You can add any CSS rules here to customize the Ghost theme.
 *
 * Note: Changes made directly to this file may be overwritten during theme updates.
 * It's recommended to use the Code Injection feature in Ghost for persistent customizations.
 */

/* Your custom CSS goes below this line */

/*
 * Override the default content width.
 *
 * By default Thesis uses relatively narrow containers (580px for standard content and
 * 780px for wide sections). To better match the wider reading experience from
 * the inspiration site provided by the user, we increase these widths. The
 * values below set the maximum width of the main `.container` and the
 * `.container-wide` elements. These variables are defined in `vars.css` and
 * referenced throughout the theme. Defining them here overrides the default
 * values globally without touching the underlying theme files. Feel free to
 * adjust these numbers to your taste – the first value controls regular
 * articles and pages, while the second affects wider elements like full width
 * image sections.
 */

:root {
    /* Updated widths: set both normal and wide containers to 680px as requested */
    --container--width: 680px;
    --container-wide--width: 680px;
}

/*
 * Hide automatic Unsplash credits
 *
 * Ghost automatically inserts a figcaption such as “Photo by Author / Unsplash” for
 * feature images and Unsplash images inserted via the editor. If you prefer
 * images without this caption, hide the figcaption for both featured images
 * and image cards. This rule targets the caption element inside the figure
 * elements used by the theme (post-featured-image) and the generic image card
 * (.kg-image-card) which Ghost uses for image blocks.
 */
.post-featured-image figcaption,
.kg-image-card figcaption {
    display: none;
}
