html,
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  caret-color: transparent;
  scroll-behavior: smooth;
}

p {
  direction: rtl;
  text-align: justify;
}

.row {
  display: flex;
  flex-direction: row;
  width: 100%;
}

.row-reverse {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}

.article-date {
  font-size: 1rem;
  opacity: 0.5;
  line-height: 2;
  letter-spacing: 1.7px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  text-align: end;
}

.horizontal-divider {
  display: flex;
  width: 88%;
  border-top: 1.8px solid rgba(151, 151, 151, 0.3);
  margin: 3rem 1.5rem;
}

.button {
  margin-top: 10px;
  display: inline-block;
  z-index: 2;
  margin-bottom: 3rem;
}

.button a {
  display: inline-block;
  padding: 12px 24px;
  background-color: rgb(252, 180, 47);
  border: 1px solid rgb(0, 0, 0);
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.button a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.button a:hover {
  background-color: black;
  border: 1px solid rgb(252, 180, 47);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

.button a:hover:before {
  opacity: 1;
}

.button a:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(1px);
}

.hidden {
  display: none;
}

.white {
  color: white;
}

.less-wide {
  width: 70%;
}

.lazy-load {
  opacity: 0;
  transition: opacity 2s ease-in;
}

.lazy-load:not([data-lazy]) {
  opacity: 1;
}
