/* HS Tag Cloud ("Themen im Trend") */
.hs-tcloud{
  position: relative;
  padding: 40px 0 26px;
}

.hs-tcloud__header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 16px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 0 10px;
}

.hs-tcloud__title{
  margin:0;
  font-size: 56px;
  line-height: 1.05;
  font-weight: normal;
  font-family: 'Brandon Text Medium';
  letter-spacing: .2px;
  color: #0b5673;
}

.hs-tcloud__rule{
  max-width: 1440px;
  margin: 0 auto 22px;
  padding: 0;
  height: 2px;
  background: rgba(11, 86, 115, .85);
}

.hs-tcloud__wrap{
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  display:flex;
  flex-wrap:wrap;
  gap: 18px 18px;
}

.hs-tcloud__tag{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 28px;
  border: 2px solid rgba(159, 186, 208, 1);
  color: rgba(140, 110, 92, 1);
  border-radius: 999px;
  text-decoration:none;
  font-weight: 400;
  font-family: 'Brandon Text Medium';
  line-height: 1;
  white-space: nowrap;
  background: #fff;
}

.hs-tcloud__tag:hover{
  background: rgba(159, 186, 208, .18);
}

@media (max-width: 900px){
  .hs-tcloud__title{ font-size: 44px; }
  .hs-tcloud__wrap{ gap: 12px; }
  .hs-tcloud__tag{ padding: 12px 22px; }
}

@media (max-width: 560px){
  .hs-tcloud__title{ font-size: 34px; }
  .hs-tcloud__tag{ padding: 10px 18px; font-weight: 800; }
}