/* Discover Our Workspaces Section */

.blog-slide {
  padding-top: 50px;
  /* padding-bottom: 50px; */
}

.discover-title {
  font-family: var(--font-display);
  /* Using Apoc Normal as per the "Discover Our Workspaces" heading style in image */
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: left;
}

/* Main Slider Container */
.slider-workspaces {
  margin-bottom: 20px;
}

/* Custom Arrows in Bottom Control Bar */
.slick-prev-custom,
.slick-next-custom {
  width: 60px;
  height: 40px;
  border: 1px solid #ddd;
  background-color: var(--white);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 0px; /* Rectangle */
  transition: all 0.3s ease;
}

.slick-prev-custom:hover,
.slick-next-custom:hover {
  border-color: var(--primary-color);
  background-color: var(--light-bg);
}

/* Flex Container adjustments */
.discover-bottom-controls {
  /* Using bootstrap classes d-flex etc in HTML, specialized styles here if needed */
  min-height: 50px;
  position: relative;
}

/* Inner Slider Arrows (on top of images) */
.slider-for .slick-arrow {
  background-color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 20;
  font-size: 16px;
  color: #587b7f;
}
.slider-for .slick-arrow i {
  color: #587b7f !important;
}
.slider-for .slick-arrow:before {
  display: none;
}
.slider-for .slick-prev {
  left: 0;
}
.slider-for .slick-next {
  right: 0;
}
.slider-for .slick-arrow:hover {
  background-color: var(--white);
  opacity: 0.9;
}

.discover-actions .btn-custom {
  pointer-events: auto;
}

.blog-grid {
  /* Existing layout styles from framework or custom.css assumed */
  display: block; /* Ensure block layout */
}

/* Image Date / Top Box */
.img-date {
  position: relative;
}

/* Date Blog / Badges */
.date-blog {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 10px;
}

.blank-white {
  background-color: var(--white);
  color: var(--black);
  padding: 8px;
  margin-right: 10px;
  font-family: var(--font-secondary);
  font-size: 14px;
}

.color-box {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  font-family: var(--font-secondary);
  font-size: 14px;
}

/* Discretion Blog / Bottom Box */
.discretion-blog {
  cursor: pointer;
  height: 150px;
  padding: 0 30px;
  align-content: center;
  background-color: var(--white);
}

.discretion-title {
  margin-bottom: 0 !important;
  font-size: small;
}

.discretion-title a {
  color: var(--black) !important;
  font-family: var(--font-secondary);
  text-decoration: none;
  font-weight: 500;
}

.discretion-info {
  margin-bottom: -4px;
  font-family: var(--font-secondary);
  color: #666;
  color: var(--black);
  font-size: 14px;
}

.listing-status .price {
  font-family: var(--font-secondary);
  color: var(--black);
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
}

.discretion-blog:hover .discretion-title a {
  color: var(--primary-color) !important;
}

/* Find Your Workspace Button Area */
.discover-actions {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
  /* Fix content cutoff in cards */
  .discretion-blog {
    height: auto !important;
    min-height: 160px;
    padding-bottom: 20px;
  }

  /* Fix overlap of button and arrows */
  .discover-bottom-controls {
    flex-direction: column;
    gap: 15px;
    height: auto;
    margin-top: 30px;
  }

  .discover-bottom-controls .btn-custom {
    margin-bottom: 15px;
  }

  /* Reset absolute positioning for arrows container */
  .workspace-arrows {
    position: static !important;
    transform: none !important;
    width: 100%;
    justify-content: center;
    margin-top: 0;
  }
}
