/* percent lighten bgc on btn */
/* colors */
/* font color */
/* border color */
/* fonts */
/* buttons */
/* border-radius */
/* transition */
/* mobile */
/* icons */
/* buttons */
/* vote btn */
/* inputs */
.expert-column {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 5px;
  background: #ffffff;
  padding: 0.5rem 1rem 1rem 1rem;
}
.expert-column__head {
  margin-bottom: 0.9rem;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 0.7rem;
}
.expert-column__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  padding: 0.65rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.expert-column__card:hover {
  border-color: rgba(9, 116, 186, 0.25);
  box-shadow: 0 8px 20px rgba(28, 43, 65, 0.08);
}
.expert-column__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
}
.expert-column__photo {
  display: block;
  flex-shrink: 0;
}
.expert-column__photo img {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.expert-column__author {
  min-width: 0;
  flex: 1;
  padding-right: 42px;
}
.expert-column__author > a {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  color: #0974BA;
}
.expert-column__author > a:hover {
  opacity: 0.8;
}
.expert-column__author > span,
.expert-column__author > small {
  display: block;
  margin-top: 0.1rem;
  color: #888;
  font-size: 0.74rem;
  line-height: 1.05rem;
}
.expert-column__author > small {
  margin-top: 0.05rem;
  color: #555;
  font-size: 0.72rem;
}
.expert-column__ticker {
  position: absolute;
  top: 0;
  right: 0;
}
.expert-column__ticker > a {
  display: inline-block;
  border-radius: 3px;
  background: #f6f6f6;
  color: #555;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 0.15rem 0.45rem;
  text-decoration: none;
}
.expert-column__ticker:hover > a {
  color: #0974BA;
}
.expert-column__popup {
  position: absolute;
  z-index: 99;
  top: calc(100% + 0.35rem);
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 230px;
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: -4px 8px 7px 3px rgba(0, 0, 0, 0.08);
  opacity: 0;
  padding: 0.55rem 0.65rem;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  visibility: hidden;
}
.expert-column__popup img {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.expert-column__popup > div {
  min-width: 0;
  flex: 1;
}
.expert-column__popup strong {
  display: block;
  color: #222;
  font-size: 0.82rem;
  line-height: 1.15rem;
}
.expert-column__popup small {
  display: block;
  color: #888;
  font-size: 0.72rem;
  line-height: 1.1rem;
}
.expert-column__ticker:hover .expert-column__popup, .expert-column__popup:hover {
  opacity: 1;
  visibility: visible;
}
.expert-column__score {
  display: inline-flex;
  width: 34px;
  height: 28px;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 700;
}
.expert-column__score--0 {
  background: #F11F20;
}
.expert-column__score--1 {
  background: #CE3027;
}
.expert-column__score--2 {
  background: #D64636;
}
.expert-column__score--3 {
  background: #8F5032;
}
.expert-column__score--4 {
  background: #825735;
}
.expert-column__score--5 {
  background: #FFAB00;
}
.expert-column__score--6 {
  background: #C7A711;
}
.expert-column__score--7 {
  background: #9AA31F;
}
.expert-column__score--8 {
  background: #87A224;
}
.expert-column__score--9 {
  background: #5E9F31;
}
.expert-column__score--10 {
  background: #209A43;
}
.expert-column__body {
  flex: 1;
}
.expert-column__body > a {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  line-height: 1.1rem;
  text-decoration: none;
  color: #0974BA;
}
.expert-column__body > a:hover {
  opacity: 0.7;
}
.expert-column__body > span {
  display: block;
  margin-bottom: 0.35rem;
  color: #888;
  font-size: 0.72rem;
}
.expert-column__body p {
  margin: 0;
  color: #444;
  font-size: 0.78rem;
  line-height: 1.08rem;
}
.expert-column__all-link {
  display: inline-flex;
  margin-top: 0.55rem;
  color: #0974BA;
  font-size: 0.8rem;
}

@media (max-width: 767.98px) {
  .expert-column__popup {
    right: 0;
    left: 0;
    min-width: 0;
  }
}
