@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  text-rendering: optimizeSpeed;
  line-height: 1.8;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Droid Sans", "Helvetica Neue", sans-serif;
  --color-bg: #F8F8F8;
  --color-default: #454545;
  --color-link: #454545;
  --color-border: #cccccc;
  --color-secondary: #777777;
  --color-bright: #CE624C;
}

.text-center {
  text-align: center;
}

html {
  background-color: #111111;
}

body {
  font-family: var(--font-sans);
  color: #EEEEEE;
  font-size: 18px;
  line-height: 1.6;
  padding: 1em;
  margin: 0 auto;
}

a,
a:visited {
  color: #EEEEEE;
  text-decoration-style: dotted;
}

a:hover {
  text-decoration-style: solid;
}
a:hover.hover-yellow {
  color: #FCD752 !important;
}
a:hover.hover-blue {
  color: #6184C6 !important;
}
a:hover.hover-pink {
  color: #FCA3B9 !important;
}

.yellow section strong,
.yellow section b,
.yellow section a {
  color: #FCD752;
}

.pink section strong,
.pink section b,
.pink section a {
  color: #FCA3B9;
}

.blue {
  color: #6184C6;
}
.blue section strong,
.blue section b,
.blue section a {
  color: #6184C6;
}

.hidden {
  opacity: 0;
  -webkit-transition: opacity 2s;
  -moz-transition: opacity 2s;
  -o-transition: opacity 2s;
  transition: opacity 2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  line-height: 1.2;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.75em;
}

h3 {
  font-size: 1.5em;
}

h4 {
  font-size: 1.25em;
}

nav {
  text-align: center;
  padding-top: 3em;
  padding-bottom: 3em;
}
nav a {
  margin-right: 1em;
  color: #EEEEEE;
}

p {
  margin-top: 0;
  margin-bottom: 2em;
  line-height: 1.8em;
}
p.small, p.small span.a {
  font-size: 0.75em;
}

ul,
ol {
  max-width: 500pt;
  margin-left: -15pt;
  line-height: 1.8em;
  margin-top: 0;
  margin-bottom: 2em;
}
ul ul,
ol ul {
  margin-left: -15pt;
}

ol {
  margin-left: auto;
}

li {
  margin-bottom: 0.5em;
  line-height: 1.6;
}

.flash {
  max-width: 500pt;
  margin: 0px auto;
  margin-bottom: 20px;
  padding: 10px;
}
.flash p {
  margin-bottom: auto;
  text-align: center;
  font-family: "Comic Sans MS", "Chalkboard SE", "Comic Neue", sans-serif;
}
.flash.notice {
  border: 1px solid #8DC47F;
}
.flash.error {
  border: 1px solid #D97876;
}

#main_content {
  display: flex;
  justify-content: center;
  padding: 0 4vw;
}
#main_content main {
  max-width: 500pt;
}
#main_content main.home section {
  margin-bottom: 50pt;
}
#main_content main.home .recent-posts {
  padding-left: 0;
  margin-left: 0;
}
#main_content main.home .recent-posts .blog-link-item {
  font-size: 1.1em;
  font-weight: bold;
}
#main_content main.home .recent-posts .list-of-tags {
  margin-top: 0px;
}
#main_content main.home .recent-posts .list-of-tags ul {
  margin-top: 10px;
}
#main_content main.home .blog-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
#main_content main.home .blog-item .blog-content {
  width: 100%;
}
#main_content main.home .blog-item .blog-content p {
  margin: 0;
}
#main_content main.home .blog-item .blog-image img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
@media (min-width: 767px) {
  #main_content main.home .blog-item {
    flex-direction: row;
    align-items: flex-start;
  }
  #main_content main.home .blog-item .blog-content {
    flex: 1;
    width: auto;
  }
  #main_content main.home .blog-item .blog-image {
    margin-right: 20px;
    width: 100px;
    height: 100px;
    overflow: hidden;
  }
  #main_content main.home .blog-item .blog-image img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
  }
}
#main_content main img {
  max-width: 100%;
}

section.image {
  padding-bottom: 20pt;
  max-width: 100%;
}

footer {
  padding-top: 10em;
  text-align: center;
}

#what-i-write-about-tags-container {
  display: none;
}

#what-i-write-about-tags-container.expanded {
  display: block;
}

.embed-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  margin: 3em 0;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

blockquote {
  border-left: 3px solid #6184C6;
  font-style: italic;
  line-height: 1.8em;
  margin: 1em 0;
  padding: 0 2em;
}
blockquote.main-quote {
  border-left: 3px solid #EEEEEE;
}
blockquote:before {
  position: absolute;
  top: 50%;
  left: -4px;
  height: 2em;
  background-color: #111111;
  width: 5px;
  margin-top: -1em;
}
blockquote:after {
  position: absolute;
  top: 50%;
  left: -0.5em;
  color: #6184C6;
  width: 1em;
  margin-top: -0.5em;
}

cite {
  display: block;
  font-size: 0.75em;
  line-height: 1.8em;
  margin-top: 1em;
}

.list-of-tags {
  margin-top: 20pt;
}
.list-of-tags ul {
  list-style-type: none;
  margin: 0;
  margin-top: 20px;
  padding: 0;
  font-size: 0.75em;
}
.list-of-tags li {
  display: inline-block;
  margin-right: 10px;
}
.list-of-tags li a {
  text-decoration: none;
  background-color: #EEEEEE;
  color: #111111;
  padding: 5px 10px;
  border-radius: 20px;
}
.list-of-tags li a:hover {
  background-color: #6184C6;
  color: #EEEEEE;
}

.list-of-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-of-posts li {
  margin-bottom: 1.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 0.2rem;
  align-items: baseline;
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
}
.list-of-posts li hr {
  align-self: center;
  margin: 0.5rem;
  border-bottom: 1px dashed #EEEEEE;
  transition: all 0.2s ease-in-out;
}
.list-of-posts li small {
  justify-self: end;
  transition: all 0.2s ease-in-out;
  color: #EEEEEE;
}
.list-of-posts a {
  color: #EEEEEE;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.list-of-posts a:hover li hr {
  border-bottom: 1px dashed #6184C6;
}
.list-of-posts a.highlight li {
  color: var(--color-bright);
}

table {
  text-align: left;
  overflow: hidden;
  width: 90%;
  margin: 0 auto;
  display: table;
  padding: 0 0 8em 0;
}
table th h1 {
  font-weight: bold;
  font-size: 1em;
  text-align: left;
  color: #185875;
}
table td {
  font-weight: normal;
  font-size: 1em;
  -webkit-box-shadow: 0 2px 2px -2px #0E1119;
  -moz-box-shadow: 0 2px 2px -2px #0E1119;
  box-shadow: 0 2px 2px -2px #0E1119;
}
table td,
table th {
  padding-bottom: 2%;
  padding-top: 2%;
  padding-left: 2%;
}
table tr:nth-child(odd) {
  background-color: #323C50;
}
table tr:nth-child(even) {
  background-color: #2C3446;
}
table th {
  background-color: #1F2739;
}
table tr:hover {
  background-color: #464A52;
  -webkit-box-shadow: 0 6px 6px -6px #0E1119;
  -moz-box-shadow: 0 6px 6px -6px #0E1119;
  box-shadow: 0 6px 6px -6px #0E1119;
}
table td:hover {
  background-color: #FCD752;
  color: #403E10;
  transition-delay: 0s;
  transition-duration: 0.4s;
  transition-property: all;
  transition-timing-function: line;
}
table .dimmed-text {
  opacity: 0.5;
}

article.blog h1 {
  margin-bottom: 0;
}
article.blog header {
  margin-bottom: 1em;
}
article.blog footer {
  padding-top: 1em;
}
article.blog pre {
  background-color: #202020;
  padding: 10pt;
  overflow: scroll;
}
article.blog pre code {
  white-space: pre-wrap;
}
article.blog .footnotes hr {
  border: none;
  height: 3px;
  background-color: #6184C6;
  margin: 2em auto;
  width: 80%;
}
article.blog .hero-image {
  padding-bottom: 20pt;
}
article.blog .tags-form .tags-input {
  margin-top: 10pt;
  width: 100%;
}
article.blog .tags-form .loading-indicator {
  display: none;
}
article.blog .tags-form .success-indicator {
  display: none;
}
article.blog .tags-form .error-indicator {
  display: none;
}

.article-division {
  margin: 8em 0;
  border: 0;
  text-align: center;
}
.article-division:before {
  content: "•••";
  font-size: 26px;
  color: #EEEEEE;
}
.article-division.blue:before {
  color: #6184C6;
}
.article-division.pink:before {
  color: #FCA3B9;
}
.article-division.yellow:before {
  color: #FCD752;
}

.pagination {
  display: flex;
  justify-content: center;
}
.pagination a {
  color: #EEEEEE;
  padding: 8px 16px;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
  margin: 0 10pt;
  text-decoration: none;
}
.pagination a:hover {
  background-color: #6184C6;
}
.pagination .disabled {
  display: none;
}

.blog-form {
  margin-bottom: 10pt;
}
.blog-form label {
  display: block;
  width: 100%;
}
.blog-form .field {
  margin-bottom: 10pt;
}
.blog-form input[type=text] {
  width: 100%;
}
.blog-form textarea {
  width: 100%;
  height: 300pt;
}

.original-posts {
  margin-left: 0pt;
  padding-left: 0pt;
}
.original-posts li {
  display: block;
  list-style-type: none;
  margin-bottom: 80pt;
}
.original-posts li .blog-image {
  margin: 0px auto;
}
.original-posts li .blog-link-title {
  font-size: 1.25em;
  font-weight: bold;
}

#untappd .title {
  text-align: center;
}
#untappd a,
#untappd a:link,
#untappd a:visited,
#untappd a:hover,
#untappd a:active {
  color: #EEEEEE;
}
#untappd #checkins-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100vw;
}
#untappd #checkins-container .checkin {
  border: 1px solid #ccc;
  border-radius: 5pt;
  margin-bottom: 20pt;
  max-width: 320px;
  background-color: #222222;
}
#untappd #checkins-container .checkin .time-and-place-container .date {
  text-align: center;
  color: #EEEEEE;
  margin: 1em 0;
}
#untappd #checkins-container .checkin .image-container {
  display: inline-flex;
  position: relative;
}
#untappd #checkins-container .checkin .image-container .image img {
  margin: 0px auto;
  max-width: 100%;
  padding: 0;
}
#untappd #checkins-container .checkin .image-container .venue {
  background-color: rgba(0, 0, 0, 0.2);
  color: white;
  position: absolute;
  top: 1;
  left: 0;
  right: 0;
}
#untappd #checkins-container .checkin .image-container .venue p {
  padding: 0 10pt;
  margin: 0;
}
#untappd #checkins-container .checkin .image-container .venue .name {
  padding-top: 10pt;
}
#untappd #checkins-container .checkin .image-container .venue .location {
  padding-bottom: 10pt;
}
#untappd #checkins-container .checkin .beer-container {
  display: flex;
  align-items: center;
  padding: 0 10pt;
}
#untappd #checkins-container .checkin .beer-container .logo {
  flex-basis: 20%;
  padding-right: 10pt;
}
#untappd #checkins-container .checkin .beer-container .logo img {
  padding: 0;
  max-width: 100%;
}
#untappd #checkins-container .checkin .beer-container .details {
  flex-basis: 80%;
}
#untappd #checkins-container .checkin .beer-container .details p {
  margin: 0;
}
#untappd #checkins-container .checkin .beer-container .details .beer {
  font-weight: 600;
  font-size: 12pt;
}
#untappd #checkins-container .checkin .beer-container .details .brewery,
#untappd #checkins-container .checkin .beer-container .details .style {
  font-size: 10pt;
}
#untappd #checkins-container .checkin .rating-container {
  padding: 0 10pt;
}
#untappd #checkins-container .checkin .comment-container {
  padding: 0 10pt;
}
#untappd #checkins-container .checkin .badges-container {
  padding: 0 10pt;
}
#untappd #checkins-container .checkin .badges-container ul {
  list-style-type: none;
  padding: 0pt;
  margin-left: 0pt;
}
#untappd #checkins-container .checkin .badges-container ul li {
  display: flex;
  margin-bottom: 10pt;
}
#untappd #checkins-container .checkin .badges-container ul li .badge {
  display: flex;
  justify-content: center;
  align-items: middle;
}
#untappd #checkins-container .checkin .badges-container ul li img {
  display: inline-block;
  max-width: 20px;
  max-height: 20px;
  margin-right: 5pt;
  padding: 0;
}
#untappd #checkins-container .checkin .badges-container ul li {
  font-size: 8pt;
}

.button {
  color: #EEEEEE;
  padding: 8px 16px;
  transition: background-color 0.3s;
  border: 1px solid #ddd;
  text-decoration: none;
}
.button:hover {
  background-color: #6184C6;
}

@media (max-width: 980px) {
  article.blog blockquote {
    font-size: 1em;
    margin: 1.1em -2em;
  }
}
@media (max-width: 767px) {
  nav {
    padding-bottom: 1em;
  }
  article.blog blockquote {
    border-top: 2px solid #6184C6;
    border-bottom: 2px solid #6184C6;
    border-left: none;
    margin: 1.5em 0;
    padding: 1.5em 1em;
  }
  article.blog:before {
    left: 50%;
    top: 0;
    height: 4px;
    margin-top: -3px;
    margin-left: -1em;
    width: 2em;
  }
  article.blog:after {
    font-size: 0.75em;
    left: 50%;
    top: 0;
    margin-top: -0.5em;
    margin-left: -0.5em;
  }
  #main_content main {
    max-width: 100%;
  }
}
#workout-tracker {
  width: 100%;
  max-width: 500pt;
  margin: 0 auto;
  text-align: center;
}
#workout-tracker button {
  font-size: 1.5rem;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#workout-tracker #workout-button {
  margin-top: 50px;
}
#workout-tracker button.start {
  background-color: green;
  color: white;
}
#workout-tracker button.complete {
  background-color: red;
  color: white;
}
#workout-tracker #elapsed-time {
  margin-top: 10px;
  font-size: 1.2rem;
}
#workout-tracker #burpee-count {
  margin-top: 10px;
  font-size: 3rem;
}

.situp-stats {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.situp-stats li {
  margin-bottom: 15px;
}
.situp-stats li strong {
  display: block;
  margin-bottom: 5px;
}
.situp-stats .progress-container {
  position: relative;
  width: 100%;
  height: 20px;
  background-color: #f0f0f0;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}
.situp-stats .progress-bar {
  height: 100%;
  background-color: #FCD752;
  transition: width 0.3s ease;
}
.situp-stats .progress-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-weight: bold;
  font-size: 12px;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.8);
}

.tag-page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.tag-page h1 {
  text-align: center;
  margin-bottom: 2rem;
}
.tag-page h1 .blue {
  color: #6184C6;
}

.related-tags {
  margin-bottom: 2rem;
  text-align: center;
}
.related-tags .related-label {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}
.related-tags .tag-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.mosaic-container {
  width: 100%;
  margin-bottom: 3rem;
}

.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: auto;
  gap: 1.5rem;
  margin: 0 auto;
}

.mosaic-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}
.mosaic-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.mosaic-item .card-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.mosaic-item .card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mosaic-item .tag-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mosaic-item .tag-pills .tag-pill {
  font-size: 0.7rem;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  background-color: #EEEEEE;
  color: #111111;
}
.mosaic-item .tag-pills .tag-pill:hover {
  background-color: #6184C6;
  color: #EEEEEE;
}
.mosaic-item .expand-button {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 0.5rem;
  cursor: pointer;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.3) 100%);
  transition: background 0.3s ease;
}
.mosaic-item .expand-button:hover {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
}
.mosaic-item .expand-button .expand-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(238, 238, 238, 0.2);
  font-size: 18px;
  transition: transform 0.3s ease;
}
.mosaic-item .expanded-content {
  display: none;
  padding: 1.5rem;
  background-color: rgba(238, 238, 238, 0.05);
  border-top: 1px solid rgba(238, 238, 238, 0.1);
}
.mosaic-item.expanded {
  grid-row: span 2;
}
.mosaic-item.expanded .expand-button .expand-icon {
  transform: rotate(45deg);
}
.mosaic-item.expanded .expanded-content {
  display: block;
}

.quote-card {
  background-color: rgba(97, 132, 198, 0.15);
  border-left: 4px solid #6184C6;
}
.quote-card .card-content {
  position: relative;
}
.quote-card .quote-symbol {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 3rem;
  opacity: 0.2;
  color: #6184C6;
  font-family: serif;
}
.quote-card .quote-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.quote-card .quote-author {
  text-align: right;
  font-weight: bold;
  font-size: 0.9rem;
}
.quote-card .expanded-content .full-quote {
  margin-bottom: 1.5rem;
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.6;
}
.quote-card .expanded-content .share-section {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  justify-content: center;
}
.quote-card .expanded-content .share-section button {
  background: none;
  border: 1px solid #EEEEEE;
  color: #EEEEEE;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
}
.quote-card .expanded-content .share-section button:hover {
  background-color: rgba(238, 238, 238, 0.1);
}

.blog-card {
  background-color: rgba(252, 215, 82, 0.15);
  border-left: 4px solid #FCD752;
}
.blog-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #FCD752;
}
.blog-card .card-image {
  margin-bottom: 1rem;
}
.blog-card .card-image img {
  border-radius: 6px;
  width: 100%;
  height: auto;
}
.blog-card .excerpt {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.blog-card .video-indicator {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #EEEEEE;
}
.blog-card .expanded-content .full-image {
  margin-bottom: 1.5rem;
}
.blog-card .expanded-content .full-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.blog-card .expanded-content .embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin: 1.5rem 0;
}
.blog-card .expanded-content .embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.blog-card .expanded-content .extended-excerpt {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.blog-card .expanded-content .action-buttons {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
}
.blog-card .expanded-content .action-buttons .primary-button {
  background-color: #FCD752;
  color: #111111;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.blog-card .expanded-content .action-buttons .primary-button:hover {
  background-color: rgb(251.1306818182, 203.4090909091, 31.8693181818);
}

.linked-post-card {
  background-color: rgba(252, 163, 185, 0.15);
  border-left: 4px solid #FCA3B9;
}
.linked-post-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #FCA3B9;
}
.linked-post-card .domain {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #FCA3B9;
  display: flex;
  align-items: center;
}
.linked-post-card .domain .link-icon {
  margin-right: 0.5rem;
}
.linked-post-card .excerpt {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}
.linked-post-card .expanded-content .full-image {
  margin-bottom: 1.5rem;
}
.linked-post-card .expanded-content .full-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
.linked-post-card .expanded-content .commentary {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.linked-post-card .expanded-content .action-buttons {
  margin: 1.5rem 0;
  display: flex;
  gap: 1rem;
}
.linked-post-card .expanded-content .action-buttons .primary-button {
  background-color: #FCA3B9;
  color: #EEEEEE;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.linked-post-card .expanded-content .action-buttons .primary-button:hover {
  background-color: rgb(250.3894736842, 113.6105263158, 147.4210526316);
}
.linked-post-card .expanded-content .action-buttons .secondary-button {
  border: 1px solid #FCA3B9;
  color: #FCA3B9;
  background: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.linked-post-card .expanded-content .action-buttons .secondary-button:hover {
  background-color: rgba(252, 163, 185, 0.1);
}

@media (max-width: 767px) {
  .mosaic-grid {
    grid-template-columns: 1fr;
  }
  .mosaic-item.expanded {
    grid-row: span 1;
  }
  .action-buttons {
    flex-direction: column;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .mosaic-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mosaic-item.expanded {
    grid-column: span 2;
  }
}
/* GitHub-style Contribution Graph */
.github-style-graph {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
  margin-top: 10px;
  max-width: 700px;
}

.day-square-wrapper {
  position: relative;
}

.day-square-wrapper:hover::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

.day-square {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(128, 128, 128, 0.4);
  /* Dark grey border */
}

.day-square.completed {
  background-color: #39d353;
  /* GitHub-style green */
  border-color: #26a641;
}

.day-square.completed-gtx {
  background-color: #007bff;
  /* Blue */
  border-color: #0056b3;
}

.day-square.completed-both {
  background-color: #20c997;
  /* Teal */
  border-color: #17a2b8;
}

/* You can add different intensity levels if needed */
.day-square.completed-1 {
  background-color: #9be9a8;
  border-color: #9be9a8;
}

.day-square.completed-2 {
  background-color: #40c463;
  border-color: #40c463;
}

.day-square.completed-3 {
  background-color: #30a14e;
  border-color: #30a14e;
}

.day-square.completed-4 {
  background-color: #216e39;
  border-color: #216e39;
}

/* Mobile responsive adjustment */
@media (max-width: 768px) {
  .github-style-graph {
    gap: 2px;
  }
  .day-square {
    width: 10px;
    height: 10px;
  }
}
.workout-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .workout-buttons {
    flex-direction: row;
  }
}

.music-library-progress .progress-bar-container {
  display: flex;
  width: 100%;
  height: 25px;
  background-color: #333;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #444;
}
.music-library-progress .progress-bar-segment {
  height: 100%;
  transition: width 0.5s ease-in-out;
}
.music-library-progress .tagged {
  background-color: #6184C6;
}
.music-library-progress .removed {
  background-color: #D97876;
}
.music-library-progress .other {
  background-color: #8DC47F;
}

:root {
  --tagify-dd-color-primary:rgb(53,149,246);
  --tagify-dd-bg-color:white;
  --tagify-dd-item-pad:.3em .5em;
  --tagify-dd-max-height:300px;
}

.tagify {
  --tags-disabled-bg:#F1F1F1;
  --tags-border-color:#DDD;
  --tags-hover-border-color:#CCC;
  --tags-focus-border-color:#3595f6;
  --tag-border-radius:3px;
  --tag-bg:#E5E5E5;
  --tag-hover:#D3E2E2;
  --tag-text-color:black;
  --tag-text-color--edit:black;
  --tag-pad:0.3em 0.5em;
  --tag-inset-shadow-size:1.1em;
  --tag-invalid-color:#D39494;
  --tag-invalid-bg:rgba(211, 148, 148, 0.5);
  --tag--min-width:1ch;
  --tag--max-width:100%;
  --tag-hide-transition:0.3s;
  --tag-remove-bg:rgba(211, 148, 148, 0.3);
  --tag-remove-btn-color:black;
  --tag-remove-btn-bg:none;
  --tag-remove-btn-bg--hover:#c77777;
  --input-color:inherit;
  --placeholder-color:rgba(0, 0, 0, 0.4);
  --placeholder-color-focus:rgba(0, 0, 0, 0.25);
  --loader-size:.8em;
  --readonly-striped:1;
  display: inline-flex;
  align-items: flex-start;
  flex-wrap: wrap;
  border: 1px solid var(--tags-border-color);
  padding: 0;
  line-height: 0;
  cursor: text;
  outline: 0;
  position: relative;
  box-sizing: border-box;
  transition: 0.1s;
}

@keyframes tags--bump {
  30% {
    transform: scale(1.2);
  }
}
@keyframes rotateLoader {
  to {
    transform: rotate(1turn);
  }
}
.tagify:hover:not(.tagify--focus):not(.tagify--invalid) {
  --tags-border-color:var(--tags-hover-border-color);
}

.tagify[disabled] {
  background: var(--tags-disabled-bg);
  filter: saturate(0);
  opacity: 0.5;
  pointer-events: none;
}

.tagify[disabled].tagify--select, .tagify[readonly].tagify--select {
  pointer-events: none;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select), .tagify[readonly]:not(.tagify--mix):not(.tagify--select) {
  cursor: default;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) > .tagify__input, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) > .tagify__input {
  visibility: hidden;
  width: 0;
  margin: 5px 0;
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div {
  padding: var(--tag-pad);
}

.tagify[disabled]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before, .tagify[readonly]:not(.tagify--mix):not(.tagify--select) .tagify__tag > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify[disabled] .tagify__tag__removeBtn, .tagify[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify--loading .tagify__input > br:last-child {
  display: none;
}

.tagify--loading .tagify__input::before {
  content: none;
}

.tagify--loading .tagify__input::after {
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  content: "" !important;
  margin: -2px 0 -2px 0.5em;
}

.tagify--loading .tagify__input:empty::after {
  margin-left: 0;
}

.tagify + input, .tagify + textarea {
  position: absolute !important;
  left: -9999em !important;
  transform: scale(0) !important;
}

.tagify__tag {
  display: inline-flex;
  align-items: center;
  max-width: calc(var(--tag--max-width) - 10px);
  margin-inline: 5px 0;
  margin-block: 5px;
  position: relative;
  z-index: 1;
  outline: 0;
  line-height: normal;
  cursor: default;
  transition: 0.13s ease-out;
}

.tagify__tag > div {
  flex: 1;
  vertical-align: top;
  box-sizing: border-box;
  max-width: 100%;
  padding: var(--tag-pad);
  color: var(--tag-text-color);
  line-height: inherit;
  border-radius: var(--tag-border-radius);
  white-space: nowrap;
  transition: 0.13s ease-out;
}

.tagify__tag > div > * {
  white-space: pre-wrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: top;
  min-width: var(--tag--min-width);
  max-width: var(--tag--max-width);
  transition: 0.8s ease, 0.1s color;
}

.tagify__tag > div > [contenteditable] {
  outline: 0;
  -webkit-user-select: text;
  user-select: text;
  cursor: text;
  margin: -2px;
  padding: 2px;
  max-width: 350px;
}

.tagify__tag > div > :only-child {
  width: 100%;
}

.tagify__tag > div::before {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: var(--tag-bg-inset, 0);
  z-index: -1;
  pointer-events: none;
  transition: 120ms ease;
  animation: tags--bump 0.3s ease-out 1;
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-bg) inset;
}

.tagify__tag:focus div::before, .tagify__tag:hover:not([readonly]) div::before {
  --tag-bg-inset:-2.5px;
  --tag-bg:var(--tag-hover);
}

.tagify__tag--loading {
  pointer-events: none;
}

.tagify__tag--loading .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag--loading::after {
  --loader-size:.4em;
  content: "";
  vertical-align: middle;
  opacity: 1;
  width: 0.7em;
  height: 0.7em;
  width: var(--loader-size);
  height: var(--loader-size);
  min-width: 0;
  border: 3px solid;
  border-color: #eee #bbb #888 transparent;
  border-radius: 50%;
  animation: rotateLoader 0.4s infinite linear;
  margin: 0 0.5em 0 -0.1em;
}

.tagify__tag--flash div::before {
  animation: none;
}

.tagify__tag--hide {
  width: 0 !important;
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
  opacity: 0;
  transform: scale(0);
  transition: var(--tag-hide-transition);
  pointer-events: none;
}

.tagify__tag--hide > div > * {
  white-space: nowrap;
}

.tagify__tag.tagify--noAnim > div::before {
  animation: none;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div > span {
  opacity: 0.5;
}

.tagify__tag.tagify--notAllowed:not(.tagify__tag--editable) div::before {
  --tag-bg:var(--tag-invalid-bg);
  transition: 0.2s;
}

.tagify__tag[readonly] .tagify__tag__removeBtn {
  display: none;
}

.tagify__tag[readonly] > div::before {
  animation: readonlyStyles 1s calc(-1s * (var(--readonly-striped) - 1)) paused;
}

@keyframes readonlyStyles {
  0% {
    background: linear-gradient(45deg, var(--tag-bg) 25%, transparent 25%, transparent 50%, var(--tag-bg) 50%, var(--tag-bg) 75%, transparent 75%, transparent) 0/5px 5px;
    box-shadow: none;
    filter: brightness(0.95);
  }
}
.tagify__tag--editable > div {
  color: var(--tag-text-color--edit);
}

.tagify__tag--editable > div::before {
  box-shadow: 0 0 0 2px var(--tag-hover) inset !important;
}

.tagify__tag--editable > .tagify__tag__removeBtn {
  pointer-events: none;
}

.tagify__tag--editable > .tagify__tag__removeBtn::after {
  opacity: 0;
  transform: translateX(100%) translateX(5px);
}

.tagify__tag--editable.tagify--invalid > div::before {
  box-shadow: 0 0 0 2px var(--tag-invalid-color) inset !important;
}

.tagify__tag__removeBtn {
  order: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  cursor: pointer;
  font: 14px/1 Arial;
  background: var(--tag-remove-btn-bg);
  color: var(--tag-remove-btn-color);
  width: 14px;
  height: 14px;
  margin-inline: auto 4.6666666667px;
  overflow: hidden;
  transition: 0.2s ease-out;
}

.tagify__tag__removeBtn::after {
  content: "×";
  transition: 0.3s, color 0s;
}

.tagify__tag__removeBtn:hover {
  color: #fff;
  background: var(--tag-remove-btn-bg--hover);
}

.tagify__tag__removeBtn:hover + div > span {
  opacity: 0.5;
}

.tagify__tag__removeBtn:hover + div::before {
  box-shadow: 0 0 0 var(--tag-inset-shadow-size) var(--tag-remove-bg, rgba(211, 148, 148, 0.3)) inset !important;
  transition: box-shadow 0.2s;
}

.tagify:not(.tagify--mix) .tagify__input br {
  display: none;
}

.tagify:not(.tagify--mix) .tagify__input * {
  display: inline;
  white-space: nowrap;
}

.tagify__input {
  flex-grow: 1;
  display: inline-block;
  min-width: 110px;
  margin: 5px;
  padding: var(--tag-pad);
  line-height: normal;
  position: relative;
  white-space: pre-wrap;
  color: var(--input-color);
  box-sizing: inherit;
}

.tagify__input:empty::before {
  position: static;
}

.tagify__input:focus {
  outline: 0;
}

.tagify__input:focus::before {
  transition: 0.2s ease-out;
  opacity: 0;
  transform: translatex(6px);
}

@supports (-ms-ime-align: auto) {
  .tagify__input:focus::before {
    display: none;
  }
}
.tagify__input:focus:empty::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  color: rgba(0, 0, 0, 0.25);
  color: var(--placeholder-color-focus);
}

@-moz-document url-prefix() {
  .tagify__input:focus:empty::after {
    display: none;
  }
}
.tagify__input::before {
  content: attr(data-placeholder);
  height: 1em;
  line-height: 1em;
  margin: auto 0;
  z-index: 1;
  color: var(--placeholder-color);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  position: absolute;
}

.tagify__input::after {
  content: attr(data-suggest);
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  min-width: calc(100% - 1.5em);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: pre;
  color: var(--tag-text-color);
  opacity: 0.3;
  pointer-events: none;
  max-width: 100px;
}

.tagify__input .tagify__tag {
  margin: 0 1px;
}

.tagify--mix {
  display: block;
}

.tagify--mix .tagify__input {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  line-height: 1.5;
  display: block;
}

.tagify--mix .tagify__input::before {
  height: auto;
  display: none;
  line-height: inherit;
}

.tagify--mix .tagify__input::after {
  content: none;
}

.tagify--select {
  cursor: default;
}

.tagify--select::after {
  content: ">";
  opacity: 0.5;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  font: 16px monospace;
  line-height: 8px;
  height: 8px;
  pointer-events: none;
  transform: translate(-150%, -50%) scaleX(1.2) rotate(90deg);
  transition: 0.2s ease-in-out;
}

.tagify--select[aria-expanded=true]::after {
  transform: translate(-150%, -50%) rotate(270deg) scaleY(1.2);
}

.tagify--select .tagify__tag {
  flex: 1;
  max-width: none;
  margin-inline-end: 2em;
  margin-block: 0;
  padding-block: 5px;
  cursor: text;
}

.tagify--select .tagify__tag div::before {
  display: none;
}

.tagify--select .tagify__tag + .tagify__input {
  display: none;
}

.tagify--empty .tagify__input::before {
  transition: 0.2s ease-out;
  opacity: 1;
  transform: none;
  display: inline-block;
  width: auto;
}

.tagify--mix .tagify--empty .tagify__input::before {
  display: inline-block;
}

.tagify--focus {
  --tags-border-color:var(--tags-focus-border-color);
  transition: 0s;
}

.tagify--invalid {
  --tags-border-color:#D39494;
}

.tagify__dropdown {
  position: absolute;
  z-index: 9999;
  transform: translateY(-1px);
  border-top: 1px solid var(--tagify-dd-color-primary);
  overflow: hidden;
}

.tagify__dropdown[dir=rtl] {
  transform: translate(-100%, -1px);
}

.tagify__dropdown[placement=top] {
  margin-top: 0;
  transform: translateY(-100%);
}

.tagify__dropdown[placement=top] .tagify__dropdown__wrapper {
  border-top-width: 1.1px;
  border-bottom-width: 0;
}

.tagify__dropdown[position=text] {
  box-shadow: 0 0 0 3px rgba(var(--tagify-dd-color-primary), 0.1);
  font-size: 0.9em;
}

.tagify__dropdown[position=text] .tagify__dropdown__wrapper {
  border-width: 1px;
}

.tagify__dropdown__wrapper {
  max-height: var(--tagify-dd-max-height);
  overflow: hidden;
  overflow-x: hidden;
  background: var(--tagify-dd-bg-color);
  border: 1px solid;
  border-color: var(--tagify-dd-color-primary);
  border-bottom-width: 1.5px;
  border-top-width: 0;
  box-shadow: 0 2px 4px -2px rgba(0, 0, 0, 0.2);
  transition: 0.3s cubic-bezier(0.5, 0, 0.3, 1), transform 0.15s;
  animation: dd-wrapper-show 0s 0.3s forwards;
}

@keyframes dd-wrapper-show {
  to {
    overflow-y: auto;
  }
}
.tagify__dropdown__header:empty {
  display: none;
}

.tagify__dropdown__footer {
  display: inline-block;
  margin-top: 0.5em;
  padding: var(--tagify-dd-item-pad);
  font-size: 0.7em;
  font-style: italic;
  opacity: 0.5;
}

.tagify__dropdown__footer:empty {
  display: none;
}

.tagify__dropdown--initial .tagify__dropdown__wrapper {
  max-height: 20px;
  transform: translateY(-1em);
}

.tagify__dropdown--initial[placement=top] .tagify__dropdown__wrapper {
  transform: translateY(2em);
}

.tagify__dropdown__item {
  box-sizing: border-box;
  padding: var(--tagify-dd-item-pad);
  margin: 1px;
  white-space: pre-wrap;
  cursor: pointer;
  border-radius: 2px;
  position: relative;
  outline: 0;
  max-height: 60px;
  max-width: 100%;
  line-height: normal;
}

.tagify__dropdown__item--active {
  background: var(--tagify-dd-color-primary);
  color: #fff;
}

.tagify__dropdown__item:active {
  filter: brightness(105%);
}

.tagify__dropdown__item--hidden {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0 1px;
  pointer-events: none;
  overflow: hidden;
  max-height: 0;
  transition: var(--tagify-dd-item--hidden-duration, 0.3s) !important;
}

.tagify__dropdown__item--hidden > * {
  transform: translateY(-100%);
  opacity: 0;
  transition: inherit;
}
