.breakpointWrapper {
  position: relative;
}
.breakpointWrapper::after {
  content: "desktop";
  position: fixed;
  bottom: 7.5%;
  right: 0;
  background-color: black;
  color: white;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  z-index: 99999;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::after {
    content: "mobile";
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::after {
    content: "tablet";
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::after {
    content: "desktop";
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::after {
    content: "widescreen";
  }
}
@media screen and (min-width: 1408px) and (max-width: 1919px) {
  .breakpointWrapper::after {
    content: "fullhd (1440p)";
  }
}
@media screen and (min-width: 1920px) and (max-width: 2559px) {
  .breakpointWrapper::after {
    content: "ultrahd (1080p+)";
  }
}
@media screen and (min-width: 2560px) {
  .breakpointWrapper::after {
    content: "qhd (1440p+)";
  }
}
.breakpointWrapper::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 999998;
  opacity: 0.25;
}
@media screen and (max-width: 768px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 0, 0, 0.9) calc(8.333% - 1px), rgba(255, 0, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 0, 255, 0.9) calc(8.333% - 1px), rgba(0, 0, 255, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(0, 255, 0, 0.9) calc(8.333% - 1px), rgba(0, 255, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(255, 165, 0, 0.9) calc(8.333% - 1px), rgba(255, 165, 0, 0.9) 8.333%);
  }
}
@media screen and (min-width: 1408px) {
  .breakpointWrapper::before {
    background: repeating-linear-gradient(90deg, transparent 0px, transparent calc(8.333% - 1px), rgba(128, 0, 128, 0.9) calc(8.333% - 1px), rgba(128, 0, 128, 0.9) 8.333%);
  }
}

.merak-articles-section {
  z-index: 10;
  position: relative;
}
.merak-articles-section .articles-wrapper {
  padding-bottom: 2rem;
  position: relative;
  z-index: 11;
  width: 85%;
  margin: 0 auto;
  box-sizing: border-box;
}
.merak-articles-section .merak-articles-title {
  text-align: left;
  margin-bottom: 0rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.merak-articles-section .merak-articles-title .title-image {
  max-width: 55px;
  max-height: 55px;
  width: auto;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.merak-articles-section .columns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-left: 0;
  margin-right: 0;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}
.merak-articles-section .columns > .column {
  flex: 1 1 0;
  min-width: 0;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  .merak-articles-section .columns > .column {
    flex: 1 1 calc(50% - 0.5rem);
  }
}
@media screen and (max-width: 768px) {
  .merak-articles-section .columns > .column {
    flex: 1 1 100%;
  }
}
.merak-articles-section .article-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  transition: transform 0.2s ease;
  text-decoration: none;
  color: inherit;
}
.merak-articles-section .article-card:hover {
  transform: translateY(-5px);
}
.merak-articles-section .article-card .article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.merak-articles-section .article-card .article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.merak-articles-section .article-card .article-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.merak-articles-section .article-card .article-content .article-title {
  text-align: center;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.merak-articles-section .article-card .article-content .article-excerpt {
  text-align: left;
  margin-bottom: auto;
}
.merak-articles-section .article-card .article-content .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  padding-top: 1rem;
}
.merak-articles-section .article-card .article-content .article-tags .tag {
  background-color: #F1E7D3;
  border: 1px solid #586A74;
  color: #586A74;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.8rem;
}
.merak-articles-section .article-card .article-content .article-meta {
  font-size: 0.8rem;
  color: #C2CAD0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding-bottom: 1rem;
}
.merak-articles-section .article-card .article-content .article-meta .article-separator {
  margin: 0 0.5rem;
}
.merak-articles-section .article-card .article-content .article-cta {
  text-align: center;
  margin-top: 1.5rem;
}
.merak-articles-section .article-card .article-content .article-cta .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: underline;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.merak-articles-section .article-card .article-content .article-cta .cta-button:hover {
  text-decoration: none;
}
.merak-articles-section .article-card .article-content .article-cta .cta-button:active {
  text-decoration: none;
}
.merak-articles-section .article-card .article-content .article-cta .cta-button:focus, .merak-articles-section .article-card .article-content .article-cta .cta-button:focus-visible {
  outline: 2px solid black;
  outline-offset: 2px;
}
.merak-articles-section.hover-disabled .article-card {
  transition: none;
}
.merak-articles-section.hover-disabled .article-card:hover {
  transform: none;
}
.merak-articles-section.hover-disabled .cta-button:hover {
  transform: none !important;
}
.merak-articles-section .archive-link-section {
  text-align: center;
}
.merak-articles-section .archive-link-section .archive-button {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}
.merak-articles-section .archive-link-section .archive-button:hover {
  text-decoration: none;
}
.merak-articles-section .archive-link-section .archive-button:focus, .merak-articles-section .archive-link-section .archive-button:focus-visible {
  outline: 2px solid black;
  outline-offset: 2px;
}
.merak-articles-section.hover-disabled .archive-button:hover {
  transform: none;
}

/* Editor-specific styles */
#editor .merak-articles-section::before {
  display: none;
}
#editor .article-image {
  height: 15vh;
}
