@charset "utf-8";
/* ***********************************************************************
 *
 *  File:   tour.css
 *
 *  Brief:  Styles for the world tour and trip information display.
 *
 *  Author: Jomar Hønsi, 2011-2026
 *
 * ************************************************************************/

a.score,
a.extern {
  text-decoration: none;
  margin-bottom: 5px;
  color: #335;
  font-size: 12px;

  &:hover {
    text-decoration: underline;
  }
}

h2.year {
  margin: 10px 0 5px;
  color: #011;
  padding-bottom: 5px;
}

.text-panel {
  width: 100%;
  margin: 0;
  background: #f9f9f9;
  padding: 15px;
  box-sizing: border-box;

  & h3 {
    color: #011;
    text-align: left;
  }
}

.panel-body {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: flex-start;
}

.panel-content {
  flex: 1;
}

.panel-image {
  flex-shrink: 0;

  & img {
    border-radius: 5px;
    border: 2px inset #ccc;
    width: 400px;
  }
}

@media (max-width: 700px) {
  .panel-body {
    flex-direction: column;
  }

  .panel-image img {
    width: 100%;
  }
}
