/* ----------------------------------------------------
   GuestBlogs — Styled to match VibeBooks theme
----------------------------------------------------- */

.gb-guestblogs-wrapper {
    width: 100%;
    max-width: 1100px;
    margin: auto;
    padding: 20px;
    font-family: "Inter", sans-serif;
    color: #1f3f23;
}

/* Add spacing between items */
.gb-guestblogs-item {
    display: flex;
    gap: 6px;
    padding: 18px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff, #f4f9f4);
    border: 1px solid rgba(52,103,57,0.25);
    box-shadow: 0 8px 24px rgba(52,103,57,0.15);
    transition: 0.25s ease;
}
.gb-guestblogs-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(52,103,57,0.25);
}

/* Columns */
.gb-guestblogs-col-image { flex: 0 0 18%; align-content: center; }
.gb-guestblogs-col-content { flex: 0 0 82%; }

/* Thumbnail */
.gb-thumb-img {
    width: 120px;
    height: 180px;
    object-fit: cover;
	align-content: center;
    border-radius: 14px;
    box-shadow: 0 4px 12px rgba(52,103,57,0.25);
}

/* Title */
.gb-post-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f3f23;
}
.gb-post-title a {
    color: #1f3f23;
    text-decoration: none;
}
.gb-post-title a:hover {
    color: #346739;
}

/* Excerpt */
.gb-post-excerpt {
    font-size: 15px;
    line-height: 1.55;
    opacity: 0.9;
    margin-bottom: 14px;
	padding-right: 20px;
}

/* Author + Buttons Row */
.gb-post-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Author */
.gb-post-author {
    font-size: 14px;
    font-weight: 600;
    color: #346739;
}
.author-icon::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f007"; /* user icon */
  margin-right: 6px;
}

/* Add padding between buttons and right border */
.gb-post-share {
    display: flex;
    gap: 12px;
    padding-right: 20px;
}

/* REAL Facebook + LinkedIn Buttons */
.gb-btn-fb,
.gb-btn-li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

/* Facebook */
.gb-btn-fb {
    background: #427A53;
}
.gb-btn-fb:hover {
    background: #346739;
}

/* LinkedIn */
.gb-btn-li {
    background: #427A53;
}
.gb-btn-li:hover {
    background: #346739;
}

/* Icons */
.gb-icon-fb,
.gb-icon-li {
    font-weight: 900;
    font-size: 16px;
    line-height: 1;
}

/* Single Post Header */
.gb-single-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(52,103,57,0.25);
}
.gb-back-link {
    font-size: 14px;
    font-weight: 600;
    color: #346739;
    text-decoration: none;
}
.gb-back-link:hover {
    text-decoration: underline;
}

/* Pagination */
.gb-pagination {
    margin-top: 30px;
    text-align: center;
}
.gb-pagination a,
.gb-pagination span {
    display: inline-block;
    padding: 10px 16px;
    margin: 0 4px;
    border-radius: 12px;
    border: 1px solid rgba(52,103,57,0.35);
    background: #ffffff;
    color: #346739;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(52,103,57,0.15);
    transition: 0.25s ease;
}
.gb-pagination a:hover {
    background: #e8f3ea;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(52,103,57,0.25);
}
.gb-pagination .current {
    background: #346739;
    color: #fff;
    border-color: #346739;
}

/* Responsive */
@media (max-width: 768px) {
    .gb-guestblogs-item {
        flex-direction: column;
    }
    .gb-guestblogs-col-image,
    .gb-guestblogs-col-content {
        flex: 0 0 100%;
    }
}

/* Section Title */
.gb-section-title {
    font-size: 30px;
    font-weight: 800;
    color: #346739;
    margin: 0 0 20px;
    padding-left: 0; /* no extra padding */
    margin-left: 20px; /* match wrapper padding */
    border-left: 6px solid #346739;
    padding-left: 12px; /* spacing between border and text */
}


