/* HOB Agenda Popup - styles frontend */

.hob-agenda-popup {
	position: fixed;
	z-index: 100000;
	max-width: 340px;
	width: calc(100% - 32px);
	box-sizing: border-box;
}

.hob-agenda-popup[hidden] {
	display: none !important;
}

.hob-agenda-popup__backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45);
	z-index: -1;
}

.hob-agenda-popup__card {
	position: relative;
	background: var(--hob-popup-bg, #ffffff);
	border: 6px solid var(--hob-popup-border, #1e5c1e);
	border-radius: 22px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	overflow: hidden;
	font-family: inherit;
	animation: hob-agenda-popup-in 0.35s ease;
}

@keyframes hob-agenda-popup-in {
	from {
		opacity: 0;
		transform: translateY(12px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.hob-agenda-popup__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 30px;
	height: 30px;
	border: none;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.85);
	color: var(--hob-popup-close, #1e5c1e);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.hob-agenda-popup__close:hover {
	background: #ffffff;
}

.hob-agenda-popup__image-link {
	display: block;
	line-height: 0;
}

.hob-agenda-popup__image {
	width: 100%;
	height: auto;
	display: block;
}

.hob-agenda-popup__content {
	padding: 16px 18px 20px;
}

.hob-agenda-popup__title {
	margin: 0 0 10px;
	font-size: 18px;
	font-weight: 700;
}

.hob-agenda-popup__title a {
	color: var(--hob-popup-title, #1e5c1e);
	text-decoration: none;
}

.hob-agenda-popup__title a:hover {
	text-decoration: underline;
}

.hob-agenda-popup__excerpt {
	color: var(--hob-popup-text, #333333);
	font-size: 14px;
	line-height: 1.6;
}

.hob-agenda-popup__excerpt p {
	margin: 0 0 6px;
}

.hob-agenda-popup__excerpt .dashicons {
	color: var(--hob-popup-icon, #1e5c1e);
	font-size: 16px;
	width: 16px;
	height: 16px;
	vertical-align: -2px;
	margin-right: 4px;
}

/* --- Positions : coins et bords (style "toast") --- */

.hob-agenda-popup--bottom-right {
	bottom: 20px;
	right: 20px;
}

.hob-agenda-popup--bottom-left {
	bottom: 20px;
	left: 20px;
}

.hob-agenda-popup--bottom-center {
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.hob-agenda-popup--top-right {
	top: 20px;
	right: 20px;
}

.hob-agenda-popup--top-left {
	top: 20px;
	left: 20px;
}

.hob-agenda-popup--top-center {
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
}

.hob-agenda-popup--middle-left {
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
}

.hob-agenda-popup--middle-right {
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
}

/* --- Position centrale : modal avec fond assombri --- */

.hob-agenda-popup--center {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width: 420px;
}

@media (max-width: 480px) {
	.hob-agenda-popup {
		max-width: none;
		width: calc(100% - 24px);
	}

	.hob-agenda-popup--bottom-left,
	.hob-agenda-popup--bottom-right,
	.hob-agenda-popup--top-left,
	.hob-agenda-popup--top-right,
	.hob-agenda-popup--middle-left,
	.hob-agenda-popup--middle-right {
		left: 12px;
		right: 12px;
		transform: none;
	}
}
