/* Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #f0f2f5;
}

/* Header */
header {
  background: #CC0000;
  color: white;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.12);
}

.header-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  grid-column: 2;
  text-align: center;
  color: white;
  text-decoration: none;
}

.header-title:hover {
  color: white;
  text-decoration: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 14px;
  justify-content: flex-end;
  grid-column: 3;
}

.header-right img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.header-right span {
  color: white;
  font-size: 14px;
}

.header-right a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
}

.header-right a:hover {
  color: white;
  text-decoration: underline;
}