﻿/* Core widget styling */

.pinterest-widget-container {
    background: #fff;
    margin: 10px;
    border: 1px solid white;
    border-radius: 10px;
    max-width: 300px;
}

    .pinterest-widget-container:hover {
        background: #f5f5f5;
    }

.pinterest-widget-link {
    display: block;
    text-decoration: none;
    background: transparent;
    transition: background 0.2s ease;
}

.pinterest-widget {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 10px;
    transition: background 0.2s ease;
    overflow: hidden;
    max-height: 200px;
    min-width: 275px;
    margin: 8px;
}

.pinterest-widget {
    background: #f5f5f5;
}

/* Remove default margins in image rows */
.pinterest-images-row {
    margin-bottom: 0;
}

/* Ensure responsive, cropped images */
.pinterest-pin-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 1px;
}

/* Board title styling */
.pinterest-board-title {
    font-weight: bold;
    margin-top: 8px;
    color: #333;
    padding-left: 10px;
}

/* Pin count styling */
.pinterest-pin-count {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 10px;
}
