/* The country switch in the top bar, and the draft strip under it.
   Kept in a file of its own because the content policy forbids a page from
   growing a <style> element at runtime — which is exactly the trick an
   injected script would use. */

.ett-countries {
  display: inline-flex;
  gap: 4px;
  margin-left: auto;
  padding-left: 12px;
  flex-shrink: 0;
}

.ett-country {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 9px;
  border-radius: 6px;
  border: 1.5px solid rgba(244, 239, 228, .28);
  font-family: 'Barlow Condensed', -apple-system, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #e6dcc6;
  line-height: 1;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.ett-country:hover { background: rgba(244, 239, 228, .12); border-color: rgba(244, 239, 228, .5); }
.ett-country:focus-visible { outline: 2px solid #1faa6e; outline-offset: 2px; }

.ett-country.is-on {
  background: #1faa6e;
  border-color: #1faa6e;
  color: #0d2b1e;
}

.ett-flag { font-size: 15px; line-height: 1; }

@media (max-width: 560px) {
  .ett-country { padding: 4px 7px; font-size: 13px; }
  .ett-code { display: none; }
  .ett-flag { font-size: 17px; }
}

.ett-draft {
  background: #fdf3d8;
  border-bottom: 2px solid #d9b25e;
  color: #4a3c17;
  font-family: 'Barlow', -apple-system, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  padding: 9px 20px;
  text-align: center;
}

.ett-draft strong { color: #6b4e0d; }
