/* Blog Post Widget */
.bpw-widget {
    width: 100%;
}

.bpw-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.bpw-card {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Title */
.bpw-title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 14px;
}

.bpw-title-link {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.25s ease;
}

.bpw-title-link:hover {
    color: #2ecc71;
    text-decoration: none;
}

/* Featured Image */
.bpw-image-wrap {
    display: block;
    margin-bottom: 16px;
    overflow: hidden;
}

.bpw-image-wrap a {
    display: block;
}

.bpw-image {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Excerpt */
.bpw-excerpt {
    font-size: 15px;
    line-height: 1.7;
    color: #555555;
    margin: 0 0 20px;
}

/* Full-width Button */
.bpw-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 14px 20px;
    background-color: #2ecc71;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.25s ease, color 0.25s ease;
    cursor: pointer;
}

.bpw-btn:hover {
    background-color: #27ae60;
    color: #ffffff;
    text-decoration: none;
}

/* Sentinel (invisible trigger element) */
.bpw-sentinel {
    height: 1px;
    margin-top: 32px;
}

/* Loading dots */
.bpw-loading {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 24px 0;
}

.bpw-loading--visible {
    display: flex;
}

.bpw-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #2ecc71;
    animation: bpw-bounce 1.2s infinite ease-in-out;
}

.bpw-dot:nth-child(2) { animation-delay: 0.2s; }
.bpw-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes bpw-bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40%           { transform: scale(1);   opacity: 1; }
}