@keyframes spg-shimmer {
  0% {
    background-position: -600px 0;
  }
  100% {
    background-position: 600px 0;
  }
}
.spg-card--skeleton .spg-skeleton {
  background: linear-gradient(90deg, #efefef 25%, #e0e0e0 50%, #efefef 75%);
  background-size: 600px 100%;
  animation: spg-shimmer 1.4s infinite linear;
  border-radius: 6px;
}

.spg-wrapper {
  width: 100%;
  font-family: inherit;
  padding: 80px 0px;
}

.spg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.spg-title {
  font-family: Mikado;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #004974;
  margin: 0;
  line-height: 1.2;
  flex: 1;
}
@media only screen and (max-width: 480px) {
  .spg-title {
    font-size: 22px;
  }
}

.spg-filters {
  flex: 1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media only screen and (max-width: 480px) {
  .spg-filters {
    width: 100%;
  }
}

.spg-select-wrapper {
  position: relative;
}
.spg-select-wrapper.category-select {
  width: 100%;
  max-width: 320px;
}
.spg-select-wrapper.sort-select {
  width: 100%;
  max-width: 240px;
}
.spg-select-wrapper::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23434A4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .spg-select-wrapper {
    flex: 1;
  }
}

.spg-select {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  display: block;
  padding: 15px 40px 15px 16px;
  border: 1px solid #E4E4E7;
  border-radius: 8px;
  background: #fff;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #434A4F;
  cursor: pointer;
  transition: border-color 0.2s;
  white-space: nowrap;
}
.spg-select:focus {
  outline: none;
  border-color: #004974;
}
@media only screen and (max-width: 480px) {
  .spg-select {
    width: 100%;
  }
}

.spg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
@media only screen and (max-width: 1024px) {
  .spg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 480px) {
  .spg-grid {
    grid-template-columns: 1fr;
  }
}

.spg-card {
  border: 1px solid #D9DBDC;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.spg-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.spg-card__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f6f8;
  padding: 0px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  border-radius: 24px;
}

.spg-card__image {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
.spg-card:hover .spg-card__image {
  transform: scale(1.04);
}

.spg-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 0px 18px 0px;
  gap: 8px;
}

.spg-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 26px;
}

.spg-card__tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(47, 174, 219, 0.1019607843);
  color: #0168A5;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  transition: background 0.2s;
}
.spg-card__tag:hover {
  background: rgb(208.75, 234.65, 229.1);
  color: rgb(18.8324324324, 88.3675675676, 68.0864864865);
}

.spg-card__title {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 140%;
  letter-spacing: 0%;
  color: #004974;
  margin: 0;
  line-height: 1.35;
  flex: 1;
  margin-top: 5px;
}
.spg-card__title a {
  color: inherit;
  text-decoration: none;
}
.spg-card__title a:hover {
  color: #004974;
}

.spg-card__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: #4b5563;
  margin-top: auto;
  padding-top: 10px;
}

.spg-card__author {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.spg-card__avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  flex-shrink: 0;
}

.spg-card--skeleton {
  pointer-events: none;
}
.spg-card--skeleton .spg-card__image-wrapper {
  background: #efefef;
  min-height: 200px;
}
.spg-card--skeleton .spg-skeleton {
  display: block;
}
.spg-card--skeleton .spg-skeleton--image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  border-radius: 0;
}
.spg-card--skeleton .spg-skeleton--tag {
  width: 80px;
  height: 22px;
  border-radius: 20px;
}
.spg-card--skeleton .spg-skeleton--title-1 {
  width: 90%;
  height: 18px;
  margin-top: 4px;
}
.spg-card--skeleton .spg-skeleton--title-2 {
  width: 65%;
  height: 18px;
}
.spg-card--skeleton .spg-skeleton--meta {
  width: 70%;
  height: 13px;
  margin-top: 6px;
}

.spg-load-more-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.spg-load-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 36px;
  border: 2px solid #004974;
  border-radius: 8px;
  background: transparent;
  color: #004974;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.spg-load-more:hover {
  background: #004974;
  color: #fff;
}
.spg-load-more:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.spg-load-more .spg-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spg-spin 0.7s linear infinite;
}

@keyframes spg-spin {
  to {
    transform: rotate(360deg);
  }
}
.spg-no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 60px 20px;
  color: #9ca3af;
  font-size: 16px;
}/*# sourceMappingURL=posts-grid.css.map */