/*
Theme Name: GeneratePress PDV
Description: Child theme for Pont de Valencia
Template: generatepress
Version: 1.0
Author: Pont de Valencia
*/

/* Add custom CSS below this line */

/* ============================================================
   1. Custom properties — colour palette
   ============================================================ */

:root {
  --pdv-ink:        #030911;
  --pdv-blue-dark:  #133667;
  --pdv-blue:       #1A4A8C;
  --pdv-orange:     #EC6613;
  --pdv-blue-mid:   #CBDCF6;
  --pdv-bg:         #F3F5F6;
}

/* ============================================================
   2. Forms tweaks
   ============================================================ */

/* Forms against blue background */

.form_label_white {color: var(--global-color-7) !important;
					font-weight: 700;}

/* ============================================================
 * 3. Stretched card links (Browse by Topic) 
 * ============================================================ */

.topic-card-link a::after {
	content: "";
	position: absolute;
	inset: 0;
}

/* ============================================================
4. Article links — box-shadow underline, ink-black reverse on hover
   Scoped to .dynamic-entry-content so nav (.gb-menu-link) and
   buttons (.blue-button etc.) are unaffected.
============================================================ */

.dynamic-entry-content a {
  color: var(--pdv-ink);
  text-decoration: none;
  box-shadow: inset 0 -2px 0 0 var(--pdv-ink);
  padding: 0.05em 0.15em;
  transition: color 0.18s, box-shadow 0.18s;
}

.dynamic-entry-content a:hover,
.dynamic-entry-content a:focus-visible {
  color: var(--pdv-bg);
  box-shadow: inset 0 -1.3em 0 0 var(--pdv-ink);
}

/* ============================================================
5. Centering comments area on blog posts
============================================================ */
.comments-area {
    max-width: 1280px;
    margin-inline: auto;
    padding-inline: 20px;
    box-sizing: border-box;
}
