@charset "utf-8";
/*
Theme Name: AkiKONDO
*/

.page-numbers {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-numbers li span,
.page-numbers li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.page-numbers li a {
  transition: background-color 0.1s;
}
.page-numbers li a:hover {
  background-color: var(--color-background);
}
.page-numbers li span:not(.dots) {
  background-color: var(--color-background); 
}

@media screen and (max-width: 767px) {
  .page-numbers {
    gap: 12px;
  }
  .page-numbers li span,
  .page-numbers li a {
    width: 30px;
    height: 30px;
  }
}

/* */
.wp-block-embed__wrapper {
  aspect-ratio: 16/9;
}
.wp-block-embed__wrapper iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* */
.smf-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.smf-item + .smf-item {
  margin-top: 24px;
}
.smf-action {
  margin-top: 48px;
  text-align: center;
}
.smf-action .smf-button-control__control {
  max-width: 240px;
  width: 100%;
  appearance: none;
  border-radius: 0;
  border: none;
  color: var(--color-contrast);
  background-color: var(--color-background);
  background-image: none;
  text-decoration: underline;
}
.smf-action .smf-button-control__control:hover {
  text-decoration: none;
}