.page .entry-title {
    display: none;
}


.text-white {
  color: #ffffff !important;
	font-size: 20px
}


.text-black {
  color: #000000 !important;
}



.text-xl {
  font-size: 22px;
	line-height: 1.6;
  font-weight: 400;
  color: #000000;
	text-align: center;
}

.text-xl-2 {
  font-size: 25px;
  font-weight: 400;
  color: #000000;
}

.text-lg {
  font-size: 18px;
}


.text-med {
  font-size: 16px;
}

.text-sm {
  font-size: 14px;
}

.icon-orange {
  color: #FF6A00 !important;
}

.icon-center {
  text-align: left;
}

.center-text {
  text-align: center;
}

.cta-checklist {
  display: inline-block;
  text-align: left;
  margin-top: 0px;
}

.cta-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0;
}

.start-here-btn {
  display: inline-block;
  padding: 16px 22px;
  min-width: 220px;
  margin: 8px;
  text-align: center;

  background-color: #FF6A00;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;

  border-radius: 6px;
  border: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.2s ease;
}

.start-here-btn:hover {
  background-color: #e65c00;
  color: #ffffff;

  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.bookhubly-info-section {
  background-color: #F8FAFC;
  padding: 80px 20px 60px 20px;
  text-align: center;
}


/* Grid layout */
.edd_downloads_list {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 20px;
  margin-bottom: 40px;
  list-style: none;
  padding: 0;
}

/* Tablet */
@media (max-width: 1024px) {
  .edd_downloads_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 767px) {
  .edd_downloads_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

/* Product card */
.edd_download {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Hover effect */
.edd_download:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.10);
}

/* Image area */
.edd_download_image {
  padding: 0;
  margin-bottom: 14px;
  display: block;
}

/* Featured image */
.edd_download_image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.edd_download_image {
  background: #f5f6f8;
  border-radius: 14px;
}

/* Content area */
.edd_download_inner {
  padding: 14px 16px 16px 16px; /* slightly tighter */
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between; /* IMPORTANT */
}

/* Title */
.edd_download_title,
.edd_download_title a {
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
  margin-bottom: 10px;
}

/* Description */
.edd_download_excerpt,
.edd_download_content {
  font-size: 14px;
  line-height: 1.6;
  color: #5f6b7a;
  margin-bottom: 14px;
}

/* Price */
.edd_price,
.edd_download_purchase_form .edd_price {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 14px;
  display: block;
}

/* Push button to bottom */
.edd_download_buy_button,
.edd_download_purchase_form {
  margin-top: auto;
}

/* Button style (FIXED) */
.edd-submit,
input.edd-submit,
.edd_download_purchase_form .button,
.edd-add-to-cart,
.edd_go_to_checkout,
.wp-block-edd-downloads .button,
.wp-block-edd-downloads .edd-submit {
  width: 100%;
  border: none !important;
  border-radius: 12px !important;
  background: #046bd2 !important;
  color: #ffffff !important;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(4, 107, 210, 0.25);
  transition: all 0.2s ease;
}

/* Button hover */
.edd-submit:hover,
input.edd-submit:hover,
.edd_download_purchase_form .button:hover,
.edd-add-to-cart:hover,
.edd_go_to_checkout:hover,
.wp-block-edd-downloads .button:hover {
  background: #035bb5 !important;
  color: #ffffff !important;
  transform: translateY(-1px);
}

/* Clean spacing */
.edd_download p:last-child {
  margin-bottom: 0;
}

/* Container width */
.site-main,
.content-area,
.ast-container {
  max-width: 1240px;
}