/*
Theme Name:        NeoPop Brutalism
Theme URI:         https://github.com/chrismccoy/neopop
Description:       A Neo-Brutalist Hyper Pop theme built with Tailwind CSS. High contrast, hard shadows, and aggressive typography.
Author:            Chris McCoy
Author URI:        https://github.com/chrismccoy
Version:           1.0
Text Domain:       neopop
*/

/**
 * =============================================================================
 * 1. RESET & CORE PHYSICS
 * =============================================================================
 */

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #f3f3f3;
  color: #1a1a1a;
  font-family: "Helvetica", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  line-height: 1.5;
}

* {
  box-sizing: inherit;
}

::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  border-left: 3px solid #000000;
}

::-webkit-scrollbar-thumb {
  background: #000000;
  border: 3px solid #ffffff;
}

::-webkit-scrollbar-thumb:hover {
  background: #ff00ff;
}

/**
 * =============================================================================
 * 2. STRUCTURAL CONTAINERS & ALIGNMENTS (Audit Compliance)
 * =============================================================================
 */

#content {
  flex-grow: 1;
  width: 100%;
  margin: 0 auto;
}

#page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site {
  display: flex;
  flex-direction: column;
}

.site-content {
  display: block;
  width: 100%;
}

.site-main {
  display: block;
  padding: 2rem 0;
}

.content-area {
  display: block;
  width: 100%;
}

.default-max-width {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.wide-max-width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.full-max-width {
  max-width: 100%;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignfull {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.alignleft {
  float: left;
  margin-right: 2rem;
  margin-bottom: 2rem;
}

.alignright {
  float: right;
  margin-left: 2rem;
  margin-bottom: 2rem;
}

.alignwide {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.clear {
  clear: both;
}

/**
 * =============================================================================
 * 3. BRANDING & HEADER (Audit Compliance)
 * =============================================================================
 */

.site-header {
  border-bottom: 8px solid #000000;
  background-color: #00ffff;
  padding: 4rem 2rem;
  position: relative;
}

.site-branding {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 2rem;
  box-shadow: 8px 8px 0px 0px #000000;
  transform: rotate(-1.5deg);
  display: inline-block;
}

.site-title {
  margin: 0;
  font-size: 3rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-title a {
  color: #000000;
  text-decoration: none;
  background: none !important;
  box-shadow: none !important;
}

.site-description {
  margin-top: 1rem;
  background: #000000;
  color: #ffffff;
  font-family: monospace;
  font-weight: 900;
  padding: 5px 12px;
  display: inline-block;
  text-transform: uppercase;
}

.site-logo {
  display: block;
  margin-bottom: 1rem;
}

.custom-logo-link {
  display: inline-block;
  border: 4px solid #000000;
}

.custom-logo {
  max-width: 200px;
  height: auto;
  display: block;
}

/**
 * =============================================================================
 * 4. NAVIGATION & MENUS (Audit Compliance)
 * =============================================================================
 */

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 1.5rem;
}

.primary-menu {
  display: flex;
  gap: 1.5rem;
}

.primary-menu-container {
  display: block;
  width: 100%;
}

.menu-item {
  position: relative;
  display: block;
}

.menu-item a {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 0.75rem 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 6px 6px 0px 0px #000000;
  text-decoration: none;
  color: #000000;
}

.menu-item a:hover {
  background-color: #ccff00;
  transform: translate(2px, 2px);
  box-shadow: 4px 4px 0px 0px #000000;
}

.current-menu-item > a {
  background-color: #ff00ff !important;
  color: #ffffff !important;
}

.current_page_item > a {
  background-color: #ff00ff !important;
  color: #ffffff !important;
}

.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 4px solid #000000;
  padding: 1.5rem;
  box-shadow: 10px 10px 0px 0px #000000;
  min-width: 260px;
  z-index: 999;
}

.children {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 1rem;
}

.menu-item-has-children:hover > .sub-menu {
  display: block;
}

.menu-item-description {
  display: block;
  font-size: 0.8rem;
  font-family: monospace;
  font-weight: 700;
  margin-top: 0.5rem;
}

.menu-button-container {
  display: none;
}

#primary-mobile-menu {
  background: #000000;
  color: #ffffff;
  border: 4px solid #000000;
  padding: 1rem 2rem;
  font-weight: 900;
  text-transform: uppercase;
}

#toggle-menu {
  display: none;
}

.dropdown-icon {
  display: inline-block;
  vertical-align: middle;
}

.icon-plus {
  display: inline-block;
}

.icon-minus {
  display: inline-block;
}

.submenu-reposition-left {
  left: 0;
}

.submenu-reposition-right {
  right: 0;
}

/**
 * =============================================================================
 * 5. POSTS & ENTRIES (Audit Compliance)
 * =============================================================================
 */

article.post {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 4rem;
  margin-bottom: 6rem;
  box-shadow: 12px 12px 0px 0px #000000;
}

article.page {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 4rem;
  margin-bottom: 6rem;
}

.entry-header {
  border-bottom: 6px solid #000000;
  padding-bottom: 2rem;
  margin-bottom: 3rem;
}

.entry-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
}

.entry-title a {
  text-decoration: none;
}

.entry-title a:hover {
  color: #ff00ff;
  text-decoration: underline;
  text-decoration-thickness: 8px;
}

.entry-content {
  font-size: 1.25rem;
  line-height: 1.6;
}

.entry-summary {
  font-size: 1.25rem;
  line-height: 1.6;
}

.entry-footer {
  border-top: 4px dashed #000000;
  padding-top: 2rem;
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
}

.post-thumbnail {
  display: block;
  margin-bottom: 3rem;
}

.post-thumbnail img {
  border: 4px solid #000000;
  box-shadow: 10px 10px 0px 0px #000000;
  width: 100%;
  height: auto;
}

.sticky {
  border: 10px solid #ff00ff !important;
  box-shadow: 20px 20px 0px 0px #000000 !important;
}

.byline {
  font-weight: 900;
  text-transform: uppercase;
}

.posted-on {
  font-weight: 900;
  text-transform: uppercase;
}

.cat-links {
  display: block;
}

.tags-links {
  display: block;
}

/**
 * =============================================================================
 * 6. POST FORMATS (From 1.css & Audit)
 * =============================================================================
 */

.format-aside {
  background-color: #fff000 !important;
}

.format-gallery {
  background-color: #ffffff;
}

.format-image {
  background-color: #ffffff;
}

.format-link {
  background-color: #00ffff !important;
}

.format-link a {
  font-size: 2.5rem;
  font-weight: 900;
}

.format-status {
  background-color: #fff000 !important;
}

.format-video {
  background-color: #000000 !important;
  color: #ffffff;
}

/**
 * =============================================================================
 * 7. COMMENTS SYSTEM (Audit Compliance)
 * =============================================================================
 */

.comments-area {
  margin-top: 5rem;
  border-top: 10px solid #000000;
  padding-top: 4rem;
}

.comments-title {
  font-size: 2.5rem;
  font-weight: 900;
  background: #000000;
  color: #ffffff;
  display: inline-block;
  padding: 10px 20px;
  transform: rotate(-1deg);
  margin-bottom: 3rem;
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 3rem;
  margin-bottom: 4rem;
  box-shadow: 10px 10px 0px 0px #000000;
}

.comment-body {
  position: relative;
}

.comment-author {
  margin-bottom: 1.5rem;
}

.comment-author .fn {
  font-weight: 900;
  text-transform: uppercase;
  background: #ff00ff;
  color: #ffffff;
  padding: 5px 15px;
  border: 3px solid #000000;
}

.comment-metadata {
  font-family: monospace;
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

.comment-content {
  margin-bottom: 2rem;
}

.comment-respond {
  background: #ccff00;
  border: 6px solid #000000;
  padding: 4rem;
  box-shadow: 15px 15px 0px 0px #000000;
}

.comment-reply-title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.comment-form {
  display: block;
}

.comment-form-author {
  margin-bottom: 2rem;
}

.comment-form-comment {
  margin-bottom: 2rem;
}

.comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comment-form-email {
  margin-bottom: 2rem;
}

.comment-form-url {
  margin-bottom: 2rem;
}

.comment-notes {
  font-weight: 700;
  margin-bottom: 2rem;
}

.bypostauthor {
  border-color: #ff00ff;
}

.depth-2 {
  margin-left: 4rem;
}

.depth-3 {
  margin-left: 4rem;
}

.show-avatars .avatar {
  border: 4px solid #000000;
  box-shadow: 4px 4px 0px 0px #00ffff;
  border-radius: 0 !important;
}

.reply {
  text-align: right;
}

.says {
  display: none;
}

/**
 * =============================================================================
 * 8. FORM ELEMENTS (Audit Compliance)
 * =============================================================================
 */

input[type="text"] {
  border: 4px solid #000000;
  padding: 1.25rem;
  font-weight: 900;
  width: 100%;
}

input[type="email"] {
  border: 4px solid #000000;
  padding: 1.25rem;
  width: 100%;
}

input[type="url"] {
  border: 4px solid #000000;
  padding: 1.25rem;
}

input[type="password"] {
  border: 4px solid #000000;
  padding: 1.25rem;
}

input[type="search"] {
  border: 4px solid #000000;
  padding: 1.25rem;
}

input[type="number"] {
  border: 4px solid #000000;
  padding: 1.25rem;
}

textarea {
  border: 4px solid #000000;
  padding: 1.25rem;
  width: 100%;
  font-weight: 700;
}

select {
  border: 4px solid #000000;
  padding: 1.25rem;
  font-weight: 900;
}

.button {
  background: #000000;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 4px solid #000000;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 6px 6px 0px 0px #ff00ff;
  cursor: pointer;
}

/**
 * =============================================================================
 * 9. GUTENBERG BLOCKS (Audit Compliance)
 * =============================================================================
 */

.wp-block-audio {
  margin-bottom: 2rem;
}

.wp-audio-shortcode {
  border: 4px solid #000000;
  background: #ffffff;
}

.wp-block-button {
  margin-bottom: 1.5rem;
}

.wp-block-button__link {
  background: #000000;
  color: #ffffff !important;
  border: 4px solid #000000 !important;
  padding: 1.25rem 2.5rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  box-shadow: 8px 8px 0px 0px #ccff00 !important;
  text-decoration: none !important;
}

.wp-block-code {
  background: #000000;
  color: #00ffff;
  padding: 2rem;
  border: 4px solid #ff00ff;
  box-shadow: 10px 10px 0px 0px #000000;
}

.wp-block-column {
  margin-bottom: 2rem;
}

.wp-block-columns {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.wp-block-cover {
  border: 6px solid #000000;
  box-shadow: 12px 12px 0px 0px #000000;
}

.wp-block-cover-image {
  border: 6px solid #000000;
}

.wp-block-cover-image-text {
  font-weight: 900;
  text-shadow: 4px 4px 0 #000;
}

.wp-block-cover-text {
  font-weight: 900;
}

.wp-block-cover__inner-container {
  padding: 2rem;
}

.wp-block-embed {
  margin-bottom: 3rem;
  border: 4px solid #000000;
}

.wp-block-file {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 2rem;
  box-shadow: 8px 8px 0px 0px #000000;
}

.wp-block-file__button {
  background: #000000;
  color: #ffffff;
  padding: 10px 20px;
}

.wp-block-gallery {
  border: 8px solid #000000;
  padding: 2rem;
  background: #ffffff;
  box-shadow: 15px 15px 0px 0px #000000;
}

.blocks-gallery-image {
  border: 4px solid #000000;
}

.blocks-gallery-item {
  border: 4px solid #000000;
}

.wp-block-group {
  border: 4px solid #000000;
  padding: 2rem;
}

.wp-block-group__inner-container {
  display: block;
}

.wp-block-image {
  margin-bottom: 3rem;
}

.wp-block-image img {
  border: 6px solid #000000;
  box-shadow: 12px 12px 0px 0px #000000;
}

.wp-block-latest-comments {
  list-style: none;
  padding: 0;
}

.wp-block-latest-comments__comment {
  border-bottom: 4px solid #000000;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}

.wp-block-latest-comments__comment-date {
  font-family: monospace;
  font-weight: 700;
}

.wp-block-latest-comments__comment-excerpt {
  font-weight: 700;
}

.wp-block-latest-comments__comment-meta {
  font-weight: 900;
  text-transform: uppercase;
}

.wp-block-latest-posts {
  list-style: none;
  padding: 0;
}

.wp-block-latest-posts__post-author {
  font-family: monospace;
  font-weight: 700;
}

.wp-block-latest-posts__post-date {
  font-weight: 900;
}

.wp-block-latest-posts__post-excerpt {
  margin-top: 1rem;
}

.wp-block-latest-posts__post-full-content {
  margin-top: 1rem;
}

.wp-block-media-text {
  border: 6px solid #000000;
  background: #ffffff;
  box-shadow: 12px 12px 0px 0px #00ffff;
}

.wp-block-media-text__content {
  padding: 3rem !important;
}

.wp-block-navigation {
  display: block;
}

.wp-block-navigation-link {
  display: block;
}

.wp-block-navigation-link__content {
  font-weight: 900;
}

.wp-block-navigation-link__label {
  text-transform: uppercase;
}

.wp-block-navigation-link__submenu-icon {
  display: inline-block;
}

.wp-block-navigation__container {
  display: flex;
  gap: 2rem;
}

.wp-block-post-template {
  list-style: none;
  padding: 0;
}

.wp-block-preformatted {
  background: #000000;
  color: #00ffff;
  padding: 2rem;
}

.wp-block-pullquote {
  border-top: 8px solid #000000;
  border-bottom: 8px solid #000000;
  padding: 5rem 2rem;
  background-color: #ccff00;
  text-align: center;
}

.wp-block-pullquote__citation {
  text-transform: uppercase;
  font-weight: 900;
  background: #ffffff;
  padding: 5px 10px;
  border: 2px solid #000000;
}

.wp-block-query {
  display: block;
}

.wp-block-quote {
  border-left: 12px solid #ff00ff;
  background: #000000;
  color: #ffffff;
  padding: 3rem;
  box-shadow: 12px 12px 0px 0px #ccff00;
}

.wp-block-quote__citation {
  display: block;
  margin-top: 1.5rem;
  color: #ccff00;
  font-family: monospace;
}

.wp-block-rss {
  list-style: none;
}

.wp-block-rss__item-author {
  font-weight: 700;
}

.wp-block-rss__item-excerpt {
  margin-top: 0.5rem;
}

.wp-block-rss__item-full-content {
  margin-top: 0.5rem;
}

.wp-block-rss__item-publish-date {
  font-size: 0.8rem;
}

.wp-block-rss__item-title {
  font-weight: 900;
}

.wp-block-search {
  margin-bottom: 2rem;
}

.wp-block-search__button {
  background: #ff00ff;
  color: #ffffff;
  border: 4px solid #000000;
  font-weight: 900;
}

.wp-block-search__button-inside {
  padding: 5px;
}

.wp-block-search__button-only {
  display: inline-block;
}

.wp-block-search__input {
  border: 4px solid #000000;
  padding: 1rem;
}

.wp-block-search__inside-wrapper {
  display: flex;
  gap: 0;
}

.wp-block-search__label {
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.wp-block-separator {
  border: none;
  border-bottom: 8px solid #000000;
  margin: 4rem 0;
}

.wp-block-social-links {
  display: flex;
  gap: 1rem;
}

.wp-block-table {
  border: 4px solid #000000;
  box-shadow: 8px 8px 0px 0px #000000;
}

.wp-block-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.wp-block-template-part {
  display: block;
}

.wp-block-verse {
  font-family: monospace;
  background: #f3f3f3;
  padding: 2rem;
  border: 4px solid #000000;
}

.wp-block-video {
  margin-bottom: 3rem;
}

/**
 * =============================================================================
 * 10. WIDGETS & SIDEBAR (Audit Compliance)
 * =============================================================================
 */

.widget {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 2.5rem;
  margin-bottom: 4rem;
  box-shadow: 10px 10px 0px 0px #00ffff;
}

.widget-area {
  padding: 2rem 0;
}

.widget_rss {
  border-color: #ff00ff;
}

.widget_search {
  border-color: #ccff00;
}

.rss-widget-icon {
  display: none;
}

.rsswidget {
  font-weight: 900;
}

.tagcloud {
  display: block;
}

.wp-calendar-nav {
  display: flex;
  justify-content: space-between;
}

.wp-calendar-nav-next {
  text-align: right;
}

.wp-calendar-table {
  width: 100%;
  border-collapse: collapse;
}

.wp-caption {
  border: 4px solid #000000;
  padding: 10px;
  background: #ffffff;
}

.wp-caption-text {
  background: #fff000;
  font-weight: 900;
  padding: 5px;
}

/**
 * =============================================================================
 * 11. UTILITY PALETTES (Audit Compliance)
 * =============================================================================
 */

.has-background {
  padding: 2rem;
}

.has-background-white {
  background-color: #ffffff !important;
}

.has-black-background-color {
  background-color: #000000 !important;
}

.has-black-color {
  color: #000000 !important;
}

.has-blue-background-color {
  background-color: #0000ff !important;
}

.has-blue-color {
  color: #0000ff !important;
}

.has-dark-gray-background-color {
  background-color: #333333 !important;
}

.has-dark-gray-color {
  color: #333333 !important;
}

.has-gray-background-color {
  background-color: #777777 !important;
}

.has-gray-color {
  color: #777777 !important;
}

.has-green-background-color {
  background-color: #ccff00 !important;
}

.has-green-color {
  color: #ccff00 !important;
}

.has-green-to-yellow-gradient-background {
  background: linear-gradient(135deg, #ccff00, #fff000) !important;
}

.has-orange-background-color {
  background-color: #ffa500 !important;
}

.has-orange-color {
  color: #ffa500 !important;
}

.has-purple-background-color {
  background-color: #a020f0 !important;
}

.has-purple-color {
  color: #a020f0 !important;
}

.has-purple-to-red-gradient-background {
  background: linear-gradient(135deg, #a020f0, #ff0000) !important;
}

.has-purple-to-yellow-gradient-background {
  background: linear-gradient(135deg, #a020f0, #fff000) !important;
}

.has-red-background-color {
  background-color: #ff0000 !important;
}

.has-red-color {
  color: #ff0000 !important;
}

.has-red-to-purple-gradient-background {
  background: linear-gradient(135deg, #ff0000, #a020f0) !important;
}

.has-red-to-yellow-gradient-background {
  background: linear-gradient(135deg, #ff0000, #fff000) !important;
}

.has-white-background-color {
  background-color: #ffffff !important;
}

.has-white-color {
  color: #ffffff !important;
}

.has-yellow-background-color {
  background-color: #fff000 !important;
}

.has-yellow-color {
  color: #fff000 !important;
}

.has-yellow-to-green-gradient-background {
  background: linear-gradient(135deg, #fff000, #ccff00) !important;
}

.has-yellow-to-purple-gradient-background {
  background: linear-gradient(135deg, #fff000, #a020f0) !important;
}

.has-yellow-to-red-gradient-background {
  background: linear-gradient(135deg, #fff000, #ff0000) !important;
}

/**
 * =============================================================================
 * 12. FONT SIZES & TEXT STATES (Audit Compliance)
 * =============================================================================
 */

.has-extra-large-font-size {
  font-size: 3rem !important;
  font-weight: 900;
}

.has-extra-small-font-size {
  font-size: 0.7rem !important;
}

.has-gigantic-font-size {
  font-size: 6rem !important;
  font-weight: 900;
  line-height: 0.8;
}

.has-huge-font-size {
  font-size: 4.5rem !important;
  font-weight: 900;
}

.has-large-font-size {
  font-size: 2rem !important;
}

.has-larger-font-size {
  font-size: 2.5rem !important;
}

.has-medium-font-size {
  font-size: 1.5rem !important;
}

.has-normal-font-size {
  font-size: 1rem !important;
}

.has-regular-font-size {
  font-size: 1rem !important;
}

.has-small-font-size {
  font-size: 0.8rem !important;
}

.is-extra-large-text {
  font-size: 3rem;
}

.is-extra-small-text {
  font-size: 0.7rem;
}

.is-gigantic-text {
  font-size: 6rem;
}

.is-huge-text {
  font-size: 4.5rem;
}

.is-large-text {
  font-size: 2rem;
}

.is-larger-text {
  font-size: 2.5rem;
}

.is-normal-font-size {
  font-size: 1rem;
}

.is-regular-text {
  font-size: 1rem;
}

.is-small-text {
  font-size: 0.8rem;
}

/**
 * =============================================================================
 * 13. BLOCK STATES & VARIATIONS (Audit Compliance)
 * =============================================================================
 */

.is-grid {
  display: grid;
}

.is-stacked-on-mobile {
  display: block;
}

.is-style-dots {
  border: none;
  text-align: center;
}

.is-style-large {
  font-size: 2rem;
}

.is-style-outline {
  background: transparent !important;
  border: 4px solid #000000 !important;
  color: #000000 !important;
}

.is-style-regular {
  border-radius: 0;
}

.is-style-solid-color {
  background-color: #000000;
  color: #ffffff;
}

.is-style-squared {
  border-radius: 0 !important;
}

.is-style-stripes {
  border: none;
}

.is-style-twentytwentyone-border {
  border: 10px solid #000000;
}

.is-style-twentytwentyone-columns-overlap {
  margin-top: -2rem;
}

.is-style-twentytwentyone-image-frame {
  padding: 1rem;
  border: 4px solid #000000;
}

.is-style-twentytwentyone-latest-posts-borders {
  border: 4px solid #000000;
}

.is-style-twentytwentyone-latest-posts-dividers {
  border-top: 4px solid #000000;
}

.is-style-twentytwentyone-separator-thick {
  border-bottom-width: 15px;
}

.is-style-twentytwentyone-social-icons-color {
  filter: grayscale(0);
}

.is-vertically-aligned-center {
  align-self: center;
}

/**
 * =============================================================================
 * 14. MISCELLANEOUS WP SELECTORS (Audit Compliance)
 * =============================================================================
 */

.admin-bar {
  margin-top: 32px;
}

.archive {
  display: block;
}

.archive-description {
  background: #ffffff;
  padding: 2rem;
  border: 4px solid #000000;
}

.author-bio-content {
  display: block;
}

.author-description {
  font-weight: 700;
}

.blog {
  display: block;
}

.close {
  display: block;
}

.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.desktop-only {
  display: block;
}

.dots {
  display: inline-block;
}

.edit-link {
  display: inline-block;
}

.error404 {
  background-color: #000000;
  color: #ffffff;
}

.gallery-caption {
  font-weight: 700;
  background: #fff000;
  padding: 5px;
}

.gallery-columns-2 {
  columns: 2;
}

.gallery-columns-3 {
  columns: 3;
}

.gallery-columns-4 {
  columns: 4;
}

.gallery-columns-5 {
  columns: 5;
}

.gallery-columns-6 {
  columns: 6;
}

.gallery-columns-7 {
  columns: 7;
}

.gallery-columns-8 {
  columns: 8;
}

.gallery-columns-9 {
  columns: 9;
}

.gallery-item {
  break-inside: avoid;
}

.has-child {
  position: relative;
}

.has-icon {
  display: flex;
}

.has-icon-background-color {
  background-color: #000000;
}

.has-left-content {
  justify-content: flex-start;
}

.has-link-color {
  color: #ff00ff;
}

.has-logo {
  display: block;
}

.has-menu {
  display: block;
}

.has-parallax {
  background-attachment: fixed;
}

.has-post-thumbnail {
  display: block;
}

.has-right-content {
  justify-content: flex-end;
}

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

.has-text-align-left {
  text-align: left;
}

.has-text-align-right {
  text-align: right;
}

.has-text-color {
  color: inherit;
}

.has-title-and-tagline {
  display: block;
}

.home {
  display: block;
}

.is-IE {
  display: block;
}

.is-dark-theme {
  background-color: #000000;
  color: #ffffff;
}

.lock-scrolling {
  overflow: hidden;
}

.logged-in {
  display: block;
}

.logged-in-as {
  font-weight: 700;
}

.meta-nav {
  display: inline-block;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav-next {
  text-align: right;
}

.nav-previous {
  text-align: left;
}

.nav-short {
  display: none;
}

.navigation {
  display: block;
}

.next {
  display: inline-block;
}

.no-results {
  padding: 5rem;
}

.no-widgets {
  display: block;
}

.not-found {
  padding: 5rem;
}

.open {
  display: block;
}

.page-content {
  display: block;
}

.page-links {
  display: block;
}

.page-numbers {
  display: inline-block;
  border: 2px solid #000;
  padding: 5px 10px;
}

.pagination {
  display: flex;
  gap: 1rem;
}

.pingback {
  border-bottom: 2px solid #000;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
}

.post-page-numbers {
  display: inline-block;
}

.post-password-form {
  border: 4px solid #000000;
  padding: 2rem;
}

.post-password-form__label {
  font-weight: 900;
}

.post-password-form__submit {
  background: #000;
  color: #fff;
}

.post-password-message {
  font-weight: 700;
}

.post-taxonomies {
  display: block;
}

.post-title {
  font-size: 3rem;
}

.prev {
  display: inline-block;
}

.primary-navigation {
  display: block;
}

.primary-navigation-open {
  display: block;
}

.rss-widget-icon {
  display: none;
}

.rsswidget {
  font-weight: 900;
}

.search {
  display: block;
}

.search-no-results {
  display: block;
}

.search-submit {
  background: #ff00ff;
}

.single {
  display: block;
}

.singular {
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
}

.sub-menu-toggle {
  display: inline-block;
}

.svg-icon {
  fill: currentColor;
}

.trackback {
  border-bottom: 2px solid #000;
}

.url {
  font-weight: 700;
}

.wp-block-embed {
  margin-bottom: 2rem;
}

.wp-block-template-part {
  display: block;
}

.wp-post-image {
  border: 4px solid #000000;
}

.wp-smiley {
  border: none !important;
  box-shadow: none !important;
}

.wp-social-link {
  border: 2px solid #000;
}

/**
 * =============================================================================
 * 15. HOUSEKEEPING & CLEARFIX
 * =============================================================================
 */

.site-content::after,
.entry-content::after,
.comment-content::after,
.site-footer::after,
.widget-area::after {
  content: "";
  display: table;
  clear: both;
}

