:root {
  --sws-primary: #d05702;
  --sws-primary-dark: #a34200;
  --sws-bg: #f6f6f6;
  --sws-card: #ffffff;
  --sws-surface: #f1f1f1;
  --sws-border: rgba(208, 87, 2, 0.2);
  --sws-text: #1f1f1f;
  --sws-muted: #666666;
  --sws-title: #222222;
  --sws-sidebar-height: 640px;
  --sws-radius: 8px;
}

.sws-layout {
  background: var(--sws-bg);
  color: var(--sws-text);
  font-family: "Segoe UI", Arial, sans-serif;
}

.sws-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
}

.sws-top {
  border-top: 4px solid var(--sws-primary);
}

.sws-breaking {
/*   background: var(--sws-primary); */
  color: #fff;
  padding: 10px 16px;
  margin-bottom: 18px;
  border-radius: var(--sws-radius);
  font-weight: 600;
}

.sws-grid {
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  gap: 16px;
}

.sws-sidebar {
  height: var(--sws-sidebar-height);
  overflow: hidden;
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  display: flex;
  flex-direction: column;
}

.sws-sidebar-header {
  margin: 0;
  padding: 10px 12px;
  border-bottom: 2px solid var(--sws-primary);
  background: var(--sws-surface);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.sws-sidebar h3 {
  margin: 0;
  font-size: 16px;
  color: var(--sws-title);
}

.sws-editors-title {
  font-size: var(--sws-editors-title-font-size, 16px);
}

.sws-trending-title {
  font-size: var(--sws-trending-title-font-size, 16px);
}

.sws-category-col-1-title {
  font-size: var(--sws-category-col-1-title-font-size, 16px);
}

.sws-category-col-2-title {
  font-size: var(--sws-category-col-2-title-font-size, 16px);
}

.sws-category-col-3-title {
  font-size: var(--sws-category-col-3-title-font-size, 16px);
}

.sws-blog-sidebar-title {
  font-size: var(--sws-blog-sidebar-title-font-size, 16px);
}

.sws-related-sidebar-title {
  font-size: var(--sws-related-title-font-size, 16px);
}

.sws-sidebar-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.sws-sidebar .sws-sidebar-nav .sws-side-arrow {
  all: unset;
  width: 30px;
  height: 30px;
  color: var(--sws-title);
  cursor: pointer;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  transform: translateY(-1px);
}

.sws-sidebar .sws-sidebar-nav .sws-side-arrow:hover,
.sws-sidebar .sws-sidebar-nav .sws-side-arrow:focus-visible {
  color: var(--sws-title);
  opacity: 0.8;
  outline: none;
}

.sws-list {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.sws-list::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.sws-list li {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sws-thumb {
  width: 105px;
  height: 75px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.sws-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sws-list h4 {
  margin: 0 0 4px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--sws-title);
}

.sws-list a {
  color: var(--sws-text);
  text-decoration: none;
}

.sws-meta {
  color: var(--sws-muted);
  font-size: 12px;
}

.sws-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sws-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--sws-primary);
  padding-bottom: 8px;
}

.sws-main-header h2 {
  margin: 0;
  font-size: 22px;
  color: var(--sws-title);
}

.sws-main-title {
  font-size: var(--sws-main-title-font-size, 22px);
  padding: 8.5px 0;
}

.sws-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.sws-tag {
  font-size: 12px;
  border: 1px solid var(--sws-border);
  border-radius: 18px;
  padding: 4px 10px;
  color: #4d4d4d;
  background: #fffaf6;
}

.sws-hero {
  position: relative;
  min-height: 360px;
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.sws-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sws-overlay {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2));
}

.sws-overlay h3 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.2;
}

.sws-overlay a {
  color: #fff;
  text-decoration: none;
}

.sws-slider {
  position: relative;
  border-radius: var(--sws-radius);
  overflow: hidden;
  border: 1px solid var(--sws-border);
  background: var(--sws-card);
}

.sws-slider-track {
  position: relative;
  min-height: 420px;
}

.sws-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.sws-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.sws-slide-image,
.sws-slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sws-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.sws-card {
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.sws-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sws-card-body {
  padding: 12px;
}

.sws-card-body h4 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--sws-title);
}

.sws-card-body a {
  color: var(--sws-text);
  text-decoration: none;
}

.sws-single {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.sws-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
  gap: 24px;
  align-items: start;
}

.sws-single-layout,
.sws-single-latest-posts,
section.widget {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.sws-single-latest-posts,
section.widget {
  padding: 0 0 0 16px;
}

.sws-single-header {
  margin-bottom: 18px;
}

.sws-single h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 10px;
  color: var(--sws-title);
}

.sws-single-post-title {
  font-size: var(--sws-single-post-title-font-size, 40px);
}

.sws-single-featured {
  margin: 16px 0 20px;
}

.sws-single-featured img {
  width: 100%;
  border-radius: var(--sws-radius);
}

.sws-content {
  color: var(--sws-text);
  font-size: 17px;
  line-height: 1.8;
}

.sws-content a {
  color: var(--sws-primary);
}

.sws-author-section {
  margin-top: 28px;
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.sws-author-header {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 2px solid var(--sws-primary);
  background: var(--sws-surface);
}

.sws-author-header h2 {
  margin: 0;
  font-size: 22px;
  color: var(--sws-title);
}

.sws-author-card {
  display: flex;
  gap: 20px;
  padding: 20px 16px;
  align-items: flex-start;
}

.sws-author-avatar img {
  display: block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.sws-author-body {
  flex: 1;
}

.sws-author-name {
  margin: 0 0 6px;
  font-size: 24px;
  color: var(--sws-title);
}

.sws-author-role {
  color: var(--sws-primary);
  font-weight: 600;
  margin-bottom: 10px;
}

.sws-author-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--sws-muted);
  font-size: 14px;
}

.sws-author-meta a {
  color: var(--sws-primary);
  text-decoration: none;
}

.sws-author-content {
  color: var(--sws-text);
  line-height: 1.8;
}

.sws-author-content > *:first-child {
  margin-top: 0;
}

.sws-author-content > *:last-child {
  margin-bottom: 0;
}

.sws-author-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.sws-author-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--sws-border);
  border-radius: 50%;
  color: var(--sws-title);
  text-decoration: none;
  background: #fffaf6;
}

.sws-author-social a:hover {
  color: var(--sws-primary);
  border-color: var(--sws-primary);
}

.sws-author-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  line-height: 1;
}

.sws-author-social-icon svg {
  display: block;
  width: 18px;
  height: 18px;
}

.sws-author-social-website:hover {
  background: #eef5ff;
}

.sws-author-social-facebook:hover {
  background: #eef3ff;
}

.sws-author-social-twitter:hover {
  background: #f2f2f2;
}

.sws-author-social-instagram:hover {
  background: #fff1f7;
}

.sws-author-social-linkedin:hover {
  background: #eef7ff;
}

.sws-author-social-youtube:hover {
  background: #fff1f1;
}

.related-posts {
  margin-top: 28px;
}

.related-posts-header {
  margin-bottom: 14px;
  border-bottom: 2px solid var(--sws-primary);
  padding-bottom: 8px;
}

.related-posts-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--sws-title);
}

.sws-related-posts-title {
  font-size: var(--sws-related-title-font-size, 24px);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.related-post-card {
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.related-post-thumb,
.related-post-thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-post-body {
  padding: 12px;
}

.related-post-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.related-post-body h3 a {
  color: var(--sws-title);
  text-decoration: none;
}

.related-post-body h3 a:hover {
  color: var(--sws-primary);
}

.sws-single-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.sws-single-sidebar-section {
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.sws-related-list {
  overflow: visible;
}

.sws-single-widget-area {
  padding: 16px;
}

.sws-widget + .sws-widget {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.sws-widget .widget-title {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--sws-title);
}

.sws-widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sws-widget li + li {
  margin-top: 10px;
}

.sws-widget a {
  color: var(--sws-text);
  text-decoration: none;
}

.sws-widget a:hover {
  color: var(--sws-primary);
}

.sws-latest-posts {
  margin-top: 26px;
}

.sws-latest-header {
  margin-bottom: 14px;
  border-bottom: 2px solid var(--sws-primary);
  padding-bottom: 8px;
}

.sws-latest-header h2 {
  margin: 0;
  font-size: 24px;
  color: var(--sws-title);
}

.sws-latest-section-title {
  font-size: var(--sws-latest-title-font-size, 24px);
}

.sws-single-latest-title {
  font-size: var(--sws-single-latest-title-font-size, 24px);
}

.sws-blog-listing-title {
  font-size: var(--sws-blog-listing-title-font-size, 24px);
}

.sws-latest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sws-latest-card {
  background: var(--sws-card);
  border: 1px solid var(--sws-border);
  border-radius: var(--sws-radius);
  overflow: hidden;
}

.sws-latest-thumb,
.sws-latest-thumb img {
  display: block;
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.sws-latest-body {
  padding: 12px;
}

.sws-latest-body h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.35;
}

.sws-latest-body h3 a {
  color: var(--sws-title);
  text-decoration: none;
}

.sws-latest-body h3 a:hover {
  color: var(--sws-primary);
}

.sws-category-columns {
  margin-top: 26px;
}

.sws-category-columns-header {
  margin-bottom: 14px;
  border-bottom: 2px solid var(--sws-primary);
  padding-bottom: 8px;
}

.sws-category-columns-title {
  margin: 0;
  font-size: var(--sws-category-columns-title-font-size, 24px);
  color: var(--sws-title);
}

.sws-category-columns-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sws-category-column {
  height: auto;
}

.sws-category-list {
  overflow: visible;
}

.sws-blog-listing {
  margin-top: 26px;
}

.sws-blog-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 14px;
  align-items: start;
}

.sws-blog-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sws-blog-sidebar {
  height: auto;
}

.sws-pagination {
  margin-top: 14px;
}

.sws-pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sws-pagination a,
.sws-pagination span {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid var(--sws-border);
  border-radius: 4px;
  color: var(--sws-title);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.2;
}

.sws-pagination .current {
  background: var(--sws-primary);
  border-color: var(--sws-primary);
  color: #fff;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-layout {
  direction: rtl;
  text-align: right;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-sidebar-header,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-main-header,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-author-card,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-author-meta,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-author-social,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .navigation-flex {
  flex-direction: row;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-list li {
  flex-direction: row;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-pagination ul,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-tags {
  justify-content: flex-start;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-content,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .related-post-body,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-latest-body,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-card-body {
  text-align: right;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-single-latest-posts,
:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) section.widget {
  padding: 0 16px 0 0;
}

:is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-overlay {
  align-items: flex-start;
}

@media (max-width: 1200px) {
  .sws-latest-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .sws-single {
    max-width: 1140px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 900px) {
  .sws-latest-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sws-category-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sws-blog-layout,
  .sws-blog-cards {
    grid-template-columns: 1fr;
  }
  .sws-single {
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 1000px) {
  .sws-grid {
    grid-template-columns: 1fr;
  }
  .sws-single-layout {
    grid-template-columns: 1fr;
  }
  .sws-sidebar {
    height: auto;
    max-height: 360px;
  }
  .sws-single-sidebar {
    position: static;
  }
  .sws-author-card {
    flex-direction: column;
  }
  .related-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .sws-single {
    max-width: 830px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 640px) {
  .sws-latest-grid {
    grid-template-columns: 1fr;
  }
  .sws-category-columns-grid {
    grid-template-columns: 1fr;
  }
  .sws-blog-layout,
  .sws-blog-cards {
    grid-template-columns: 1fr;
  }
  .sws-slider-track {
    min-height: 320px;
  }
  .sws-overlay h3 {
    font-size: 24px;
  }
  .sws-cards {
    grid-template-columns: 1fr;
  }
  .sws-single h1 {
    font-size: 30px;
  }
  .sws-single-post-title {
    font-size: var(--sws-single-post-title-mobile-font-size, 30px);
  }
  .sws-single {
    padding-inline: 0;
  }
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  .sws-single-latest-posts,
  section.widget {
    padding: 0;
  }
  :is(body.rtl, body.sws-force-rtl, [dir="rtl"]) .sws-single-latest-posts,
  :is(body.rtl, body.sws-force-rtl, [dir="rtl"]) section.widget {
    padding: 0;
  }
  .sws-single {
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 840px) { 
  .sws-single {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 740px) { 
  .sws-single {
    max-width: 660px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 680px) { 
  .sws-single {
    max-width: 560px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 580px) { 
  .sws-single {
    max-width: 540px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 580px) { 
  .sws-single {
    max-width: 440px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 460px) { 
  .sws-single {
    max-width: 380px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

@media (max-width: 400px) { 
  .sws-single {
    max-width: 340px;
    margin: 0 auto;
    padding: 24px 16px 40px;
  }
}

.sws-stock-embed-market {
  margin-bottom: 16px;
}

.flex-column-author-profile {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.sws-author-avatar-sm{
  border-radius: 50px;
  width: 30px;
}

.sws-meta {
  display: flex;
  align-items: center;
  gap: 5px;
}

div.ab-hm-pg .sws-sidebar {
  margin-bottom: 1rem;
}

.navigation-flex {
  display: flex;
  flex-direction: row-reverse !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.navigation-flex button:first-child {
  transform: rotate(180deg);
}

.slider-navigation button {
  border: none;
}

.slider-navigation button:hover,
.slider-navigation button:focus,
.slider-navigation button:focus-visible,
.slider-navigation button:focus-within,
.slider-navigation button:active{
  border: none;
  background-color: transparent;
}

.slider-navigation button span{
  font-size: 18px;
  color: #d05702;
}

.slider-navigation button span:hover{
  color: #d0580267;
}

.sws-blog-listing-title{
  padding: 1.5px 0;
}

section.widget {
  margin-top: 32px;
}

input#submit {
  color: #ffff;
  background: #d05702;
  border: none;
  box-shadow: 6px 6px 6px 0px #f4ede2;
}

body a {
  color: #d05702; 
}

/* Slider */
.container {
  position: relative;
  background: #f3f3f3;
/*   margin: 2rem 0; */
}

.swiper-container {
  width: 100%;
}

.swiper-slide {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 2px solid #d05702;
}

.swiper-horizontal{
  padding: 10px;
}

.sws-slide-inner {
  display: block;
  width: 100%;
  padding: 12px;
}

.sws-slide-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}
.sws-slide-time {
  font-size: 12px;
  color: #777;
  margin-top: 4px;
}
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 100%;
  top: 0;
  margin-top: 0;
  background: transparent;
}

.swiper-button-prev {
  left: 0;
  justify-content: center;
}

.swiper-button-next {
  right: 0;
  justify-content: center;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 18px;
  color: #007aff;
  font-weight: bold;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0,0,0,0.03);
}

.container {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  clear: both;
  display: block;
  width: 100%;
  background: #f3f3f3;
}

.swiper-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 40px;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-prev { left: 0; }
.swiper-button-next { right: 0; }

.swiper-button-prev,
.swiper-button-next {
  --swiper-navigation-size: 12px;
  border: 1px solid #d05702;
  color: #d05702 !important;
  border-radius: 50px;
  padding: 10px;
}

.swiper-button-prev:after, .swiper-button-next:after { 
  color: #d05702 !important;
}

section#comments {
    display: none;
}

.sws-blog-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 20px;
}

.sws-blog-cards > * {
    grid-column: span 2;
}

.sws-blog-cards > *:nth-child(5n-1),
.sws-blog-cards > *:nth-child(5n) {
    grid-column: span 3;
}

@media (max-width: 1024px) {
    .sws-blog-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 20px;
    }
    
    .sws-blog-cards > * {
        grid-column: span 2;
    }
    
    .sws-blog-cards > *:nth-child(5n-1),
    .sws-blog-cards > *:nth-child(5n) {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .sws-blog-cards > * {
        grid-column: span 2;
    }
    
    .sws-blog-cards > *:nth-child(5n-1),
    .sws-blog-cards > *:nth-child(5n) {
        grid-column: span 2;
    }
}