body {
  margin: 0;
  font-family: "Cairo";
  background-color: #fff;
}
.content-wrapper {
  background-color: transparent !important;
}
/* ====== Hero====== */
.hero-section {
    position: relative;
    width: 100%;
    height: 396px;
    background: url('../assets/images/publishingbg.svg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.hero-section .overlay {
  position: absolute;
  inset: 0;
  background: #00000015;
  z-index: 1;
  pointer-events: none;
  backface-visibility: hidden;
  will-change: opacity;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1095px;
  gap: 44px;
}

.hero-content h1 {
  font-size: 40px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #ffffff;
  opacity: 0.9;
}
/* ===== Publishers===== */
.publishers-wrapper {
  width: 100%;
  max-width: 1572px;
  margin: 0 auto;
  padding: 60px 100px;
}
.publisher-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #D9D9D9;
  padding: 60px 0;
  height: 280px;
  
}
.publisher-info {
  display: flex;
  align-items: center;
  gap: 42px;
}
.publisher-logo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.publisher-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.publisher-text {
  width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
}
.publisher-text h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
.publisher-text p,
.publisher-text span {
  font-size: 16px;
  font-weight: 600;
  color: #56636E;
}

.browse-btn {
  border: 1px solid #3DA5FF;
  color: #3DA5FF;
  background: none;
  border-radius: 999px;
  padding: 16px 60px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.browse-btn:hover {
  background: #3DA5FF;
  color: #fff;
}


.load-more {
  display: flex;
  justify-content: center;
  margin-top: 30px!important;
  margin-bottom: 30px!important;
}
.load-more button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 100px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  border: 2px solid #DAE1EA;
  color: #56636E;
  cursor: pointer;
  transition: 0.3s;
}
.load-more button:hover {
  border-color: #3DA5FF;
  background: none !important;
  color: #56636E!important;
}
.load-more img {
  width: 20px;
  height: 20px;
}