.gb-blog-card {
  display: flex;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #8d6e63;
  border-radius: 8px;
  overflow: hidden;
  margin: 2em 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #3e2723;
  height: 100%;
}

.gb-blog-card:hover {
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  opacity: 1;
}

.gb-card-thumb {
  width: 35%;
  min-width: 140px;
  min-height: 140px;
  background-color: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.gb-card-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gb-blog-card:hover .gb-card-thumb img {
  transform: scale(1.05);
}

.gb-card-content {
  width: 65%;
  background-color: #fff8e1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.gb-card-title {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  color: #3e2723;
}

.gb-card-more {
  font-size: 14px;
  color: #d84315;
  font-weight: bold;
  text-align: right;
}

.gb-card-more:after {
  content: " \00bb";
}

@media screen and (max-width: 600px) {
  .gb-card-thumb {
    width: 35%;
    min-width: 110px;
    min-height: 110px;
  }

  .gb-card-content {
    width: 65%;
    padding: 12px;
  }

  .gb-card-title {
    font-size: 14px;
    line-height: 1.4;
  }

  .gb-card-more {
    font-size: 12px;
  }
}

.gb-blog-card-editor .gb-blog-card-placeholder {
  padding: 16px;
  border: 1px dashed #d1d5db;
  border-radius: 8px;
  color: #6b7280;
  background: #fafafa;
}

.block-editor .gb-blog-card {
  pointer-events: none;
}
