/* ============================================================
   aegypten-klima.css — annual-climate graphic for the destination pages
   CSS only (no JS), theme tokens, single-color inline SVG icons.
   ============================================================ */
.aeg-climate{
  margin:1.9em 0;
  background:var(--bg-warm,#f1ead9);
  border:1px solid var(--line,#e7ddc9);
  border-radius:14px;
  padding:1.15em 1.25em 1.05em;
  color:var(--ink,#23201a);
}
.aeg-climate *{box-sizing:border-box}
.aeg-climate__head{display:flex;flex-wrap:wrap;align-items:center;gap:.5em .9em;margin-bottom:.95em}
.aeg-climate__title{
  margin:0;font-size:1.18em;line-height:1.25;font-weight:700;
  display:flex;align-items:center;gap:.45em;color:var(--nil,#1d2746);
}
.aeg-climate__title svg{width:1.05em;height:1.05em;flex:0 0 auto;color:var(--terra,#bf9b4e)}
.aeg-climate__badge{
  display:inline-flex;align-items:center;gap:.4em;
  background:var(--terra,#bf9b4e);color:#fff;
  font-size:.82em;font-weight:600;padding:.34em .72em;border-radius:999px;line-height:1.2;
}
.aeg-climate__badge svg{width:1em;height:1em;color:#fff}
/* Bar chart: air temperature */
.aeg-climate__chart{display:grid;grid-template-columns:repeat(12,1fr);gap:.2em;align-items:end}
.aeg-climate__col{display:flex;flex-direction:column;align-items:center;justify-content:flex-end;min-width:0}
.aeg-climate__val{font-size:.72em;font-weight:700;color:var(--terra-deep,#a07f33);margin-bottom:2px}
.aeg-climate__track{height:80px;width:64%;display:flex;align-items:flex-end}
.aeg-climate__bar{
  width:100%;border-radius:5px 5px 2px 2px;min-height:6px;
  background:linear-gradient(180deg,var(--terra,#bf9b4e),var(--sand-deep,#d8c190));
}
.aeg-climate__w{font-size:.7em;font-weight:600;color:var(--nil-soft,#33406a);margin-top:3px}
.aeg-climate__m{font-size:.68em;color:var(--grey,#5e574a);margin-top:2px}
/* Sun + rain */
.aeg-climate__rows{margin-top:.8em;border-top:1px dashed var(--line,#e7ddc9);padding-top:.65em}
.aeg-climate__rowhead{display:flex;align-items:center;gap:.4em;font-size:.74em;font-weight:600;color:var(--grey,#5e574a);margin:.25em 0 .15em}
.aeg-climate__rowhead svg{width:1em;height:1em;color:var(--terra,#bf9b4e)}
.aeg-climate__row{display:grid;grid-template-columns:repeat(12,1fr);gap:.2em;text-align:center;font-size:.72em;color:var(--ink,#23201a)}
/* Legend + note */
.aeg-climate__legend{margin:.75em 0 0;font-size:.73em;color:var(--grey,#5e574a);display:flex;flex-wrap:wrap;gap:.35em 1.15em}
.aeg-climate__legend span{display:inline-flex;align-items:center;gap:.4em}
.aeg-climate__sw{width:.85em;height:.85em;border-radius:3px;flex:0 0 auto}
.aeg-climate__sw--air{background:var(--terra,#bf9b4e)}
.aeg-climate__sw--w{background:var(--nil-soft,#33406a)}
.aeg-climate__note{margin:.55em 0 0;font-size:.68em;color:var(--grey-soft,#8a8275)}
@media (max-width:540px){
  .aeg-climate{padding:1em 1em .9em}
  .aeg-climate__chart{gap:.12em}
  .aeg-climate__track{height:62px;width:80%}
  .aeg-climate__val{font-size:.6em}
  .aeg-climate__w{font-size:.58em}
  .aeg-climate__m{font-size:.56em}
  .aeg-climate__row{font-size:.6em;gap:.12em}
}
