/* Common Widget Styles */
.widget {
    margin-bottom: 1.5rem;
}

.widget:last-child {
    margin-bottom: 0;
}

.widget-title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.widget-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 118, 117, 0.1);
    color: #ff7675;
    border-radius: 50%;
    font-size: 1rem;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ff7675;
    margin: 0;
    padding: 0;
}

.widget-body {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background-color: #fff;
    border-radius: 1rem;
}

.text-coral {
    color: #ff7675;
}

/* Donation Menu */
.donation-item {
    transition: background-color 0.15s ease;
    font-size: 0.95rem;
    position: relative;
}

.donation-item:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.icon-wrapper {
    color: #a0aec0;
    transition: color 0.15s ease;
}

.donation-item:hover .icon-wrapper {
    color: #ff7675;
}

/* Recent Posts */
.recent-post {
    transition: background-color 0.2s ease;
    padding: 0.5rem;
    margin: -0.5rem;
    border-radius: 0.5rem;
}

.recent-post:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.post-image img {
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.post-title {
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
    margin-top: -0.2rem;
}

.post-title a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-date {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Social Links */
.social-links {
    margin: -0.25rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.social-link {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #718096;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-link:hover {
    color: #fff;
    background-color: #ff7675;
    transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 991.98px) {
    .widget {
        margin-bottom: 1rem;
    }
}
