/*
Theme Name: Avada Child
Description: Child theme for Avada theme
Author: ThemeFusion
Author URI: https://theme-fusion.com
Template: Avada
Version: 1.0.0
Text Domain:  Avada
*/

.sidebar .widget .widget-title,
.sidebar .widget .heading .widget-title,
.fusion-widget-area h4 {
  font-family: "Playfair Display", serif!important;
}

/* Recent Posts: inverte l'ordine tra titolo (h3.entry-title) e meta (p.meta) */
.recent-posts-content {
	display: flex;
	flex-direction: column;

 	p.meta {
		order: 1;

		text-transform: uppercase;
		margin-top: 20px;
		margin-bottom: 0!important;

		font-size: 1.2rem!important;
	}

	.entry-title {
		order: 2;
		margin-bottom: 20px!important;
	}

	/* Estratto (l'unico <p> senza classe) resta dopo titolo/meta come in origine */
	> p:not(.meta) {
		order: 3;
	}

	/* Bottone "Leggi tutto" aggiunto via JS (scripts.js), usa le classi fusion-button native */
	.recent-posts-readmore {
		order: 4;
		margin-top: 10px;

		width: fit-content;
	}

}