/* ============================================================================
   Shortcode [emploi] — Détail d'une offre (page single). Fond CLAIR.
   Rendu généré par inc/shortcode-offre.php — accordéon + onglets, au clic.
   ========================================================================= */
.cop-offre{
	--co-dark:var(--bleulight,#005870);
	--co-orange:var(--orange,#dc733e);
	--co-teal:#1d7f8f;                    /* titres des sections */
	--co-text:#33474f;                    /* texte des contenus */
	--co-line:rgba(22,48,61,.14);         /* filets */
	--co-toggle:rgba(22,48,61,.32);       /* cercle + symbole de l'icône */
	--co-pad-y:22px;

	position:relative;
	width:100%;
	overflow:hidden;                      /* contient la décoration */
}
.cop-offre *{ box-sizing:border-box; }

/* ---- Bandeau d'infos ---- */
.cop-offre__infos{
	display:flex;
	flex-wrap:wrap;
	gap:16px 48px;
	padding-bottom:18px;
	border-bottom:2px solid var(--co-orange);
	margin-bottom:26px;
}
.cop-offre__info{ display:flex; align-items:center; gap:12px; }
.cop-offre__info-ico{
	flex:0 0 auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:34px; height:34px;
	border-radius:50%;
	background:var(--co-orange);
}
.cop-offre__info-txt{ display:flex; flex-direction:column; line-height:1.25; }
.cop-offre__info-label{ font-family:'Anton',Helvetica,Arial,sans-serif;font-weight:400; color:var(--co-dark); font-size:16px; }
.cop-offre__info-value{ font-family:Arial,sans-serif;color:var(--co-dark); font-size:15px; }

/* Variante « bandeau d'infos seul » (shortcode [emploi_infos]) */
.cop-offre--infos-only{ overflow:visible; }
.cop-offre--infos-only::after{ content:none; }
.cop-offre__infos--nu{ border-bottom:0; margin-bottom:0; padding-bottom:0; }
.cop-offre--infos-only .cop-offre__info-value,
.cop-offre--infos-only .cop-offre__info-label{
    color: #fff;
}
.cop-offre--infos-only .cop-offre__infos {
	border-bottom: none;
}

/* ---- Onglets ---- */
.cop-offre__tabs{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:20px; }
.cop-offre__tab{
	background:transparent;
	border:1.5px solid var(--co-dark);
	color:var(--co-dark);
	font-family:'Anton',Helvetica,Arial,sans-serif;
	font-weight:400;
	font-size:13px;
	letter-spacing:.5px;
	text-transform:uppercase;
	padding:8px 14px;
	cursor:pointer;
	transition:background .2s ease, color .2s ease;
}
.cop-offre__tab:hover{ background:rgba(22,48,61,.08); }
.cop-offre__tab.is-active{ background:var(--co-dark); color:#fff; }

/* ---- Accordéon ---- */
.cop-offre__item{ border-bottom:1px solid var(--co-line); }

.cop-offre__head{
	display:flex;
	align-items:center;
	gap:14px;
	width:100%;
	padding:var(--co-pad-y) 0;
	background:transparent;
	border:0;
	cursor:pointer;
	text-align:left;
}
.cop-offre__dash{ flex:0 0 auto; width:22px; height:4px; background:var(--co-orange); }
.cop-offre__title{
	flex:1 1 auto;
	margin:0;
	font-family:'Anton',Helvetica,Arial,sans-serif;
	font-weight:400;
	text-transform:uppercase;
	letter-spacing:.5px;
	line-height:1.1;
	font-size:clamp(17px,1.5vw,22px);
	color:var(--co-teal);
}

/* Icône +/× (cercle outline) */
.cop-offre__toggle{
	flex:0 0 auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:40px; height:40px;
	border-radius:50%;
	border:1.5px solid var(--co-toggle);
	transition:border-color .3s ease;
}
.cop-offre__head:hover .cop-offre__toggle{ border-color:var(--co-teal); }
.cop-offre__icon{ position:relative; width:16px; height:16px; transition:transform .35s ease; }
.cop-offre__icon::before,
.cop-offre__icon::after{
	content:"";
	position:absolute;
	top:50%; left:50%;
	width:13px; height:2px;
	background:var(--co-toggle);
	transform:translate(-50%,-50%);
}
.cop-offre__icon::after{ transform:translate(-50%,-50%) rotate(90deg); }

/* Panneau dépliable */
.cop-offre__panel{
	display:grid;
	grid-template-rows:0fr;
	transition:grid-template-rows .4s ease;
}
.cop-offre__panel-inner{ overflow:hidden; min-height:0; }
.cop-offre__content{
	padding:0 0 24px 36px;
	color:var(--co-text);
	font-family:'Roboto',Arial,sans-serif;
	font-size:clamp(15px,1.1vw,16px);
	line-height:1.6;
}
.cop-offre__content > :first-child{ margin-top:0; }
.cop-offre__content > :last-child{ margin-bottom:0; }

/* État ouvert */
.cop-offre__item.is-open .cop-offre__panel{ grid-template-rows:1fr; }
.cop-offre__item.is-open .cop-offre__icon{ transform:rotate(45deg); }
.cop-offre__item.is-open .cop-offre__toggle{ border-color:var(--co-teal); }

/* ---- Bandeau classification ---- */
.cop-offre__classif{
	margin-top:30px;
	display:inline-block;
	background:var(--co-orange);
	color:#fff;
	font-family:'Anton',Helvetica,Arial,sans-serif;
	font-weight:400;
	letter-spacing:.5px;
	text-transform:uppercase;
	font-size:clamp(15px,1.4vw,20px);
	padding:14px 22px;
	margin-top: 4rem;
}

/* ---- Responsive ---- */
@media (max-width:680px){
	.cop-offre__infos{ gap:14px 26px; }
	.cop-offre__content{ padding-left:0; }
	.cop-offre::after{ display:none; }
}
