@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
#searchModal {
  z-index: 9999 !important;
  position: fixed !important;
}
#searchModal .modal-backdrop {
  z-index: 9998 !important;
}
#searchModal .modal-dialog {
  z-index: 10001 !important;
  position: relative;
  max-width: 700px;
}

.search-modal-content {
  z-index: 10000 !important;
  border: none;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  min-height: 400px;
}

.search-modal-header {
  background: transparent;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.5rem 1rem;
}
.search-modal-header .modal-title {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--bs-body-color);
  margin: 0;
}
.search-modal-header .btn-close {
  opacity: 0.6;
}
.search-modal-header .btn-close:hover {
  opacity: 1;
}

.search-modal-body {
  padding: 1.5rem;
  min-height: 300px;
}

.search-form-group {
  position: relative;
  margin-bottom: 2rem;
}

.search-input-container {
  position: relative;
  display: flex;
  align-items: stretch;
}

.input-group-lg .search-input-icon {
  border-top-left-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  border-right: none !important;
}
.input-group-lg .search-input {
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
}
.input-group-lg .search-submit {
  border-top-right-radius: 12px !important;
  border-bottom-right-radius: 12px !important;
  border-left: none !important;
  margin-top: 0 !important;
  width: auto !important;
}

.search-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e0e0e0;
  font-size: 1.1rem;
  background: #ffffff;
}
.search-input:focus {
  outline: none;
  box-shadow: none;
}
.search-input::-moz-placeholder {
  color: #999;
  font-weight: 400;
}
.search-input::placeholder {
  color: #999;
  font-weight: 400;
}

.search-input-icon {
  background: rgba(205, 5, 4, 0.1) !important;
  color: #CD0504 !important;
  border: 2px solid #e0e0e0 !important;
  width: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.search-submit {
  background: #CD0504;
  color: #ffffff;
  border: 2px solid #CD0504;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-top: 1rem;
  width: 100%;
}
.search-submit:hover {
  background: #E5050A;
  border-color: #E5050A;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(205, 5, 4, 0.3);
}
.search-submit:active {
  transform: translateY(0);
}

.search-suggestions {
  display: none !important;
}

.search-page-form {
  flex: 1;
  width: 100%;
  max-width: 100%;
}
.search-page-form .input-group {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.search-page-form .input-group-prepend,
.search-page-form .input-group-append {
  display: flex;
}
.search-page-form .dropdown,
.search-page-form .input-group-prepend {
  position: relative;
}
.search-page-form .dropdown .dropdown-menu,
.search-page-form .input-group-prepend .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.search-page-form .dropdown .dropdown-menu.show,
.search-page-form .input-group-prepend .dropdown-menu.show {
  display: block;
}
.search-page-form .dropdown .dropdown-menu .dropdown-item,
.search-page-form .input-group-prepend .dropdown-menu .dropdown-item {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  cursor: pointer;
}
.search-page-form .dropdown .dropdown-menu .dropdown-item:hover, .search-page-form .dropdown .dropdown-menu .dropdown-item:focus,
.search-page-form .input-group-prepend .dropdown-menu .dropdown-item:hover,
.search-page-form .input-group-prepend .dropdown-menu .dropdown-item:focus {
  color: #1e2125;
  background-color: #f8f9fa;
}
.search-page-form .dropdown .dropdown-menu .dropdown-item:active,
.search-page-form .input-group-prepend .dropdown-menu .dropdown-item:active {
  color: #fff;
  background-color: #CD0504;
}
.search-page-form .dropdown-toggle,
.search-page-form .btn-outline-secondary {
  border: 2px solid #e0e0e0 !important;
  border-radius: 0.375rem 0 0 0.375rem !important;
  border-right: none !important;
  font-size: 0.875rem;
  min-width: 120px;
  text-align: left;
  background: #ffffff !important;
  color: #212529 !important;
  padding: 0.5rem 1rem;
}
.search-page-form .dropdown-toggle:hover,
.search-page-form .btn-outline-secondary:hover {
  background: #f8f9fa !important;
  border-color: #e0e0e0 !important;
  color: #212529 !important;
}
.search-page-form .dropdown-toggle:focus, .search-page-form .dropdown-toggle:active,
.search-page-form .btn-outline-secondary:focus,
.search-page-form .btn-outline-secondary:active {
  box-shadow: none !important;
  border-color: #e0e0e0 !important;
  background: #ffffff !important;
  color: #212529 !important;
}
.search-page-form .dropdown-toggle::after,
.search-page-form .btn-outline-secondary::after {
  margin-left: 0.5rem;
  vertical-align: middle;
}
.search-page-form .form-control {
  border: 2px solid #e0e0e0 !important;
  border-left: none !important;
  border-right: none !important;
  border-radius: 0 !important;
  font-size: 1rem;
  flex: 1;
  min-width: 0;
}
.search-page-form .form-control:focus {
  box-shadow: none !important;
  border-color: #e0e0e0 !important;
}
.search-page-form .btn-primary {
  border: 2px solid #CD0504 !important;
  border-radius: 0 0.375rem 0.375rem 0 !important;
  border-left: none !important;
  font-weight: 500;
  background: #CD0504 !important;
  color: #ffffff !important;
  padding: 0.5rem 1.5rem;
  white-space: nowrap;
}
.search-page-form .btn-primary:hover {
  background: #E5050A !important;
  border-color: #E5050A !important;
  color: #ffffff !important;
}
.search-page-form .btn-primary:focus, .search-page-form .btn-primary:active {
  box-shadow: none !important;
  background: #CD0504 !important;
  border-color: #CD0504 !important;
}
.search-page-form .btn-primary i {
  margin-right: 0.5rem;
}
@media (max-width: 768px) {
  .search-page-form .input-group {
    flex-wrap: wrap;
  }
  .search-page-form .input-group-prepend {
    flex: 0 0 auto;
  }
  .search-page-form .form-control {
    flex: 1 1 auto;
    border-right: 2px solid #e0e0e0 !important;
    border-radius: 0 0.375rem 0 0 !important;
  }
  .search-page-form .input-group-append {
    flex: 0 0 100%;
    margin-top: 0.5rem;
  }
  .search-page-form .input-group-append .btn-primary {
    width: 100%;
    border: 2px solid #CD0504 !important;
    border-radius: 0.375rem !important;
    border-left: 2px solid #CD0504 !important;
  }
}

.search-results-count {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.search-results-count strong {
  color: var(--main-color, #007bff);
  font-weight: 600;
}

.no-results-message {
  background: #f8f9fa;
  border-radius: 0.5rem;
  margin: 2rem 0;
}
.no-results-message i {
  display: block;
  margin-bottom: 1rem;
}
.no-results-message h4 {
  color: #495057;
  margin-bottom: 0.5rem;
}

.content-array__media-expert {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
}

.content-array__media-expert-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f0f0f0;
}

.content-array__media-expert-header-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: #232323;
  margin: 0;
}

.content-array__media-expert-header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.content-array__media-expert-header-buttons span {
  font-size: 0.75rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.content-array__media-expert-header-buttons a {
  transition: all 0.3s ease;
  text-decoration: none !important;
}
.content-array__media-expert-header-buttons a:hover {
  transform: scale(1.05);
}
.content-array__media-expert-header-buttons a svg {
  display: block;
}

.content-array__media-expert-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.content-array__media-expert-cards:has(.media-expert-card:only-child) {
  grid-template-columns: minmax(185px, 240px);
  justify-content: flex-start;
}
.content-array__media-expert-cards .media-expert-card:only-child {
  max-width: 240px;
  justify-self: start;
}
.content-array__media-expert-cards--single {
  grid-template-columns: minmax(185px, 240px);
  justify-content: flex-start;
}
.content-array__media-expert-cards--single .media-expert-card {
  max-width: 240px;
}

.media-expert-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.media-expert-card:hover, .media-expert-card:focus, .media-expert-card:active, .media-expert-card:visited {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  text-decoration: none !important;
  color: inherit;
}

.media-expert-card__star {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2rem;
  height: 2rem;
  z-index: 2;
}

.media-expert-card__product-image-wrapper {
  position: relative;
  width: 100%;
  height: 200px;
  max-height: 156px;
  /*margin-bottom: 1rem;*/
  border-radius: 8px;
  overflow: hidden;
}
.media-expert-card__product-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center;
  object-position: center;
  transition: transform 0.3s ease;
}
.media-expert-card:hover .media-expert-card__product-image-wrapper img {
  transform: scale(1.05);
}

.media-expert-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  min-height: 0;
}

.media-expert-card__header {
  flex: 1 1 auto;
  min-height: 0;
}

.media-expert-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #232323;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.media-expert-card__pricing {
  display: none !important;
}
.media-expert-card__pricing--hidden {
  display: none !important;
}

.media-expert-card__discount {
  display: none !important;
}

.media-expert-card__previous-price-wrapper {
  display: none !important;
}

.media-expert-card__previous-price s {
  color: #999;
}

.media-expert-card__cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: #FFF200;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none !important;
  margin-top: auto;
  flex-shrink: 0;
}
.media-expert-card:hover .media-expert-card__cta {
  background: #FFE600;
}
.media-expert-card__cta:hover, .media-expert-card__cta:focus, .media-expert-card__cta:active, .media-expert-card__cta:visited {
  text-decoration: none !important;
}

.media-expert-card__cta-icon-wrapper {
  width: 2rem;
  height: 2rem;
  background: transparent;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-expert-card__cta-icon {
  width: 1rem;
  height: 1rem;
  color: #000;
}

.media-expert-card__cta-label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.media-expert-card__cta-label-description {
  display: none;
}

.media-expert-card__cta-label-price {
  font-weight: 600;
  font-size: 1rem;
  color: #000;
  white-space: nowrap;
}

.theme--light-hardware .search-input:focus,
.theme--light-all .search-input:focus,
.theme--dark-hardware .search-input:focus,
.theme--dark-all .search-input:focus {
  border-color: #CD0504 !important;
  box-shadow: 0 0 0 3px rgba(205, 5, 4, 0.25) !important;
}
.theme--light-hardware .search-input-icon,
.theme--light-all .search-input-icon,
.theme--dark-hardware .search-input-icon,
.theme--dark-all .search-input-icon {
  border-color: #CD0504 !important;
  background: rgba(205, 5, 4, 0.1) !important;
  color: #CD0504 !important;
}
.search-input:focus + .theme--light-hardware .search-input-icon,
.search-input:focus + .theme--light-all .search-input-icon,
.search-input:focus + .theme--dark-hardware .search-input-icon,
.search-input:focus + .theme--dark-all .search-input-icon {
  background: rgba(205, 5, 4, 0.15) !important;
}
.theme--light-hardware .search-submit,
.theme--light-all .search-submit,
.theme--dark-hardware .search-submit,
.theme--dark-all .search-submit {
  background: #CD0504 !important;
  border-color: #CD0504 !important;
  color: #ffffff !important;
}
.theme--light-hardware .search-submit:hover,
.theme--light-all .search-submit:hover,
.theme--dark-hardware .search-submit:hover,
.theme--dark-all .search-submit:hover {
  background: #E5050A !important;
  border-color: #E5050A !important;
  color: #ffffff !important;
}
.theme--light-hardware .search-suggestions .badge:hover,
.theme--light-hardware .search-page-form .btn-primary,
.theme--light-all .search-suggestions .badge:hover,
.theme--light-all .search-page-form .btn-primary,
.theme--dark-hardware .search-suggestions .badge:hover,
.theme--dark-hardware .search-page-form .btn-primary,
.theme--dark-all .search-suggestions .badge:hover,
.theme--dark-all .search-page-form .btn-primary {
  background: #CD0504 !important;
  border-color: #CD0504 !important;
}

.theme--light-gaming .search-input:focus,
.theme--dark-gaming .search-input:focus {
  border-color: #0430CD !important;
  box-shadow: 0 0 0 3px rgba(4, 48, 205, 0.25) !important;
}
.theme--light-gaming .search-input-icon,
.theme--dark-gaming .search-input-icon {
  border-color: #0430CD !important;
  background: rgba(4, 48, 205, 0.1) !important;
  color: #0430CD !important;
}
.search-input:focus + .theme--light-gaming .search-input-icon,
.search-input:focus + .theme--dark-gaming .search-input-icon {
  background: rgba(4, 48, 205, 0.15) !important;
}
.theme--light-gaming .search-submit,
.theme--dark-gaming .search-submit {
  background: #0430CD !important;
  border-color: #0430CD !important;
  color: #ffffff !important;
}
.theme--light-gaming .search-submit:hover,
.theme--dark-gaming .search-submit:hover {
  background: #0538E5 !important;
  border-color: #0538E5 !important;
  color: #ffffff !important;
}
.theme--light-gaming .search-suggestions .badge:hover,
.theme--light-gaming .search-page-form .btn-primary,
.theme--dark-gaming .search-suggestions .badge:hover,
.theme--dark-gaming .search-page-form .btn-primary {
  background: #0430CD !important;
  border-color: #0430CD !important;
}

.theme--light-mobile .search-input:focus,
.theme--dark-mobile .search-input:focus {
  border-color: #0b74a1 !important;
  box-shadow: 0 0 0 3px rgba(11, 116, 161, 0.25) !important;
}
.theme--light-mobile .search-input-icon,
.theme--dark-mobile .search-input-icon {
  border-color: #0b74a1 !important;
  background: rgba(11, 116, 161, 0.1) !important;
  color: #0b74a1 !important;
}
.search-input:focus + .theme--light-mobile .search-input-icon,
.search-input:focus + .theme--dark-mobile .search-input-icon {
  background: rgba(11, 116, 161, 0.15) !important;
}
.theme--light-mobile .search-submit,
.theme--dark-mobile .search-submit {
  background: #0b74a1 !important;
  border-color: #0b74a1 !important;
  color: #ffffff !important;
}
.theme--light-mobile .search-submit:hover,
.theme--dark-mobile .search-submit:hover {
  background: #0C82B5 !important;
  border-color: #0C82B5 !important;
  color: #ffffff !important;
}
.theme--light-mobile .search-suggestions .badge:hover,
.theme--light-mobile .search-page-form .btn-primary,
.theme--dark-mobile .search-suggestions .badge:hover,
.theme--dark-mobile .search-page-form .btn-primary {
  background: #0b74a1 !important;
  border-color: #0b74a1 !important;
}

.theme--light-rtv-agd .search-input:focus,
.theme--dark-rtv-agd .search-input:focus {
  border-color: #570ab9 !important;
  box-shadow: 0 0 0 3px rgba(87, 10, 185, 0.25) !important;
}
.theme--light-rtv-agd .search-input-icon,
.theme--dark-rtv-agd .search-input-icon {
  border-color: #570ab9 !important;
  background: rgba(87, 10, 185, 0.1) !important;
  color: #570ab9 !important;
}
.search-input:focus + .theme--light-rtv-agd .search-input-icon,
.search-input:focus + .theme--dark-rtv-agd .search-input-icon {
  background: rgba(87, 10, 185, 0.15) !important;
}
.theme--light-rtv-agd .search-submit,
.theme--dark-rtv-agd .search-submit {
  background: #570ab9 !important;
  border-color: #570ab9 !important;
  color: #ffffff !important;
}
.theme--light-rtv-agd .search-submit:hover,
.theme--dark-rtv-agd .search-submit:hover {
  background: #6B0BD1 !important;
  border-color: #6B0BD1 !important;
  color: #ffffff !important;
}
.theme--light-rtv-agd .search-suggestions .badge:hover,
.theme--light-rtv-agd .search-page-form .btn-primary,
.theme--dark-rtv-agd .search-suggestions .badge:hover,
.theme--dark-rtv-agd .search-page-form .btn-primary {
  background: #570ab9 !important;
  border-color: #570ab9 !important;
}

.theme--light-biznes .search-input:focus,
.theme--dark-biznes .search-input:focus {
  border-color: #b19243 !important;
  box-shadow: 0 0 0 3px rgba(177, 146, 67, 0.25) !important;
}
.theme--light-biznes .search-input-icon,
.theme--dark-biznes .search-input-icon {
  border-color: #b19243 !important;
  background: rgba(177, 146, 67, 0.1) !important;
  color: #b19243 !important;
}
.search-input:focus + .theme--light-biznes .search-input-icon,
.search-input:focus + .theme--dark-biznes .search-input-icon {
  background: rgba(177, 146, 67, 0.15) !important;
}
.theme--light-biznes .search-submit,
.theme--dark-biznes .search-submit {
  background: #b19243 !important;
  border-color: #b19243 !important;
  color: #ffffff !important;
}
.theme--light-biznes .search-submit:hover,
.theme--dark-biznes .search-submit:hover {
  background: #C4A34D !important;
  border-color: #C4A34D !important;
  color: #ffffff !important;
}
.theme--light-biznes .search-suggestions .badge:hover,
.theme--light-biznes .search-page-form .btn-primary,
.theme--dark-biznes .search-suggestions .badge:hover,
.theme--dark-biznes .search-page-form .btn-primary {
  background: #b19243 !important;
  border-color: #b19243 !important;
}

[data-bs-theme=dark] .search-modal-content {
  background: #1a1a1a;
  color: #fff;
}
[data-bs-theme=dark] .search-modal-header .modal-title {
  color: #fff;
}
[data-bs-theme=dark] .search-input {
  background: #2a2a2a;
  border-color: #444;
  color: #fff;
}
[data-bs-theme=dark] .search-input::-moz-placeholder {
  color: #999;
}
[data-bs-theme=dark] .search-input::placeholder {
  color: #999;
}
[data-bs-theme=dark] .search-suggestions h6 {
  color: #ccc;
}
[data-bs-theme=dark] .search-suggestions .badge {
  background: #333;
  color: #ccc;
}
[data-bs-theme=dark] .search-suggestions .badge:hover {
  color: white;
}
[data-bs-theme=dark] .content-array__media-expert {
  background: #1a1a1a;
  border-color: #333;
}
[data-bs-theme=dark] .content-array__media-expert-header {
  border-color: #333;
}
[data-bs-theme=dark] .content-array__media-expert-header-title {
  color: #fff;
}
[data-bs-theme=dark] .media-expert-card {
  background: #2a2a2a;
  border-color: #444;
}
[data-bs-theme=dark] .media-expert-card__title {
  color: #fff;
}
[data-bs-theme=dark] .media-expert-card__cta {
  background: #FFF200;
}
.media-expert-card:hover [data-bs-theme=dark] .media-expert-card__cta {
  background: #FFE600;
}
[data-bs-theme=dark] .media-expert-card__cta-label-price {
  color: #000;
}
[data-bs-theme=dark] .media-expert-card__product-image-wrapper {
  background: #333;
}
[data-bs-theme=dark] .no-results-message {
  background: #2a2a2a;
}
[data-bs-theme=dark] .no-results-message h4 {
  color: #fff;
}

@media (max-width: 1200px) {
  .content-array__media-expert-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .content-array__media-expert-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .search-modal-content {
    margin: 1rem;
    border-radius: 12px;
  }
  .search-modal-header,
  .search-modal-body {
    padding: 1rem;
  }
  .search-input {
    font-size: 1rem;
    padding: 0.875rem 0.875rem 0.875rem 3.5rem;
  }
  .search-input-icon {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 1rem;
  }
  .search-submit {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
  .content-array__media-expert {
    padding: 1rem;
    margin: 1rem 0;
  }
  .content-array__media-expert-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .content-array__media-expert-cards--single {
    grid-template-columns: minmax(185px, 240px);
  }
  .content-array__media-expert-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .content-array__media-expert-header .content-array__media-expert-header-buttons {
    align-self: flex-end;
  }
  .media-expert-card__product-image-wrapper {
    height: 180px;
    max-height: 140px;
  }
}
@media (max-width: 480px) {
  .content-array__media-expert-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 767px) and (max-height: 480px) and (orientation: landscape) {
  .content-array__media-expert-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 767px) {
  .media-expert-card {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: auto 1fr auto;
    gap: 0;
    position: relative;
  }
  .media-expert-card > svg,
  .media-expert-card .media-expert-card__star {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    width: 22px;
    height: 22px;
    z-index: 2;
  }
  .media-expert-card .media-expert-card__product-image-wrapper {
    grid-column: 1;
    grid-row: 1/4;
    height: auto;
    min-height: 140px;
    max-height: none;
    padding: 0.375rem 0.25rem;
    position: relative;
  }
  .media-expert-card .media-expert-card__product-image-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  .media-expert-card .media-expert-card__content {
    grid-column: 2;
    grid-row: 1/3;
    padding: 0.375rem 0.375rem 0.25rem 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .media-expert-card .media-expert-card__header {
    margin-bottom: 0.25rem;
  }
  .media-expert-card .media-expert-card__title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.3;
    display: block;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }
  .media-expert-card .media-expert-card__pricing {
    margin-top: auto;
    margin-bottom: 0.25rem;
  }
  .media-expert-card .media-expert-card__pricing .media-expert-card__discount {
    font-size: 0.75rem;
    padding: 0.125rem 0.25rem;
  }
  .media-expert-card .media-expert-card__pricing .media-expert-card__previous-price-wrapper {
    font-size: 0.7rem;
  }
  .media-expert-card .media-expert-card__cta {
    grid-column: 2;
    grid-row: 3;
    margin: 0;
    padding: 0.7rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .media-expert-card .media-expert-card__cta .media-expert-card__cta-icon-wrapper {
    width: 1rem;
    height: 1rem;
  }
  .media-expert-card .media-expert-card__cta .media-expert-card__cta-icon {
    width: 14px;
    height: 14px;
  }
  .media-expert-card .media-expert-card__cta .media-expert-card__cta-label-price {
    font-size: 1rem;
  }
  .search-input {
    padding: 0.75rem 0.75rem 0.75rem 3.25rem;
  }
  .search-input-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9rem;
  }
  .search-suggestions .badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}
/* 
 * Style dla sekcji specjalnej na stronie głównej
 * z customowym tłem i dekoracjami po bokach
 */
.special-section-wrapper {
  position: relative;
  width: 100%;
  min-height: 400px;
  padding: 30px 0;
  overflow: visible; /* Pozwala dekoracjom wychodzić poza ekran */
}
.special-section-wrapper .container {
  position: relative;
  /* z-index usunięty - pozwala dropdown z navbar być powyżej */
}

/* Przycisk "Pokaż wszystkie" */
.special-section-view-all {
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.3s ease;
}
.special-section-view-all:hover {
  opacity: 0.8;
  text-decoration: none;
}
.special-section-view-all i {
  font-size: 1.2rem;
}

/* Dekoracje - domyślnie ukryte na mobile */
.special-section-decoration {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 300px;
  z-index: 1;
  pointer-events: none;
  display: none; /* Ukryte na mobile */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.special-section-decoration--left {
  left: 0;
  background-position: left center;
}

.special-section-decoration--right {
  right: 0;
  background-position: right center;
}

/* Desktop - pokaż dekoracje */
@media (min-width: 1200px) {
  .special-section-decoration {
    display: block;
    width: 300px;
  }
  .special-section-wrapper {
    padding: 30px 0;
  }
}
/* Bardzo duże ekrany - większe dekoracje */
/* Tablet - większy padding ale bez dekoracji */
@media (min-width: 768px) and (max-width: 1199px) {
  .special-section-wrapper {
    padding: 30px 0;
  }
}
/* Mobile - przewijanie i style są teraz kontrolowane przez PHP inline CSS bazując na zmiennej $isMobile */
/* Zostawiono tylko podstawowe style dla mobile */
@media (max-width: 767px) {
  .special-section-wrapper {
    padding: 30px 0;
  }
}
:root {
  --main-color: #007bff;
}

/* Basic styling */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* Globalnie bez podkreśleń linków */
a {
  text-decoration: none;
}

/* Tylko w treści artykułów linki mogą mieć podkreślenie */
.article a {
  text-decoration: underline;
}

/* Wyjątki - bez podkreślenia nawet w artykule */
.article .authorbox a,
.article .cat-label,
.article .colorfulcats a {
  text-decoration: none;
}

/* Avatar autora */
.avatar-author {
  width: 232px;
  height: 212px;
}
.avatar-author img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* Wyśrodkowanie tweetów */
.twitter-tweet {
  margin-left: auto !important;
  margin-right: auto !important;
}

.twitter-tweet-rendered {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Stylowanie blockquote (cytaty) - z wykluczeniem tweetów */
.article blockquote:not(.twitter-tweet) {
  position: relative;
  padding: 10px 20px 10px 70px;
  margin: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 100%;
}
.article blockquote:not(.twitter-tweet) p {
  font-family: Poppins;
  line-height: 1.8;
}
.article blockquote:not(.twitter-tweet):before {
  color: #ca0301;
  content: url("../../img/double-quotes-l.svg");
  height: 50px;
  width: 50px;
  display: block;
  left: 0px;
  position: absolute;
  top: 0px;
}

/* Globalne stylowanie nagłówków */
h1 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 2rem;
  line-height: 42px;
  letter-spacing: 0.01em;
}

h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
}

.menu-container {
  margin-left: 30px;
}

.cover {
  -o-object-fit: cover;
  object-fit: cover;
}

.menu-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.dropdown-menu {
  font-size: smaller;
}

.dropdown-menu a {
  color: #232323;
  text-decoration: none;
  padding: 0.25rem 1rem;
}

.banner-full-width {
  width: 100%;
  background-color: none;
}

.height-300 {
  height: 300px;
}

.height-340 {
  height: 340px;
}

.height-280 {
  height: 280px;
}

.height-120 {
  height: 120px;
}

.right-col {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 352px;
  padding-bottom: 72px;
}

.side-widget {
  width: 100%;
}

.rounded-small {
  border-radius: 6px;
}

.ads-widget {
  background: #232323;
  border-radius: 6px;
  height: 280px;
}

.ads-640h {
  background: #232323;
  border-radius: 6px;
  margin-top: 24px;
  height: 640px;
}

.ads-100h {
  background: none;
  border-radius: 6px;
  margin-top: 24px;
  height: 100px;
}

.ads-340h {
  background: none;
  border-radius: 6px;
  margin-top: 24px;
  height: 340px;
}

.flex-column-full {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  gap: 38px;
  align-content: center;
  justify-content: space-between;
}

#news_feed {
  margin-top: 24px;
}

.clearfix {
  overflow: auto;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.large-post-meta {
  display: flex;
  align-items: center;
}

.label {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  justify-content: center;
  align-items: center;
  padding: 8px 9px 8px 10px;
  position: static;
  height: 32px;
  left: 0px;
  top: 0px;
  flex: none;
  order: 0;
  flex-grow: 0;
  border-radius: 6px;
}

.label-dark {
  background: #232323;
}

.label-light {
  background: #F3F3F3;
  color: #232323;
}

.label-warning {
  background: #232323;
}

.label-comments {
  background: #F3F3F3;
  color: #232323;
}

.widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
  float: left;
}

.newswidget {
  width: 848px;
  margin: 0;
}

.mini-widget {
  display: flex;
  justify-content: flex-start;
}
.mini-widget .mini-widget-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 16px;
}
.mini-widget .mini-widget-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}
.mini-widget .mini-widget-title {
  max-width: 240px;
}
.mini-widget .mini-widget-title h7 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.01em;
}
.mini-widget .small-widget-title h7 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 11px;
  line-height: 14px;
}
.mini-widget .small-widget-title h4, .mini-widget .small-widget-title h5 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
}
.mini-widget .small-widget-title h8 {
  font-family: Poppins;
  font-weight: 400;
  font-size: 11px;
  line-height: 12px;
}

.logo-footer {
  width: 80%;
  height: auto;
  max-width: 381px;
  margin: auto;
}

.copyright {
  font-size: 12px;
}

footer div p.about {
  font-family: "Inter";
  font-size: 12px;
  color: #676767;
  margin: 32px 0;
}

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

.menu_footer {
  display: flex;
  align-content: flex-end;
}
.menu_footer ul {
  display: flex;
  justify-content: flex-end;
}
.menu_footer ul li {
  list-style: none;
  margin: 0 16px;
}
.menu_footer ul li a {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  text-align: justify;
  letter-spacing: 0.01em;
}

.spacer {
  position: static;
  width: 32px;
  height: 0px;
  top: 0px;
  border: 1px solid #EEEEEE;
  transform: rotate(90deg);
  flex: none;
  order: 1;
  flex-grow: 0;
  margin: 0px 24px;
}

@media screen and (max-width: 800px) {
  .newswidget {
    width: 100%;
  }
  .spacer {
    border: 1px solid #d4d4d4;
    margin: 0px 0px;
  }
}
#forum-widget {
  width: 100%;
}

.icon-color-inactive {
  color: #BEBEBE;
}

#art-topBaner {
  overflow: hidden;
}

#home-sliderBaner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  min-height: 100px;
  margin: 0 auto 10px auto;
  text-align: center;
}
#home-sliderBaner img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
#home-sliderBaner ins {
  display: block;
  width: 100%;
  max-width: 1300px;
  min-height: 100px;
}

#most_popular_category_arts {
  height: auto;
}

.forum-avatar {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: #FF3F3E;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feed-details {
  margin-left: 20px;
  max-width: 242px;
}

.feed-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 20px;
}

.post {
  display: flex;
  justify-content: flex-start;
  gap: 24px;
}
.post a {
  display: flex;
  justify-content: flex-start;
}
.post a .mini-widget-thumb {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 16px;
}
.post a .mini-widget-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
}
.post a .mini-widget-title {
  max-width: 240px;
}
.post a .mini-widget-title h7 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 10px;
  line-height: 14px;
  letter-spacing: 0.01em;
  color: #676767;
}
.post a .mini-widget-title h5 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #232323;
  margin-top: 8px;
}
.post a .mini-widget-title time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  margin-left: 0px;
  letter-spacing: 0.02em;
  color: #676767;
}

/* Carousel indicators */
.carousel-indicators {
  justify-content: flex-start !important;
  margin-left: 24px !important;
  margin-right: auto !important;
}
.carousel-indicators button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: #e0e0e0 !important;
  opacity: 0.7 !important;
}
.carousel-indicators button.active {
  opacity: 1 !important;
  background-color: #e0e0e0 !important;
}

/* Carousel navigation buttons */
.carousel-control-prev,
.carousel-control-next {
  opacity: 0.7 !important;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1 !important;
}
.carousel-control-prev .carousel-control-prev-icon,
.carousel-control-prev .carousel-control-next-icon,
.carousel-control-next .carousel-control-prev-icon,
.carousel-control-next .carousel-control-next-icon {
  filter: none !important;
}

/* Nadpisanie filtra Bootstrapa dla dark mode - większa specyficzność */
html[data-bs-theme=dark] .carousel .carousel-control-next-icon,
html[data-bs-theme=dark] .carousel .carousel-control-prev-icon,
html[data-bs-theme=dark].carousel .carousel-control-next-icon,
html[data-bs-theme=dark].carousel .carousel-control-prev-icon {
  filter: none !important;
}

/* Nav pills */
.nav-pills {
  margin-bottom: 3px;
}
.nav-pills .nav-item .nav-link {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.01em;
}

/* Lazy iframe loading */
iframe.lazy-iframe {
  background: #f0f0f0;
  border: 1px solid #ddd;
  min-height: 400px;
}
iframe.lazy-iframe::before {
  content: "Ładowanie...";
  display: block;
  text-align: center;
  padding: 20px;
  color: #666;
}

iframe.lazy-loaded {
  background: transparent;
  border: none;
}

/* Badge colors */
.badge-red {
  background: #CD0504 !important;
  color: #fff !important;
  cursor: pointer;
}

.base {
  color: #232323;
  background-color: #ffffff;
}
.base .icon-color {
  color: #CD0504;
}
.base {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.base .full-cont {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  width: 100%;
  background: #ffffff;
}
.base .full-cont #t_top {
  background-color: #ffffff;
}
.base .full-cont .nastepnyartykul {
  padding: 0;
  background: transparent;
  font-weight: 400;
  color: transparent;
  font-size: 0;
  display: block;
  text-align: center;
  position: relative;
  margin: 3rem auto;
  max-width: 800px;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.base .full-cont .nastepnyartykul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.base .full-cont .nastepnyartykul * {
  display: none !important;
}
.base .nastepnyartykul {
  padding: 0;
  background: transparent;
  font-weight: 400;
  color: transparent;
  font-size: 0;
  display: block;
  text-align: center;
  position: relative;
  margin: 3rem auto;
  max-width: 800px;
  height: 1px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  overflow: visible;
}
.base .nastepnyartykul::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}
.base .nastepnyartykul * {
  display: none !important;
}
.base .widget-title {
  display: flex;
  flex-direction: row;
  align-items: left;
  align-content: flex-start;
  gap: 10px;
}
.base .widget-title i {
  display: flex;
  font-size: 20px;
  flex-direction: row;
  align-items: flex-end;
}
.base .widget-title i::before {
  display: flex;
  align-items: flex-end;
}
.base .widget-title .color-red {
  color: #CD0504;
}
.base .widget-title .color-accent {
  color: #CD0504;
}
.base .widget-title h4,
.base .widget-title h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: #232323;
}
@media screen and (max-width: 900px) {
  .base .widget-title h4,
  .base .widget-title h2 {
    font-size: 1.286rem;
    line-height: 2.125rem;
  }
}
.base .widget-title p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #232323;
}
.base .widget-title .see_all {
  margin-right: 0;
  margin-left: auto;
  align-self: flex-end;
  color: #676767;
}
.base .widget-title .see_all a {
  color: #676767;
  font-size: 14px;
}
.base .middle-widget-title h4,
.base .middle-widget-title h2 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 2.125rem;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: #232323;
}
.base .middle-widget-title p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #232323;
}
.base .middle-widget-title .see_all {
  margin-right: 0;
  margin-left: auto;
  align-self: flex-end;
  color: #676767;
}
.base .middle-widget-title .see_all a {
  color: #676767;
  font-size: 14px;
}
.base {
  display: flex;
  font-family: "Poppins", sans-serif;
}
.base nav {
  background-color: #ffffff;
}
.base nav.black-bg {
  background-color: #161616;
}
.base .menu,
.base .submenu,
.base .top-menu {
  /*width: $screen-lg;*/
  margin: 0 auto;
  padding: 0 15px;
  list-style-type: none;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  background-color: #ffffff;
  gap: 11px;
  flex-wrap: nowrap;
  background: none;
}
.base .menu li,
.base .submenu li,
.base .top-menu li {
  line-height: 20px;
  border-radius: 6px;
}
.base .menu li a,
.base .submenu li a,
.base .top-menu li a {
  color: #232323;
  text-decoration: none;
}
.base .menu .dropdown,
.base .submenu .dropdown,
.base .top-menu .dropdown {
  position: static;
  display: inline-block;
}
.base .menu .dropdown .dropdown-menu,
.base .submenu .dropdown .dropdown-menu,
.base .top-menu .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  z-index: 10000;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #ccc;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.base .menu .dropdown .dropdown-menu li,
.base .submenu .dropdown .dropdown-menu li,
.base .top-menu .dropdown .dropdown-menu li {
  list-style: none;
  text-align: left;
  padding: 5px 10px;
  width: 300px;
}
.base .menu .dropdown .dropdown-menu li.parent,
.base .submenu .dropdown .dropdown-menu li.parent,
.base .top-menu .dropdown .dropdown-menu li.parent {
  border-bottom: 1px solid #F3F3F3;
  font-weight: 600;
}
.base .menu .dropdown:hover .dropdown-menu,
.base .submenu .dropdown:hover .dropdown-menu,
.base .top-menu .dropdown:hover .dropdown-menu {
  display: block;
}
.base .menu .item,
.base .submenu .item,
.base .top-menu .item {
  padding: 10px;
}
.base .menu .item .button,
.base .submenu .item .button,
.base .top-menu .item .button {
  padding: 9px 5px;
}
.base .menu {
  font-size: 15px;
  /*li:last-child {
    margin-left: auto;
  }*/
}
.base .top-menu {
  background-color: #161616;
  /*height: 56px;*/
  font-size: 14px;
}
.base .top-menu .active {
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
  font-size: 12px;
}
.base .top-menu li {
  background-color: #161616;
}
.base .top-menu li .active {
  background: rgba(255, 255, 255, 0.15);
}
.base .top-menu li a {
  color: #D4D4D4;
}
.base .top-menu {
  /*li:last-child {
    margin-left: auto;
  }*/
}
.base .top-menu .item {
  color: #D4D4D4;
}
.base h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.01em;
  color: #232323;
}
.base h4 a {
  color: #232323;
}
.base .menu_footer {
  display: flex;
  align-content: flex-end;
}
.base .menu_footer ul {
  display: flex;
  justify-content: flex-end;
}
.base .menu_footer ul li {
  list-style: none;
  margin: 0 16px;
}
.base .menu_footer ul li a {
  font-family: "Inter";
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  /* identical to box height, or 133% */
  text-align: justify;
  letter-spacing: 0.01em;
  /* Secondary/Darker */
  color: #232323;
}
.base .title-area {
  padding-top: 5px;
  position: relative;
}
.base .title-area h2,
.base .title-area h3 {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2.125rem;
  /* or 142% */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
  margin-bottom: 0px;
}
@media screen and (max-width: 900px) {
  .base .title-area h2 {
    font-size: 1.286rem;
    line-height: 100%;
  }
}
.base .title-area h7 {
  font-size: 12px;
  color: #676767;
}
.base .title-area .large-post-meta {
  gap: 10px;
}
.base .title-area .large-post-meta .avatar {
  height: 24px;
  width: 24px;
}
.base .title-area .large-post-meta .avatar img {
  height: 24px;
  width: 24px;
  border-radius: 12px;
}
.base .title-area .large-post-meta .author {
  font-family: "Poppins";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 18px;
  color: #232323;
  letter-spacing: 0.02em;
}
.base .title-area .large-post-meta time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  /* identical to box height, or 133% */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
}
.base .cover-card {
  width: 100%;
  /*height: 403px;*/
  border-radius: 6px;
  /*overflow: hidden;*/
}
.base .cover-card img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 6px;
}
.base .cover-card .title-area {
  width: inherit;
}
.base .cover-card .title-area h7 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
  margin-bottom: 5px;
}
.base .cover-card .title-area h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
@media screen and (max-width: 1199px) {
  .base .cover-card {
    width: 100%;
    border-radius: 6px;
    /*overflow: hidden;*/
  }
  .base .cover-card img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 6px;
  }
}
.base .filtering-navbar ul li a {
  color: #939393;
}
.base .filtering-navbar ul li.active a {
  color: #CD0504;
}
.base .filtering-bg {
  background-color: #CD0504;
}
.base .border-color-accent {
  border-color: #CD0504 !important;
}
.base .text-color {
  color: #232323 !important;
}
.base .feed-details .forum-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 18px;
  color: #232323;
  margin-bottom: 0;
}
.base .feed-details .forum-title a {
  color: #232323;
  font-weight: 700;
}
.base .feed-details .author {
  font-family: "Poppins";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  color: #232323;
  letter-spacing: 0.02em;
}
.base .activity-feed {
  width: 100%;
  border-radius: 6px;
  border: 1px solid #F3F3F3;
  padding: 20px;
}
.base .activity-feed .feed-item .feed-details .forum-title {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: #232323;
}
.base .activity-feed .feed-item .feed-details .forum-title a {
  color: #232323;
  font-weight: 700;
}
.base .activity-feed .feed-item .feed-details .author {
  font-family: "Poppins";
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  color: #232323;
  letter-spacing: 0.02em;
}
.base footer {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  margin-top: 60px;
  border-top: 0px;
  background-color: #ffffff;
  z-index: 1;
  /*max-width: 1200px;*/
  width: 100%;
  margin: auto;
  padding-top: 32px;
}
.base footer .footer_bottom {
  width: 100%;
}
.base footer .socials a {
  font-size: 1rem;
  color: #232323;
}
.base footer .socials a i {
  font-size: 1.5rem;
}
.base footer div h5 {
  font-family: "Poppins";
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0px;
}
.base footer div .box_news .footer_link {
  font-family: "Inter";
  list-style: none;
  font-size: 12px;
  color: #939393;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.01em;
}
.base footer div .box_news ul {
  padding-left: 0;
}
.base footer div .box_news ul li {
  font-family: "Inter";
  list-style: none;
  font-size: 12px;
}
.base footer div .box_news ul li a {
  color: #939393;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0.01em;
}
.base footer .accordion {
  margin-top: 20px;
  width: 100%;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 0 24px;
  border: none;
}
.base footer .accordion .accordion-item:not(:last-child) {
  border-bottom: 1px solid #F3F3F3 !important;
}
.base footer .accordion .accordion-item {
  padding: 16px 0;
  background-color: #ffffff;
}
.base footer .accordion .accordion-item path {
  fill: red;
}
.base footer .accordion .accordion-item .accordion-button::after {
  color: #fff;
  fill: red;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='7 7 10 10' preserveAspectRatio='x200Y200 meet' fill='%23bebebe'%3E%3Cpath d='M12 11.8284L9.17154 14.6569L7.75732 13.2426L12 9L16.2426 13.2426L14.8284 14.6569L12 11.8284Z'%3E%3C/path%3E%3C/svg%3E");
}
.base footer .accordion .accordion-item .accordion-button:not(.collapsed) {
  color: #232323;
  background-color: #ffffff;
  border-color: #ffffff;
}
.base footer .accordion .accordion-item .accordion-button {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #232323;
  background-color: #ffffff;
  border-radius: 6px;
  padding: 16px 0;
  border: none;
}
.base .post-vertical .cover-card {
  width: 100%;
  /*height: 403px;*/
  border-radius: 6px;
  /*overflow: hidden;*/
}
.base .post-vertical .cover-card img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 6px;
}
.base .post-vertical .cover-card .title-area {
  width: inherit;
}
.base .post-vertical .cover-card .title-area h7 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
  margin-bottom: 5px;
}
.base .post-vertical .cover-card .title-area h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
@media screen and (max-width: 1199px) {
  .base .post-vertical .cover-card {
    width: 100%;
    border-radius: 6px;
    /*overflow: hidden;*/
  }
  .base .post-vertical .cover-card img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 6px;
  }
}
.base .post-vertical .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .post-vertical .vertical-post-meta .author-data .avatar {
  height: 24px;
  width: 24px;
}
.base .post-vertical .vertical-post-meta .author-data .avatar img {
  height: 24px;
  width: 24px;
  border-radius: 12px;
}
.base .post-vertical .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .post-vertical .vertical-post-meta .author-data .author-name .author {
  color: #232323;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
}
.base .post-vertical .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #676767;
}
.base .form-check-input {
  width: 2.5em;
  height: 1.25em;
  background-color: #3C3C3C;
  border-color: #F3F3F3;
  cursor: pointer;
}
.base .form-check-input:checked {
  background-color: #CD0504;
  border-color: #CD0504;
}
.base .form-check-input:focus {
  border-color: #CD0504;
  box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.25);
}
.base .form-check-input:hover:not(:checked) {
  background-color: #676767;
}
.base .form-switch .form-check-input {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.base .form-switch .form-check-input:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.base .video-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
}
.base .video-widget .widget-title {
  width: 100%;
}
.base .video-widget .widget-title h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.01em;
  color: #232323;
}
.base .video-widget .widget-body {
  display: flex;
  gap: 24px;
}
.base .video-widget .widget-body .post-video-large {
  width: 100%;
  height: 332px;
  border-radius: 6px;
  overflow: hidden;
}
.base .video-widget .widget-body .post-video-large .post-media {
  width: 100%;
  height: 332px;
  border-radius: 6px;
}
.base .video-widget .widget-body .post-video-large .post-media .embed-responsive {
  height: 332px;
}
.base .video-widget .widget-body .post-video-large .post-media .embed-responsive img {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: 332px;
}
.base .video-widget .widget-body .post-video-large .post-media .video__youtube img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.base .video-widget .widget-body {
  /*.post-video-small {
    width: 283px;
    height: 392px;
    border-radius: 6px;
    overflow: hidden;

    .post-media {

      width: 283px;
      height: 392px;
      border-radius: 6px;

      .embed-responsive {
        height: 392px;

        img {
          min-width: 100%;
          min-height: 100%;
          width: auto;
          height: 392px;
        }

      }

      .video__youtube {
        img {
          object-fit: cover;
          object-position: center;

        }
      }

    }
  }*/
}
.base .page-title-section {
  width: 100%;
  margin-top: 60px;
  margin-bottom: 60px;
}
.base .page-title-section .title-area {
  width: 100%;
}
.base .page-title-section .title-area h1 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  /* identical to box height, or 131% */
  letter-spacing: 0.01em;
  color: #232323;
}
.base .page-title-section .title-description-area p {
  /* Body/Text/Regular/Regular */
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  /* or 157% */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
}
.base .title-area-mobile {
  width: 100%;
}
.base .title-area-mobile h1 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  /* identical to box height, or 131% */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
.base .title-description-area-mobile p {
  /* Body/Text/Regular/Regular */
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  /* or 157% */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
}
.base .article p {
  font-family: "Inter", sans-serif;
}
.base .article .accordion-button:not(.collapsed) {
  color: #232323;
  background-color: #ffffff;
  border-color: #ffffff;
}
.base .article .colorfulcats {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.base .article .colorfulcats a {
  text-decoration: none;
}
.base .article .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .article .colorfulcats a.cat-label {
  padding-left: 10px;
  padding-right: 10px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.base .article a {
  color: #CD0504;
  text-decoration: underline;
}
.base .article p {
  color: #232323;
  line-height: 1.625rem;
}
.base .article .authorbox a {
  color: #232323;
  text-decoration: none;
}
.base .article h1 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 2.3rem;
  margin-top: 3rem;
  line-height: 2.5rem;
  letter-spacing: 0.01em;
  color: #232323;
}
.base .article .mm-gallery .glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: "Glyphicons Halflings";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.base .article .mm-gallery .carousel {
  width: 100%;
  aspect-ratio: 16/9;
  margin: auto;
}
.base .article .mm-gallery .carousel .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.base .article .mm-gallery .carousel .glyphicon-chevron-left {
  width: 30px;
  height: 30px;
  margin-top: -10px;
  font-size: 30px;
}
.base .article .mm-gallery .carousel .glyphicon-chevron-right {
  width: 30px;
  height: 30px;
  margin-top: -10px;
  font-size: 30px;
}
.base .article .mm-gallery .carousel .glyphicon-chevron-left:before {
  content: "\e079";
}
.base .article .mm-gallery .carousel .glyphicon-chevron-right:before {
  content: "\e080";
}
.base .article .mm-gallery .carousel ol.carousel-indicators {
  bottom: 0px;
  justify-content: flex-start;
  margin-left: 0;
  margin-right: auto;
}
.base .article .mm-gallery .carousel ol.carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #e0e0e0;
  opacity: 0.7;
}
.base .article .mm-gallery .carousel ol.carousel-indicators button.active {
  opacity: 1;
  background-color: #e0e0e0;
}
.base .article .mm-gallery .carousel .carousel-control {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15%;
  opacity: 0.5;
  filter: alpha(opacity=50);
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  background-color: rgba(0, 0, 0, 0);
}
.base .article .mm-gallery .carousel .carousel-control.left {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0, rgba(0, 0, 0, 0.0001) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
}
.base .article .mm-gallery .carousel .carousel-control.right,
.base .article .mm-gallery .carousel .carousel-control.carousel-control-next {
  left: auto;
  right: 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0, rgba(0, 0, 0, 0.5) 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
}
.base .article .post-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.base .article .post-info .article-post-meta {
  display: flex;
  flex-direction: column;
}
.base .article .post-info .article-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .article .post-info .article-post-meta .author-data .avatar {
  height: 40px;
  width: 40px;
}
.base .article .post-info .article-post-meta .author-data .avatar img {
  height: 40px;
  width: 40px;
  border-radius: 20px;
}
.base .article .post-info .article-post-meta .author-data .author-name .author {
  margin-left: 14px;
  /* H6/Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
.base .article .post-info .article-post-meta .author-data .author-name time {
  margin-left: 14px;
  /* H7 / Regular */
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.01em;
  /* Secondary/Light */
  color: #939393;
}
.base .article .post-info .post-sharing a {
  text-decoration: none;
}
.base .article .post-info .post-sharing .cm-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #CD0504;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .post-sharing .fb-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #365396;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .post-sharing .tw-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #00A8F0;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .post-sharing ul.list-inline {
  display: flex;
  list-style-type: none;
  gap: 8px;
}
.base .article .post-info .post-sharing ul.list-inline li .cm-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #CD0504;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .post-sharing ul.list-inline li .fb-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #365396;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .post-sharing ul.list-inline li .tw-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #00A8F0;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-info .row {
  width: 100%;
}
.base .article .title-area {
  width: 100%;
}
.base .article .columns {
  display: flex;
  flex-direction: row;
  gap: 64px;
}
.base .article .columns .left-col .post-media {
  width: 792px;
  margin-bottom: 48px;
  border-radius: 6px;
}
.base .article .columns .left-col .post-media img {
  width: 792px;
  border-radius: 6px;
}
.base .article .columns .left-col .post-desc p {
  /* Body/Text/Large/Regular */
  text-align: justify;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  letter-spacing: 0.01em;
  /* Secondary/Darker */
  color: #3C3C3C;
  margin-bottom: 12px;
}
.base .article .columns .left-col .post-desc img {
  max-width: 792px;
}
.base .article .columns .left-col .post-desc ul {
  padding-inline-start: 40px;
  margin-bottom: 12px;
  /* Body/Text/Large/Regular */
  text-align: justify;
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  /* or 162% */
  letter-spacing: 0.01em;
  /* Secondary/Darker */
  color: #3C3C3C;
}
.base .article .columns .left-col .post-desc h3 {
  /* H3/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 1.5rem; /* 24px przy podstawowym 16px */
  line-height: 1.4;
  /* identical to box height, or 142% */
  letter-spacing: 0.01em;
}
.base .article .columns .left-col .post-desc .post-sharing {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 32px;
  margin-bottom: 32px;
}
.base .article .columns .left-col .post-desc .post-sharing p {
  /* H6/Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
.base .article .columns .left-col .post-desc .post-sharing ul.list-inline {
  display: flex;
  list-style-type: none;
  gap: 8px;
}
.base .article .columns .left-col .post-desc .post-sharing ul.list-inline li .cm-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #CD0504;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .columns .left-col .post-desc .post-sharing ul.list-inline li .fb-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #365396;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .columns .left-col .post-desc .post-sharing ul.list-inline li .tw-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #00A8F0;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .columns .left-col .post-desc .post-bottom .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.base .article .columns .left-col .post-desc .post-bottom .tags a {
  padding: 8px 9px 8px 10px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), #262626;
  border-radius: 6px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* identical to box height, or 160% */
  letter-spacing: 0.02em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .columns .left-col .post-desc .comments-widget {
  width: 100%;
}
.base .article .columns .left-col .post-desc .separator {
  width: 100%;
  margin: 32px 0;
}
.base .article .columns .right-col {
  display: flex;
  flex-direction: column;
  width: 336px;
}
.base .article .columns .right-col .widget .widget-title {
  margin-bottom: 24px;
}
.base .article .columns .right-col .widget .widget-title h4 {
  font-size: 16px;
  line-height: 24px;
}
.base .article .columns .right-col .widget .widget-title p {
  font-family: Inter;
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.01em;
  color: #3C3C3C;
}
.base .article .fb-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #365396;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-bottom .tags {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
}
.base .article .post-bottom .tags a {
  padding: 8px 9px 8px 10px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)), #262626;
  border-radius: 6px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* identical to box height, or 160% */
  letter-spacing: 0.02em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .cm-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #CD0504;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .tw-button {
  padding: 14px 20px;
  /* Primary/Default */
  background: #00A8F0;
  border-radius: 6px;
  /* H6/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  /* identical to box height, or 143% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .article .post-sharing a {
  text-decoration: none;
}
.base .article .post-sharing p {
  font-family: Poppins;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1%;
}
.base .article img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 100%;
  max-height: 100%;
  height: auto;
}
.base .article blockquote:not(.twitter-tweet) {
  position: relative;
  padding: 10px 20px 10px 70px;
  margin: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 600;
  max-width: 100%;
}
.base .article blockquote:not(.twitter-tweet) p {
  font-family: Poppins;
  line-height: 1.8;
}
.base .article blockquote:not(.twitter-tweet):before {
  color: #ca0301;
  content: url("../../img/double-quotes-l.svg");
  height: 50px;
  width: 50px;
  display: block;
  left: 0px;
  position: absolute;
  top: 0px;
}
@media screen and (max-width: 1200px) {
  .base .article {
    width: 100%;
  }
  .base .article .title-area {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  .base .article {
    width: 100%;
  }
  .base .article h1 {
    font-size: 1.7rem;
  }
  .base .article .columns {
    flex-direction: column;
    gap: 32px;
  }
  .base .article .columns .left-col {
    width: 100%;
  }
  .base .article .columns .right-col {
    width: 100%;
  }
}
@media screen and (max-width: 800px) {
  .base .article {
    width: 100%;
  }
  .base .article .post-media img {
    height: 340px;
    width: auto;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
    width: auto;
  }
}
@media screen and (min-width: 1200px) {
  .base .posts-col .large-widget {
    margin: 0;
    display: flex;
    flex-direction: row;
  }
  .base .posts-col .large-widget .post-media {
    width: 248px;
    height: 224px;
    border-radius: 6px;
  }
  .base .posts-col .large-widget .post-media .large-post-media-cover {
    width: 248px;
    height: 224px;
    border-radius: 6px;
    overflow: hidden;
  }
  .base .posts-col .large-widget .post-media .large-post-media-cover img {
    width: 248px;
    height: 224px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    min-height: 100%;
    min-width: 100%;
  }
  .base .posts-col .large-widget .title-area {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 10px;
  }
  .base .posts-col .large-widget .title-area .colorfulcats {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .base .posts-col .large-widget .title-area .colorfulcats .label-primary {
    background-color: #CD0504;
  }
  .base .posts-col .large-widget .title-area .colorfulcats a.cat-label {
    padding-left: 10px;
    padding-right: 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .base .posts-col .large-widget .title-area .large-post-meta {
    display: flex;
    flex-direction: row;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #232323;
    letter-spacing: 0.02em;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .avatar {
    height: 24px;
    width: 24px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .avatar img {
    height: 24px;
    width: 24px;
    border-radius: 12px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .author-name {
    margin-left: 10px;
    color: #232323;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    /* identical to box height */
    letter-spacing: 0.02em;
    /* Secondary/Darkest */
  }
  .base .posts-col .large-widget .title-area .large-post-meta .post-time time {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #676767;
  }
}
@media screen and (max-width: 1199px) {
  .base .posts-col .large-widget {
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: row;
  }
  .base .posts-col .large-widget .post-media {
    border-radius: 6px;
    overflow: hidden;
  }
  .base .posts-col .large-widget .post-media img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    min-height: 100%;
    min-width: 100%;
  }
  .base .posts-col .large-widget .title-area {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 15px;
  }
  .base .posts-col .large-widget .title-area .colorfulcats {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .base .posts-col .large-widget .title-area .colorfulcats .label-primary {
    background-color: #CD0504;
  }
  .base .posts-col .large-widget .title-area .colorfulcats a.cat-label {
    padding-left: 10px;
    padding-right: 10px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .base .posts-col .large-widget .title-area .large-post-meta {
    display: flex;
    flex-direction: row;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data {
    font-family: "Poppins";
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    color: #232323;
    letter-spacing: 0.02em;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .avatar {
    height: 24px;
    width: 24px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .avatar img {
    height: 24px;
    width: 24px;
    border-radius: 12px;
  }
  .base .posts-col .large-widget .title-area .large-post-meta .author .author-data .author-name {
    margin-left: 10px;
    color: #232323;
    font-family: Poppins;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 18px;
    /* identical to box height */
    letter-spacing: 0.02em;
    /* Secondary/Darkest */
  }
  .base .posts-col .large-widget .title-area .large-post-meta .post-time time {
    font-family: Poppins;
    font-style: normal;
    font-weight: normal;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 0.01em;
    color: #676767;
  }
}
.base .pagination-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* Secondary/Extra Light */
  border: 1px solid #F3F3F3;
  box-sizing: border-box;
  border-radius: 8px;
}
.base .pagination-main .pagination-main-heading {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  justify-content: space-between;
}
.base .pagination-main .pagination-main-heading .accordion-button {
  font-size: 1rem;
  font-weight: 500;
}
.base .pagination-main .pagination-main-heading h5 {
  /* H5/Semi */
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  color: #232323;
}
.base .pagination-main .accordion-body {
  padding: 0;
}
.base .pagination-main .pagination-main-content {
  display: flex;
  flex-direction: column;
}
.base .pagination-main .pagination-main-content .menu-list-active {
  /*height: 48px;*/
  display: block;
  padding: 15px 19px;
  border-left: 1px solid #CD0504;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  color: #CD0504;
  text-decoration: none;
  background: rgba(205, 5, 4, 0.04);
}
.base .pagination-main .pagination-main-content .menu-list {
  padding: 15px 19px;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
  color: #676767;
  background: #ffffff;
  text-decoration: none;
}
.base .pagination-main .pagination-main-content .menu-list a {
  text-decoration: none;
  color: #232323;
}
.base .pagination-main .pagination-main-content .menu-list-active {
  /*height: 48px;*/
  padding: 15px 19px;
  border-left: 1px solid #CD0504;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  color: #CD0504;
  background: rgba(205, 5, 4, 0.04);
}
.base .pagination-main .pagination-main-content .menu-list-active a {
  color: #CD0504;
  text-decoration: none;
}
.base .pagination-main .pagination-main-content .menu-list.active {
  /*height: 48px;*/
  padding: 15px 19px;
  border-left: 1px solid #CD0504;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  color: #CD0504;
  background: rgba(205, 5, 4, 0.04);
}
.base .pagination-main .pagination-main-content .menu-list.active a {
  color: #CD0504;
  text-decoration: none;
}
.base .pagination-main .pagination-main-content .active {
  /*height: 48px;*/
  display: block;
  padding: 15px 19px;
  border-left: 1px solid #CD0504;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  color: #CD0504;
  text-decoration: none;
  background: rgba(205, 5, 4, 0.04);
  text-decoration: none;
}
.base .pagination-main .pagination-main-content .active a {
  color: #CD0504;
  text-decoration: none;
}
.base .pagination-bottom {
  display: flex;
  flex-direction: row;
  width: 100%;
  /* Secondary/Extra Light */
  border: 1px solid #F3F3F3;
  box-sizing: border-box;
  border-radius: 6px;
  margin-bottom: 48px;
}
.base .pagination-bottom .pagination-bottom-content {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
}
.base .pagination-bottom .pagination-bottom-content .menu-list {
  display: flex;
  align-items: center;
  height: 48px;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Dark */
}
.base .pagination-bottom .pagination-bottom-content .menu-list i {
  font-size: 18px;
}
.base .pagination-bottom .pagination-bottom-content .menu-list {
  color: #676767;
}
.base .pagination-bottom .pagination-bottom-content .menu-list a {
  display: flex;
  align-items: center;
  padding: 15px 19px;
  color: #939393;
  text-decoration: none;
}
.base .pagination-bottom .pagination-bottom-content .menu-list a.active {
  color: #CD0504;
}
.base .pagination-bottom .pagination-bottom-content .menu-list a i {
  font-size: 18px;
}
.base .pagination-bottom .pagination-bottom-content .menu-list-active {
  height: 48px;
  padding: 15px 19px;
  border-left: 1px solid #CD0504;
  /* H7 / Medium */
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  color: #CD0504;
  background: rgba(205, 5, 4, 0.04);
}
.base .gallery-slider-mobile {
  height: 400px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .gallery-slider-mobile .gallery-slider-item {
  height: 400px;
  border-radius: 6px;
  position: relative;
  background-size: cover;
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects .caption {
  position: absolute;
  left: 24px;
  bottom: 56px;
  z-index: 1;
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  color: #D4D4D4;
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects .caption h3,
.base .gallery-slider-mobile .gallery-slider-item .slider-effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 1.86rem;
  line-height: 2.5rem;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-mobile .gallery-slider-item .slider-effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-mobile .gallery-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  border-radius: 6px;
}
.base .gallery-slider-mobile .gallery-slider-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .gallery-slider-mobile .gallery-slider-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #FFFFFF;
  margin-right: 8px;
}
.base .gallery-slider-large {
  width: 100%;
  height: 388px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .gallery-slider-large .gallery-slider-item {
  width: 100%;
  height: 388px;
  border-radius: 6px;
  position: relative;
  background-size: cover;
}
.base .gallery-slider-large .gallery-slider-item .slider-effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .gallery-slider-large .gallery-slider-item .slider-effects .caption {
  position: absolute;
  left: 24px;
  bottom: 56px;
  z-index: 1;
}
.base .gallery-slider-large .gallery-slider-item .slider-effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
  color: #D4D4D4;
}
.base .gallery-slider-large .gallery-slider-item .slider-effects .caption h3,
.base .gallery-slider-large .gallery-slider-item .slider-effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .gallery-slider-large .gallery-slider-item .slider-effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-large .gallery-slider-item .slider-effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-large .gallery-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  border-radius: 6px;
}
.base .gallery-slider-large .gallery-slider-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .gallery-slider-large .gallery-slider-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .gallery-slider-large .gallery-slider-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #FFFFFF;
  margin-right: 8px;
}
.base .gallery-slider-small {
  width: 100%;
  height: 388px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .gallery-slider-small .gallery-slider-item {
  width: 100%;
  height: 388px;
  border-radius: 6px;
  position: relative;
  background-size: cover;
}
.base .gallery-slider-small .gallery-slider-item .slider-effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .gallery-slider-small .gallery-slider-item .slider-effects .caption {
  position: absolute;
  left: 24px;
  bottom: 56px;
  z-index: 1;
}
.base .gallery-slider-small .gallery-slider-item .slider-effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #D4D4D4;
  margin-bottom: 0;
}
.base .gallery-slider-small .gallery-slider-item .slider-effects .caption h3,
.base .gallery-slider-small .gallery-slider-item .slider-effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .gallery-slider-small .gallery-slider-item .slider-effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-small .gallery-slider-item .slider-effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .gallery-slider-small .gallery-slider-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  min-height: 100%;
  min-width: 100%;
  border-radius: 6px;
}
.base .gallery-slider-small .gallery-slider-item .caption {
  position: absolute;
  left: 24px;
  bottom: 56px;
}
.base .gallery-slider-small .gallery-slider-item .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Lightest */
  color: #D4D4D4;
}
.base .gallery-slider-small .gallery-slider-item .caption h3,
.base .gallery-slider-small .gallery-slider-item .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 42px;
  /* or 131% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .gallery-slider-small .gallery-slider-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .gallery-slider-small .gallery-slider-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .gallery-slider-small .gallery-slider-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #FFFFFF;
  margin-right: 8px;
}
.base .top-left-tile {
  /*width: 290px;*/
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .top-left-tile .tile-item {
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
}
.base .top-left-tile .tile-item .effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .top-left-tile .tile-item .effects .caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
}
.base .top-left-tile .tile-item .effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #D4D4D4;
}
.base .top-left-tile .tile-item .effects .caption h3,
.base .top-left-tile .tile-item .effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 42px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .top-left-tile .tile-item .effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-left-tile .tile-item .effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-left-tile .tile-item .caption {
  position: absolute;
  left: 24px;
}
.base .top-left-tile .tile-item .caption h3,
.base .top-left-tile .tile-item .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  /* or 131% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .top-left-tile .tile-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .top-left-tile .tile-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .top-left-tile .tile-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #FFFFFF;
  margin-right: 8px;
}
.base .top-center-tile {
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .top-center-tile .tile-item {
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
  padding: 20px;
}
.base .top-center-tile .tile-item .effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .top-center-tile .tile-item .effects .caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
}
.base .top-center-tile .tile-item .effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: #D4D4D4;
}
.base .top-center-tile .tile-item .effects .caption h3,
.base .top-center-tile .tile-item .effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 42px;
  /* or 131% */
  letter-spacing: 0.01em;
  /* Neutral/White */
  color: #FFFFFF;
}
.base .top-center-tile .tile-item .effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-center-tile .tile-item .effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-center-tile .tile-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 510px;
  height: 324px;
  min-height: 100%;
  min-width: 100%;
  border-radius: 6px;
}
.base .top-center-tile .tile-item .caption {
  position: absolute;
  left: 24px;
  bottom: 56px;
}
.base .top-center-tile .tile-item .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #D4D4D4;
}
.base .top-center-tile .tile-item .caption h3,
.base .top-center-tile .tile-item .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .top-center-tile .tile-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .top-center-tile .tile-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .top-center-tile .tile-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  /* identical to box height, or 133% */
  letter-spacing: 0.02em;
  /* Secondary/Dark */
  color: #FFFFFF;
  margin-right: 8px;
}
.base .top-right-tile {
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.base .top-right-tile .tile-item {
  width: 100%;
  height: 324px;
  border-radius: 6px;
  position: relative;
  padding: 20px;
}
.base .top-right-tile .tile-item .effects .badges .colorfulcats .label-primary {
  background-color: #CD0504;
}
.base .top-right-tile .tile-item .effects .caption {
  position: absolute;
  left: 24px;
  bottom: 20px;
  z-index: 1;
}
.base .top-right-tile .tile-item .effects .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  color: #D4D4D4;
}
.base .top-right-tile .tile-item .effects .caption h3,
.base .top-right-tile .tile-item .effects .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .top-right-tile .tile-item .effects::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-right-tile .tile-item .effects::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 5px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 44.79%, rgba(0, 0, 0, 0.35) 63.54%, rgba(0, 0, 0, 0.75) 100%);
}
.base .top-right-tile .tile-item img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 368px;
  height: 324px;
  min-height: 100%;
  min-width: 100%;
  border-radius: 6px;
}
.base .top-right-tile .tile-item .caption {
  position: absolute;
  left: 24px;
}
.base .top-right-tile .tile-item .caption .feature {
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.01em;
  color: #D4D4D4;
}
.base .top-right-tile .tile-item .caption h3,
.base .top-right-tile .tile-item .caption h2 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}
.base .top-right-tile .tile-item .badges {
  position: absolute;
  right: 24px;
  top: 24px;
}
.base .top-right-tile .tile-item .meta {
  position: absolute;
  left: 24px;
  top: 24px;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data {
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data .avatar {
  height: 32px;
  width: 32px;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data .avatar img {
  height: 32px;
  width: 32px;
  border-radius: 16px;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data .author-name {
  margin-left: 10px;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data .author-name .author {
  color: #FFFFFF;
  font-family: Poppins;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  line-height: 15px;
  /* identical to box height */
  letter-spacing: 0.01em;
  /* Secondary/Darkest */
  margin-bottom: 0px;
}
.base .top-right-tile .tile-item .meta .vertical-post-meta .author-data .author-name time {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-right: 8px;
}
.base .gray-section {
  background-color: #FAFAFA;
}
.base .right-column-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.base .right-column-widget .mini-widget {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.base .right-column-widget .mini-widget .mini-widget-flex {
  display: flex;
  flex-direction: row;
}
.base .right-column-widget .mini-widget .mini-widget-flex a {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.base .right-column-widget .mini-widget .mini-widget-flex a .miniature img {
  height: 80px;
  width: 80px;
}
.base .right-column-widget .mini-widget .mini-widget-flex a .text {
  display: flex;
  flex-direction: column;
  padding: 8px 0;
}
.base .right-column-widget .mini-widget .mini-widget-flex a .text h5,
.base .right-column-widget .mini-widget .mini-widget-flex a .text h4 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: #232323;
  line-height: 120%;
}
.base .right-column-widget .mini-widget .mini-widget-flex a .text .date {
  font-size: 10px;
}
.base .mobile-banner-full-width {
  width: 100%;
  height: 280px;
}
.base .banner-full-width {
  width: 100%;
  background-color: inherit;
  /*margin-bottom: 64px;*/
}
@media screen and (min-width: 1200px) {
  .base .separator {
    width: 100%;
    height: 1px;
    background-color: #F3F3F3;
  }
}
@media screen and (max-width: 800px) {
  .base .separator {
    width: 100%;
    height: 1px;
    background-color: #F3F3F3;
  }
}
.base .banner-full-width-inv {
  width: 100%;
  height: 340px;
}
.base {
  /*--====== Global Variables ======--*/
}
.base :root {
  --bg-color: #13131f;
  --bg-color-2: t($bg);
  --text-color: t(text-secondary-page-title);
  --accent-color: t(bg-accent);
}
.base {
  /*--====== Sidebar ======--*/
}
.base #sidebar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  /*max-width: 300px;*/
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: #ffffff;
  box-shadow: 0 10px 20px -4px #000;
  overflow-x: hidden;
  overflow-y: auto;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: opacity 0.3s ease, visibility 0.2s ease, transform 0.3s ease;
}
.base #sidebar #aside_close {
  color: #232323;
}
.base #sidebar h5 {
  font-family: Poppins;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #232323;
}
.base #sidebar h5 a {
  color: #232323;
}
.base {
  /* when the sidebar has 'show' class */
}
.base #sidebar.show {
  pointer-events: all;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.base .sidebar_content {
  padding: 2.8rem 0;
  pointer-events: none;
  /* so that the Sidebar does not get closed while clicking on sidebar_content */
}
.base .sidebar_content a {
  pointer-events: all;
  /* so that all the a inside sidebar_content are clickable */
}
.base .side_navlinks ul {
  display: grid;
  /*gap: 2rem;*/
}
.base .side_navlinks li a {
  letter-spacing: 1px;
  opacity: 0.8;
}
.base .side_navlinks a:hover {
  opacity: 1;
}
.base {
  /*---- Sidebar-Toggler ----*/
}
.base .sidebar_toggler {
  /*position: fixed;*/
  position: relative;
  /*top: 4vh;
    right: 3vw;*/
  /*width: 1.75rem;*/
  height: 1.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
}
.base .sidebar_toggler span {
  background-color: #ddd;
  width: 100%;
  height: 2.4px;
  transition: all 0.3s ease;
  pointer-events: none;
  /* so that it doesn't overlap the sidebar_toggler */
}
.base {
  /* if the sidebar has 'show' class then their adjacent-sibling (i.e., sidebar_toggler) will... */
}
.base #sidebar.show + .sidebar_toggler {
  justify-content: center;
}
.base #sidebar.show + .sidebar_toggler span {
  margin-top: -1.2px;
  margin-bottom: -1.2px;
}
.base #sidebar.show + .sidebar_toggler span:first-child {
  transform: rotate(45deg);
}
.base #sidebar.show + .sidebar_toggler span:nth-child(2) {
  opacity: 0;
  transform: translateX(-100%);
}
.base #sidebar.show + .sidebar_toggler span:last-child {
  transform: rotate(-45deg);
}
.base .mobile-menu-bar {
  background-color: #ffffff;
}
.base .nav-pills .nav-item .nav-link {
  color: #232323;
}
.base .nav-pills .nav-item .nav-link.active {
  color: #fff;
  background-color: #CD0504;
}
.base .nav-pills .nav-item .nav-link:hover:not(.active) {
  background-color: #FAFAFA;
}

.base {
  flex-direction: column;
  position: fixed;
  width: 100%;
  overflow-y: auto;
  height: 100vh;
}
@media (max-width: 992px) {
  .base {
    overflow-x: hidden;
  }
}