.custom-articles-widget {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.custom-articles-widget .article-row {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 3px solid #000000;
  transition: all 0.2s ease-in-out;
  position: relative;
}

.custom-articles-widget .article-row:last-child {
  border-bottom: 0;
}

.article-title {
  margin-top: 0;
  font-size: 20px;
  font-weight: 500;
  flex: 1;
}

.article-excerpt {
  flex: 2;
  font-size: 14px;
  margin-block-end: 0;
  max-width: 280px;
}

.article-category {
  margin-block-end: 0;
}

.article-category .badge {
  border: 3px solid #00ff00;
  padding: 12px;
  width: 200px;
  display: block;
  text-align: center;
  border-radius: 50px;
  font-weight: bold;
  font-size: 14px;
}

.arrow-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed black;
  border-radius: 50%;
  width: 76px;
  height: 76px;
  transition: all 0.2s ease-in-out;
}

.custom-articles-widget .article-row:hover .arrow-button {
  background: #d9d9d9;
  border-color: #d9d9d9;
  border-style: solid;
}

.arrow-icon {
  width: 52px;
  height: auto;
  transform: rotate(-30deg);
  transition: all 0.2s ease-in-out;
}

.custom-articles-widget .article-row:hover .arrow-icon {
  transform: rotate(0deg);
}
.elementor-widget-image_overlay_widget {
	height: 100%;
}
.image-overlay-widget {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  cursor: pointer;
}
.image-overlay-widget .overlay-media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.image-overlay-widget .overlay-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.85s ease;
}
.image-overlay-widget:hover .overlay-media img {
  transform: scale(1.25);
}
.image-overlay-widget.active .overlay-media img {
  transform: scale(1.25);
}
.image-overlay-widget .overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  visibility: hidden;
  opacity: 0;
  transform: scale(0);
  border-radius: 50%;
  transform-origin: bottom right;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease,
    border-radius 0.3s ease;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.image-overlay-widget .overlay-content.active {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  border-radius: 0;
}
.image-overlay-widget .overlay-button {
  background-color: #05ff00;
  padding: 6px;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.hidden {
  display: none !important;
}
.button-link:focus {
  outline: none;
}
.button-link:focus:not(:focus-visible) {
	/* Remove the focus indicator on mouse-focus for browsers
	 that do support :focus-visible */
}
.button-link:focus-visible {
	/* Draw a very noticeable focus style for
	 keyboard-focus on browsers that do support
	 :focus-visible */
	outline: 2px solid #443ffc;
	outline-offset: 3px;
}
.button-link:focus-visible {
	background: none;
}
.button-link {
	pointer-events: auto;
	cursor: pointer;
	background: #000000;
	border: none;
	padding: 16px 42px;
	margin: 0;
	font-family: inherit;
	font-size: inherit;
	position: relative;
	display: inline-block;
  text-decoration: none !important;
}

.button-link::before,
.button-link::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.button-link {
	font-weight: 700;
	/* border: 2px solid #05FF00; */
	border-radius: 3rem;
	overflow: hidden;
	color: #000;
}

.button-link span {
  color: #000000;
	position: relative;
	/* mix-blend-mode: difference; */
}

.button-link::before {
	content: '';
	background: #05FF00;
	transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}

.button-link:hover::before {
	transform: translate3d(0,-100%,0);
}

.button-link:hover span {
	color: #ffffff;
}
@media (min-width: 1200px) {
  .custom-articles-widget .article-row:hover {
    background: #f7fcf6;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1199.98px) {
  .article-excerpt {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .custom-articles-widget .article-row {
    flex-direction: column;
    gap: 0;
  }
  .article-excerpt {
    display: block;
    margin-bottom: 18px;
    order: 3;
  }
  .arrow-button {
    order: 4;
    align-self: flex-end;
  }
  .article-category {
    order: 2;
  }
  .article-title {
    order: 1;
    margin-bottom: 20px;
  }
  .article-category .badge {
    padding: 8px;
    width: 160px;
    font-size: 13px;
  }
  .article-category {
    margin-bottom: 18px;
  }
}
@media (max-width: 575.98px) {
  .article-title {
    font-size: 20px !important;
  }
}