﻿/* === TIP rámeček === */


.tip-box{
  display:flex;
  align-items:baseline;
  gap:6px;
  padding:14px 16px;
  margin:16px 0;
  background:#f3e9e1;
  border:1px solid #b8af9f;
  border-radius:0;
  color:#000;
  font-family: Helvetica, Arial, sans-serif;
  font-size: inherit;     /* KLÍČ: žádné zmenšení */
  line-height:1.45;
}


.tip-box__icon{
  flex:0 0 auto;
  line-height:1;
  font-size:1.2em;        /* drží proporci vůči textu */
  color:#9e8644;
}


.tip-box__text{ margin:0; }


.tip-box__label{ font-weight:700; }


.tip-box__text a{
  color:#aa8131;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:2px;
}


.tip-box__text a:hover{ color:#9e8644; }


.tip-box__text a:focus-visible{
  outline:2px solid #9e8644;
  outline-offset:2px;
}