#epharo-news-detail{
  width:100%;
  max-width:1120px;
  margin:0 auto;
  padding:24px 20px 72px;
  font-family:inherit;
}

.epharo-detail-back{
  display:inline-flex;
  align-items:center;
  margin-bottom:30px;
  color:#173b2a;
  text-decoration:none;
  font-weight:700;
  font-size:18px;
  line-height:1.2;
}

.epharo-detail-back:hover{
  text-decoration:underline;
  text-underline-offset:4px;
}

.epharo-detail-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
  gap:34px;
  align-items:start;
}

.epharo-detail-kicker{
  display:flex;
  align-items:center;
  gap:9px;
  margin-bottom:14px;
  color:#6f9275;
  font-size:12px;
  font-weight:850;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.epharo-detail-kicker::before,
.epharo-detail-dot{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#8daf8f;
  display:inline-block;
  flex:0 0 auto;
}

.epharo-detail-title{
  margin:0 0 18px;
  max-width:780px;
  color:#173b2a;
  font-size:clamp(32px,3.2vw,46px);
  line-height:1.06;
  letter-spacing:-.04em;
  font-weight:900;
}

.epharo-detail-desc{
  margin:0 0 28px;
  max-width:780px;
  color:#5f6d63;
  font-size:18px;
  line-height:1.65;
}

.epharo-detail-box,
.epharo-detail-side,
.epharo-detail-state{
  background:linear-gradient(180deg,#fff 0%,#f8fbf8 100%);
  border:1px solid rgba(31,95,63,.12);
  border-radius:28px;
  padding:28px;
  box-shadow:0 24px 70px rgba(20,55,35,.08);
}

.epharo-detail-box h2{
  margin:0 0 16px;
  color:#173b2a;
  font-size:26px;
  line-height:1.15;
  letter-spacing:-.025em;
  font-weight:900;
}

.epharo-detail-box p{
  margin:0 0 18px;
  color:#4f5d53;
  font-size:16px;
  line-height:1.75;
}

.epharo-detail-box p:last-child{
  margin-bottom:0;
}

/* ACTIONS */

.epharo-detail-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:12px;
  margin-top:22px;
}

.epharo-detail-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:13px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:850;
  font-size:14px;
  line-height:1;
  font-family:inherit;
  cursor:pointer;
  border:1px solid rgba(31,95,63,.14);
  background:#f4f8f4;
  color:#173b2a;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.epharo-detail-btn:hover{
  background:#edf5eb;
  border-color:rgba(31,95,63,.28);
  transform:translateY(-2px);
  box-shadow:0 12px 28px rgba(20,55,35,.10);
}

.epharo-detail-btn.is-primary{
  background:#1f5f3f;
  color:#fff;
  border-color:#1f5f3f;
}

.epharo-detail-btn.is-primary:hover{
  background:#184f34;
  color:#fff;
}

/* XENYRA ACTION — USE GLOBAL XENYRA BRAND COMPONENT */

.epharo-detail-xenyra-action{
  border:0 !important;
  cursor:pointer;
  text-decoration:none;
  flex:0 0 auto;
  margin:0;
  padding:0;
  background:transparent;
  box-shadow:none;
  appearance:none;
  -webkit-appearance:none;
}

.epharo-detail-actions .xenyra-combo{
  margin-top:0;
}

.epharo-detail-actions .xenyra-combo:hover{
  transform:translateY(-2px);
}

/* SIDE PANEL */

.epharo-detail-side{
  position:relative;
  overflow:hidden;
}

.epharo-detail-side-title{
  margin-bottom:18px;
  color:#7b857d;
  font-size:12px;
  font-weight:850;
  text-transform:uppercase;
  letter-spacing:.12em;
}

.epharo-detail-status{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
  color:#173b2a;
  font-size:16px;
  font-weight:850;
}

.epharo-detail-dot{
  box-shadow:0 0 0 6px rgba(111,163,111,.10);
}

.epharo-detail-side-text{
  margin-bottom:20px;
  color:#5f6d63;
  font-size:15px;
  line-height:1.7;
}

.epharo-detail-meta-box{
  background:rgba(244,246,242,.86);
  border:1px solid rgba(31,95,63,.06);
  border-radius:20px;
  padding:16px 18px;
  margin-bottom:12px;
}

.epharo-detail-meta-box:last-child{
  margin-bottom:0;
}

.epharo-detail-meta-label{
  margin-bottom:8px;
  color:#7b857d;
  font-size:12px;
  line-height:1.2;
}

.epharo-detail-meta-value{
  color:#173b2a;
  font-size:16px;
  font-weight:900;
  word-break:break-word;
  line-height:1.35;
}

/* RESPONSIVE */

@media(max-width:980px){
  .epharo-detail-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  #epharo-news-detail{
    padding:18px 16px 56px;
  }

  .epharo-detail-title{
    font-size:34px;
  }

  .epharo-detail-desc{
    font-size:16px;
  }

  .epharo-detail-box,
  .epharo-detail-side,
  .epharo-detail-state{
    padding:22px;
    border-radius:24px;
  }

  .epharo-detail-actions{
    flex-direction:column;
    align-items:flex-start;
  }

  .epharo-detail-btn{
    width:100%;
  }

  .epharo-detail-actions .xenyra-combo{
    width:auto;
    align-self:flex-start;
  }
}