/* Override Archie's color variables */
:root {
  --color-primary: #0099cc !important;
  --color-primary-hover: #0099cc !important;
}

/* Increase post content font size - make it larger */
.post-content {
  font-size: 1.25rem;
  line-height: 1.7;
}

/* Set link underline color to cyan-blue */
a {
  text-decoration-thickness: 1px !important;
  text-decoration-color: #0099cc !important;
  background-image: none !important;
}

/* Make content links consistent */
.post-content a {
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px;
  text-decoration-color: #0099cc !important;
  background-image: none !important;
}

/* Override hover state - cyan-blue background with white text */
a:hover,
a:focus {
  background-color: #0099cc !important;
  color: #ffffff !important;
  outline: 2px solid #0099cc !important;
  outline-offset: 2px;
}

/* Text selection - white text on cyan-blue background */
::selection {
  background-color: #0099cc;
  color: white;
}

::-moz-selection {
  background-color: #0099cc;
  color: white;
}

/* Add spacing between date and author */
.post-date::after {
  content: " • ";
  margin: 0 0.3em;
}

/* Adjust tag spacing to be more subtle */
.post-tags {
  font-size: 0.9rem;
}

/* Make post titles more prominent */
.post-title {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

/* Replace ## with >> for link posts */
.post-title.link-post::before {
  content: ">> " !important;
  color: var(--color-primary);
  font-weight: bold;
}

/* Spacing for link post visit button */
.link-visit-button {
  margin: 1.5rem 0;
}
