﻿/* --- Sezione province --- */
.province-area {
  background-color: #f8f5f2;
  border-top: 3px solid #C65D3B;
  border-bottom: 3px solid #C65D3B;
}

/* --- Box di ciascuna provincia --- */
.provincia-box {
  background: #fff;
  border: 1px solid #e4ded8;
  border-radius: 10px;
  padding: 25px 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* --- Bottoni singoli --- */
.abbazia-btn {
  display: inline-block;
  margin: 6px;
  padding: 6px 18px;
  background: #fff;
  color: #4A5E34;
  border: 2px solid #C65D3B;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
}
.abbazia-btn:hover {
  background: #C65D3B;
  color: #fff;
  text-decoration: none;
}

/* --- Colori di supporto --- */
.text-mattone { color: #C65D3B !important; }
.text-verde { color: #4A5E34 !important; }

/* --- Mobile friendly --- */
@media (max-width: 576px) {
  .abbazia-btn {
    display: block;
    width: 100%;
    margin: 6px 0;
  }
}

.riepilogo {
  margin-top: 2rem;
  padding: 1rem;
  background: #f9f9f9;
  border-left: 3px solid #ccc;
}
.riepilogo h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
}

/* ================================
   DOCUMENTI – CARD
================================ */

/* Box documento */
.documento-box {
  border: 1px solid #e2b3a5;
  border-radius: 6px;
  padding: 12px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Copertina */
.documento-cover {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #ddd;
  transition: transform .2s ease, box-shadow .2s ease;
}

/* Hover copertina */
.documento-box:hover .documento-cover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,.12);
}

/* Area testi */
.documento-meta {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Collana */
.documento-collana {
  font-size: 13px;
  font-weight: bold;
  margin: 10px 0 4px 0;
}

/* Numero + data */
.documento-numero {
  font-size: 13px;
  margin: 0 0 8px 0;
}

/* Titolo documento */
.documento-titolo {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.3;
  margin: 0 0 6px 0;
  color: #c65d3b;
  min-height: 3.9em; /* allinea gli abstract */
}

/* Autore */
.documento-autore {
  font-size: 14px;
  margin: 0 0 2px 0;
  min-height: 1.4em;
}

/* Pagine */
.documento-pagine {
  font-size: 13px;
  margin: 0 0 10px 0;
  min-height: 1.4em;
}

/* Abstract documento */
.documento-abstract {
  font-size: 12px;
  line-height: 1.4;
  font-style: italic;
  margin: 0 0 12px 0;
}

/* Link documento */
.documento-link {
  margin-top: auto;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  color: #c65d3b;
}

.documento-link:hover {
  text-decoration: underline;
}
