/*
Theme Name: Blocksy Child
Theme URI: https://agorreta.eu
Description: Child theme of Blocksy for Agorreta.eu — holds custom CSS and PHP so customizations survive parent theme updates.
Author: Carlos Agorreta
Author URI: https://agorreta.eu
Template: blocksy
Version: 0.2.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blocksy-child
*/

/* ------------------------------------------------------------------ */
/* Custom site styles for Agorreta.eu live below.                      */
/* ------------------------------------------------------------------ */

/* Projects overview — card grid */
.agorreta-project-card {
	border: 1px solid var(--theme-border-color, #e7e7e7);
	border-radius: 16px;
	padding: 32px;
	height: 100%;
	gap: 14px;
	background: var(--theme-palette-color-8, #fff);
	transition: transform .2s ease, box-shadow .2s ease;
}

.agorreta-project-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 34px rgba(0, 0, 0, .09);
}

.agorreta-card-logo {
	margin: 0 0 4px;
}

.agorreta-card-logo img {
	height: 56px;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

.agorreta-project-card h3 {
	margin: 0;
	font-size: 22px;
}

.agorreta-project-card p {
	margin: 0;
	opacity: .8;
}

/* push the button to the bottom so cards align */
.agorreta-project-card .wp-block-buttons {
	margin-top: auto;
}

@media (max-width: 767px) {
	.agorreta-project-card {
		padding: 24px;
	}
}
