/* ─ INSULÆ Papers — Banner consenso cookie ─ */

.insule-consent {
	position: fixed;
	left: 0; right: 0; bottom: 0;
	z-index: 99999;
	background: #001c4b;
	color: #ede7db;
	font-family: var(--sans, Helvetica, Arial, sans-serif);
	border-top: 1px solid rgba(237, 231, 219, 0.25);
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.35s ease, opacity 0.35s ease;
}
.insule-consent.is-visible {
	transform: translateY(0);
	opacity: 1;
}

.insule-consent__inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 28px 32px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.insule-consent__text { max-width: 620px; }

.insule-consent__title {
	font-size: 11px;
	letter-spacing: 0.28em;
	margin: 0 0 8px;
	color: rgba(237, 231, 219, 0.6);
}

.insule-consent__text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.55;
	font-weight: 300;
	color: rgba(237, 231, 219, 0.9);
}

.insule-consent__text strong { font-weight: 600; }

.insule-consent__text a {
	color: #ede7db;
	text-decoration: underline;
	text-underline-offset: 3px;
}
.insule-consent__text a:hover { color: #fff; }

.insule-consent__actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex-wrap: wrap;
}

.insule-consent__btn {
	font-family: inherit;
	font-size: 12px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	padding: 13px 24px;
	cursor: pointer;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
	border-radius: 0;
}

.insule-consent__btn--accept {
	background: #ede7db;
	color: #001c4b;
	border: 1px solid #ede7db;
}
.insule-consent__btn--accept:hover {
	background: #fff;
	border-color: #fff;
}

.insule-consent__btn--reject {
	background: transparent;
	color: #ede7db;
	border: 1px solid rgba(237, 231, 219, 0.4);
}
.insule-consent__btn--reject:hover {
	border-color: #ede7db;
}

.insule-consent__more {
	font-size: 12px;
	letter-spacing: 0.06em;
	color: rgba(237, 231, 219, 0.75);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.insule-consent__more:hover { color: #ede7db; }

@media (max-width: 700px) {
	.insule-consent__inner {
		flex-direction: column;
		align-items: stretch;
		gap: 20px;
		padding: 24px 20px;
	}
	.insule-consent__actions { flex-direction: column; align-items: stretch; gap: 10px; }
	.insule-consent__btn { width: 100%; }
	.insule-consent__more { text-align: center; }
}
/* ─ Pagina Cookie Policy ─ */

.cookie-policy { max-width: 760px; }
.cookie-policy h2 {
  font-size: 26px;
  margin: 48px 0 16px;
}
.cookie-policy h2:first-child { margin-top: 0; }
.cookie-policy ul { padding-left: 24px; }
.cookie-policy li { margin-bottom: 8px; }
.cookie-policy code {
  font-size: 0.85em;
  background: rgba(0, 28, 75, 0.06);
  padding: 2px 6px;
  border: 1px solid rgba(0, 28, 75, 0.12);
}

.cookie-policy__card {
  border: 1px solid #d8d2c4;
  border-left: 2px solid #c2571f;
  padding: 20px 24px;
  line-height: 1.7;
}

.cookie-policy__table-wrap { overflow-x: auto; margin: 20px 0; }
.cookie-policy__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.cookie-policy__table th,
.cookie-policy__table td {
  text-align: left;
  padding: 12px 14px;
  border: 1px solid #d8d2c4;
  vertical-align: top;
}
.cookie-policy__table th {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: rgba(0, 28, 75, 0.05);
  font-weight: 600;
}
