/*
Theme Name: Pitch Labs
Description: This is a child theme of Twenty Twenty-Five
Author: Francisco Pinto
Author URI: https://pitchlabs.org
Template: twentytwentyfive
Version: 0.1
*/

/* ==========================================================================
   GLOBAL STYLES
   ========================================================================== */
body {
  background-color: #f5f5f5 !important;
  font-family: "IBM Plex Serif";
}

footer {
  background-color: white;
}

a {
  outline: none;
  color: black;
}

summary {
  outline: none;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
}

.cs-anchor {
  text-decoration: none !important;
  color: black;
}

.cs-anchor-line {
  text-decoration: underline !important;
  color: black;
}

.custom-toast {
  min-width: 400px;
}
.toast-top-center {
  transform: translateY(80px); /* Moves the whole toast container down */
}

.fs-1-1 {
  font-size: 1.1rem;
}

.fs-1-0 {
  font-size: 1rem;
}

.fs-0-9 {
  font-size: 0.9rem;
}

.text-balance {
  text-wrap: balance;
}

.pl-border-1 {
  border: solid 1px #f5a201;
}

.pl-border-5 {
  border: solid 0.75rem #f5a201;
}

.pl-border-mb {
  border-bottom: solid 0.75rem #f5a201;
}

.pl-border-mb-sm {
  border-bottom: solid 0.25rem #f5a201;
}

.pitchlabs-bg-color {
  background-color: #f5a201;
}

.menu-option br {
  display: none;
}

/*  Buttons  */

/* Icon Tooltip */
.tooltip-inner {
  background-color: #333 !important;
  color: white !important;
  font-size: 14px;
  border-radius: 5px;
}
.tooltip-arrow {
  border-top-color: #333 !important;
}

.pl-default-white-btn {
  background-color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

.pl-default-white-btn:hover {
  background-color: #f5f5f5 !important;
}

.wp-element-button {
  background-color: #f5a201 !important;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

input[type="radio"]:checked {
  background-color: #f5a201;
  border-color: #f5a201;
}

.comment-reply-link {
  background-color: #f5a201 !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wp-block-comment-edit-link a {
  background-color: #f5a201 !important;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 20px;
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-active {
  background-color: #ccc !important;
}

.btn-custom:hover {
  background-color: #ccc !important;
}

.btn-circle {
  width: 40px;
  height: 40px;
  padding: 0;
}

.btn-check + .btn {
  background-color: white;
}

.btn-check:checked + .btn {
  background-color: #f5a201 !important;
  color: black;
  font-weight: bold;
}

/*  Buttons End */

.profile-image-circle {
  width: 100px; /* Ajuste o tamanho conforme necessário */
  height: 100px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 50%;
  overflow: hidden;
}

/* ==========================================================================
   CUSTOM LOGIN PAGE
   ========================================================================== */
.login-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 999;
}

.login-card {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  width: 100%;
  max-width: 470px; /* Maximum width of the card */
  min-width: 375px; /* Minimum width for small screens */
}

.close-login {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.login-card input {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.login-card .input-group {
  position: relative;
  width: 100%;
}

.login-card button#showPassword {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0.375rem 0.6rem; /* Adjust padding */
  margin-right: 4px;
  background: #f5a201;
  color: black;
  border: none;
  border-radius: 0.5rem; /* Adjust border radius for correct rounding */
  cursor: pointer;
  position: absolute; /* Position inside the input */
  right: 0; /* Align to the right */
  top: 50%; /* Vertically center the button */
  bottom: 0; /* Ensure it doesn’t touch the bottom */
  transform: translateY(
    -50%
  ); /* Adjust alignment vertically without touching parent */
  z-index: 5;
}

.login-card button#showPassword i {
  font-size: 16px; /* Adjust icon size */
}

.login-card .input-group .form-control {
  padding-right: 30px; /* Space for the button inside the input */
}

.login-card button#showPassword:focus {
  outline: none;
  box-shadow: none;
}

.login-modal.active .login-overlay,
.login-modal.active .login-card {
  display: block;
}

@media (max-width: 575px) {
  .login-card {
    padding: 15px; /* Adjust padding for smaller screens */
    max-width: 370px;
  }
}

/* ==========================================================================
       USER AVATAR STYLES
       ========================================================================== */
/* Styling the user avatar image */
.user-avatar-img {
  width: 40px; /* Avatar size */
  height: 40px;
  border-radius: 50%; /* Circular shape */
  object-fit: cover;
  cursor: pointer; /* Pointer cursor on hover */
  transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for the avatar image */
.user-avatar-img:hover {
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Styling the container for the user avatar */
.user-avatar {
  display: inline-block; /* Inline alignment */
  position: relative; /* Positioning context for potential child elements */
  margin-right: 1rem;
}

.wp-block-image figure {
  margin-left: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: #f8f9fa;
}

.img-square {
  width: 15rem;
  height: 15rem;
  overflow: hidden;
  object-fit: cover;
}

.avatar {
  object-fit: contain !important;
}

/* ==========================================================================
       MORE LINK STYLES
========================================================================== */
.more-link {
  display: block;
}
.share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.share-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #007bff;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.share-btn i {
  font-size: 24px;
}

.share-btn:hover {
  background-color: #0056b3;
}

/* Share buttons Post Page */
.facebook {
  background-color: #3b5998;
}
.instagram {
  background: linear-gradient(45deg, #f58529, #d33c9f, #833ab4);
  transition: all 0.3s ease;
}
.twitter {
  background-color: black;
}
.linkedin {
  background-color: #0077b5;
}
.whatsapp {
  background-color: #25d366;
}
.pinterest {
  background-color: #e60023;
}
.reddit {
  background-color: #ff4500;
}
.email {
  background-color: #333333;
}

/* Responsividade - 4 ícones em desktop, 3 em telas menores */
@media (max-width: 1200px) {
  .share-buttons {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .share-buttons {
    gap: 15px;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .share-button {
    width: 40px;
    height: 40px;
  }
}

/* ==========================================================================
       NAVIGATION STYLES
========================================================================== */

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

/* fix Library menu link hightlight */
.fix-library-hl {
  color: #f5a201 !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
}

/* nav bar submenu width */
.wp-block-navigation__submenu-container {
  min-width: auto !important;
  width: auto;
  display: block;
  visibility: hidden;
  white-space: nowrap;
}

.wp-block-navigation__submenu-container[aria-expanded="true"] {
  visibility: visible;
  display: block;
}

/* Submenu container styling */
.wp-block-navigation__submenu-container {
  background-color: #f1f1f1;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px;
  display: block;
}

/* Styling for individual submenu items */
.wp-block-navigation__submenu-container .wp-block-navigation-item {
  margin: 3px 0; /* Reduced spacing between items */
  padding: 2; /* Note: Consider adding a unit (e.g., 2px) if needed */
}

/* Styling for the submenu icon */
.wp-block-navigation__submenu-icon {
  margin-left: 5px;
}

.wp-block-navigation-submenu {
  outline: none;
}

.wp-block-navigation__responsive-container-close {
  padding: 15px;
  font-weight: bold;
}

.wp-block-navigation__submenu-icon {
  transition: transform 0.3s ease-in-out;
}

.wp-block-navigation__submenu-icon[aria-expanded="true"] {
  transform: rotate(180deg);
}

/* Current navigation menu item styling */
.wp-block-navigation-item.current-menu-item a {
  color: #f5a201 !important;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 10px;
  outline: none !important;
  box-shadow: none !important;
}

/* Hover effect for navigation links */
.wp-block-navigation-item a:hover,
.wp-block-navigation-item .wp-block-navigation-item__content:hover {
  text-decoration: none;
  color: #f5a201;
}

/* ==========================================================================
       SITE TITLE & POST CONTENT IMAGES
========================================================================== */
/* Site title image styling */
.wp-block-site-title img {
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Post content image styling */
.wp-block-post-content img {
  width: 100%;
  border-radius: 8px;
}

.wp-block-post-excerpt {
  font-size: 1.1rem;
  color: #374151;
}

.wp-block-post-content {
  font-size: 1.1rem;
}
/* ==========================================================================
       FORM ELEMENTS (CHECKBOXES)
========================================================================== */
input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #f5a201;
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  background-color: white;
}

input[type="checkbox"]:checked {
  background-color: #f5a201;
  border-color: #b8932a;
}

/* ==========================================================================
       FEEDBACK PAGE
========================================================================== */

.feature-card {
  min-height: 350px;
  background-color: white;
}
.feature-card a {
  text-decoration: none;
}

/* ==========================================================================
       ABOUT PAGE
========================================================================== */

.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.list-group-item {
  border: 0;
}
.list-group-item-action.active {
  background-color: #f5a201;
  color: black;
}

/* Disable selection */
.team-container h3,
.team-container p {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.about_doubleUnderline::after {
  width: 16rem;
  height: 4rem;
  margin-left: auto;
  display: block;
  background-image: url("/wp-content/themes/pitchlabs/assets/images/undraw_double-underline.96950375.svg");
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

.milestone-his {
  width: 64px;
  height: 64px;
  background-color: #ccc;
  z-index: 2;
}

.milestone-his:hover {
  width: 64px;
  height: 64px;
  background-color: #f5a201;
  z-index: 2;
}

.fix-about-hl {
  text-decoration: none !important;
  outline: none;
  color: black !important;
}

.floating-div {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 540px;
  width: 100%;
  z-index: 1050;
  display: none;
}

@media (max-width: 768px) {
  .floating-div {
    right: 0;
    left: 0;
    margin: 0 auto;
  }
}

/* ==========================================================================
       POST CARD & CONTENT STYLES
========================================================================== */
/* Styling for the post card container */
.post-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  background-color: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

/* Post content container styling */
.post-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* Styling for links inside post content */
.post-content a {
  color: black;
}
.post-content-home a {
  color: black;
}
/* Post title styling with ellipsis for overflow */
.post-title {
  max-height: 3em;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* WordPress block post title styling */
.wp-block-post-title {
  font-weight: bold;
}

.post-card-home {
  border: 1px solid #ddd;
  padding: 16px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease-in-out;
}

.favorites-stats {
  display: flex;
  gap: 16px;
  font-size: 1.1rem;
}

.favorites-stats a {
  text-decoration: none;
  color: black;
}

.post-meta-home {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.post-meta-home .author-info {
  display: flex;
  align-items: center;
}

.post-content-home {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.post-content-home .wp-block-post-title,
.post-content-home .post-title {
  margin-bottom: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.post-content-home p,
.post-content-home .wp-block-post-excerpt,
.post-content-home .post-excerpt {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin: 0;
}

.breadcrumb-card {
  background: #fff;
  box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.1),
    inset -2px -2px 5px rgba(255, 255, 255, 0.7);
  padding: 10px;
}
.breadcrumb-card a {
  color: black;
}
.breadcrumb-card a:hover {
  text-decoration: underline;
}

/* ==========================================================================
       POST TABLE OF CONTENT
========================================================================== */

.toc-container {
  position: fixed;
  top: 150px;
  left: 40px;
  width: 250px;
  max-height: 80vh;
  overflow-y: auto;
  background: #f8f9fa;
  padding: 1rem;
  border-left: 3px solid #f5a201;
  z-index: 1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.toc-title {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

#toc-list {
  list-style: none;
  padding-left: 0;
}

#toc-list li {
  margin-bottom: 0.5rem;
}

#toc-list a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

#toc-list a:hover {
  text-decoration: underline;
}

@media (max-width: 1280px) {
  .toc-container {
    position: relative;
    top: 20px;
    left: auto;
    right: auto;
    margin: 0 auto 2rem auto;
    width: 100%;
    max-width: 663px;
  }
}

/* ==========================================================================
       POST META & AUTHOR INFO
========================================================================== */
/* Container for post meta information */
.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Styling for author information section */
.author-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Author avatar image styling */
.author-info img {
  border-radius: 50%;
  width: 32px;
  height: 32px;
}

/* Author name styling */
.author-name {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 3px;
  text-decoration: underline;
}

/* Post date styling */
.post-date {
  font-size: 0.9em;
}

/* ==========================================================================
       POST COMMENTS
========================================================================== */

.wp-block-comment-author-name {
  font-size: 1rem;
}

/* ==========================================================================
       LAYOUT & SIDEBAR STYLES
========================================================================== */
/* Main content container styling */
.main-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
  max-width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}

.section-top-mt1 {
  margin-top: 13rem;
}
.section-top-mt2 {
  margin-top: 19rem;
}

/* Sidebar container styling */
.sidebar {
  flex: 0 0 300px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
}

.content-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Category list container styling */
#category_list {
  justify-content: left;
  align-items: center;
  text-align: center;
  min-height: 170px;
}

/* Category list link styling */
#category_list a {
  text-decoration: none;
  color: black;
  outline: none;
  box-shadow: none;
}

.custom-underline {
  position: relative;
  display: inline-block;
}

.custom-underline::after {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/wp-content/themes/pitchlabs/assets/images/undraw_curved-underline.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.custom-align-section .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.custom-align-section .col-6.col-md-4.col-lg-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
  text-align: center;
}

.custom-align-section h4,
.custom-align-section p {
  margin: 0;
}

.hero-content {
  max-width: 480px;
  flex: 1;
}

.hero-image img {
  width: 100%;
  max-width: 800px;
}

/* ==========================================================================
       RESPONSIVE STYLES
========================================================================== */

/* For screens up to 640px */
@media (max-width: 640px) {
  iframe {
    width: 370px;
  }

  .home-query .wp-block-post,
  .post-query .wp-block-post {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  .hero-image {
    display: none;
  }

  .buttons {
    flex-direction: column;
  }
  .section-top-mt1 {
    margin-top: 0.9rem;
  }
  .section-top-mt2 {
    margin-top: 10rem;
  }
  #footer {
    text-align: center;
  }

  /* navigation submenu adjustment */
  .wp-block-navigation__submenu-container {
    background: transparent !important;
    box-shadow: none !important;
    font-size: 1rem;
    outline: none !important;
  }

  .wp-block-navigation__container > .wp-block-navigation-item {
    font-size: 22px !important;
    font-weight: 500;
  }

  .wp-block-navigation__responsive-container-close {
    margin-right: 15px;
  }

  /*  Menu mobile */
  .custom-mobile-menu {
    font-size: 1.5rem;
    padding: 2rem;
  }
}

/* For screens 768px and above */
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-content {
    margin-left: 2rem; /* Puxa mais para a direita */
  }
}

/* For screens 992px and above */
@media (max-width: 992px) {
  .home-query .wp-block-post {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .col-lg-6 {
    border-left: none !important; /* community page */
  }
}

/* For screens 1024px and above */
@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
  #category_list {
    justify-content: center;
  }
  .post-query {
    flex: 3;
    max-width: 100%;
  }
  .section-top-mt1 {
    margin-top: 7rem;
  }

  .hero-content {
    flex: 0 0 40%;
    max-width: 480px; /* Ensures it doesn't exceed 480px even if 35% is larger */
  }
  .hero-image {
    flex: 0 0 60%;
    display: block !important;
  }
}

/* For screens below 1024px */
@media (max-width: 1024px) {
  .sidebar {
    width: 100%;
    display: block;
    background: none;
    padding: 0;
    max-width: none;
  }
  .main-content {
    display: block;
  }

  .hero-image {
    display: none !important;
  }

  .sidebar .subcategories {
    width: 100%;
  }
  .content-wrapper {
    width: 100%;
  }
  .subcategories ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }

  .subcategories li {
    margin-right: 15px;
    list-style-type: none;
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 1rem;
  }

  .sidebar .search-container,
  .sidebar form,
  .sidebar > *:not(.subcategories) {
    display: none;
  }
  .section-top-mt1 {
    margin-top: 3rem;
  }
  .section-top-mt2 {
    margin-top: 15rem;
  }
}

/* For screens 1700px and above */
@media (min-width: 1700px) {
  .main-content {
    max-width: 1700px;
  }
}

/* For screens up to 1700px */
@media (max-width: 1700px) {
  .post-query .wp-block-post {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* ==========================================================================
       POST STATS STYLES
========================================================================== */
.post-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  font-size: 1.1rem;
  max-width: 300px;
}

.post-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.post-stat-item i {
  font-size: 1.2em;
}

.post-stat-item span {
  font-size: 0.9em;
}

/* tooltip */
.post-stat-item::after {
  content: attr(data-tip);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 5px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 10;
}

.post-stat-item:hover::after {
  visibility: visible;
  opacity: 1;
}

.wp-block-post-date {
  font-size: 1.1rem !important;
}

/* ==========================================================================
       TYPOGRAPHY & CATEGORY STYLES
========================================================================== */
/* Category title styling */
.category-title {
  font-size: 3.2rem;
  text-align: center;
  font-weight: bold;
}

/* Current category link styling */
.current-category a {
  font-weight: bold;
  color: #f5a201;
  background-color: #f0f0f0;
}

/* ==========================================================================
       BUTTON & COLOR CLASSES
========================================================================== */
.pitchlabs-btn {
  background-color: #f5a201 !important;
  color: black !important;
}

.pitchlabs-color {
  background-color: #f5a201 !important;
  color: white !important;
}

.pl-color {
  color: #f5a201 !important;
}

/* ==========================================================================
       CONTENT COLUMN STYLES
========================================================================== */
/* This ID is used elsewhere; be cautious when modifying */
#content-column {
  width: 100% !important;
  text-align: center;
}

/* ==========================================================================
       PROFILE IMAGE & INFO STYLES
========================================================================== */
.profile-image-wrapper {
  max-width: 100px;
  flex-shrink: 0;
}

.profile-image {
  width: 100%;
  height: auto;
}

.profile-info {
  flex-grow: 1;
}

/* ==========================================================================
      POSTS PAGINATION
========================================================================== */

.pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  margin-top: 30px;
}

.pagination-container .wp-block-query-pagination-previous,
.pagination-container .wp-block-query-pagination-next {
  background-color: #f5a201;
  color: black;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.pagination-container .wp-block-query-pagination-previous:hover,
.pagination-container .wp-block-query-pagination-next:hover {
  background-color: #f5a201;
}

.pagination-container .wp-block-query-pagination-numbers {
  display: flex;
  gap: 10px;
  align-items: center;
}

.pagination-container .wp-block-query-pagination-numbers a {
  background-color: #f5a201;
  color: black;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

.pagination-container .wp-block-query-pagination-numbers a:hover {
  background-color: #f5a201;
  color: black;
}

.pagination-container .wp-block-query-pagination-numbers .current {
  background-color: black;
  color: #f5a201;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
}
