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

body {
  /* font-family: system-ui, sans-serif; */
  background: #f9fafb;
  color: #333;
  padding: 2rem;
  line-height: 1.6;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1rem;
  color: #666;
}

/* Columns */
.columns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap; /* Enables wrapping for mobile */
}

.column {
  flex: 1;
  min-width: 150px;
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Responsive: Stack columns on small screens */
@media (orientation: portrait) {
  .columns {
    flex-direction: column;
  }
}

.button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background-color: #0066cc;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.2s ease;
  margin-top: 0.15em;
}

.button:hover {
  background-color: #004999;
}


/* Header as a horizontal flexbox */
.header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Avatar image */
.avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}




/* Header text area */
.header-text h1 {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
    text-align: left;
}

.header-text p {
  font-size: 1rem;
  color: #666;
}

/* Stack vertically on small screens */
@media (max-width: 600px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
.header-text h1 {
    text-align: center;
}

  .avatar {
    margin-bottom: 1rem;
  }
}

.highlight {
  color: #007acc;       /* a nice blue, change as you like */
  font-weight: 700;     /* make it bold */

  font-family: monospace; /* optional: monospace font to look like a handle */


  /* Align monospace better */
  vertical-align: baseline;   /* ensures it aligns to baseline */
  line-height: 1;             /* tighten line height */
  font-size: 1em;             /* same size as surrounding text */

  position: relative;
  top: -1px;  /* or 1px, tweak this value up/down to align */
}
.pretty-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.4em 0.6em;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  background-color: #f6f8fa;
  text-decoration: none;
  color: #24292f;
  font-family: sans-serif;
  font-size: 0.95em;
  transition: background-color 0.2s, box-shadow 0.2s;
}

.pretty-link img {
  display: block;
}

.pretty-link:hover {
  background-color: #eaecef;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.fancy-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.fancy-list li {
  display: flex;
  align-items: center;
  gap: 1.0em;
  margin-bottom: 0.5em;
}

.fancy-list li::before {
  content: "›"; /* Customize this if needed */
  color: #007acc;
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1;
}

/* .column h2 { */
/*   border-bottom: 1px solid #ccc; /\* light gray *\/ */
/*   padding-bottom: 0.1em; */
/*   margin-bottom: 0.4em; */
/*   font-size: 1.3em; */
/* } */

.column h2 {
  position: relative;
  padding-bottom: 0.1em;
  margin-bottom: 0.4em;
}

.column h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), transparent);
}
