.art-photos-widget {
    overflow: hidden;
    border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	margin-bottom: 20px;
}
.art-photos-widget .art-pw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px 10px;
    border-bottom: 1px solid #e0e0e0;
}
.art-photos-widget .art-pw-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.art-photos-widget .art-pw-bar {
    display: inline-block;
    width: 4px;
    height: 20px;
    background: #299deb;
    border-radius: 2px;
    flex-shrink: 0;
}
.art-photos-widget .art-pw-viewall {
    font-size: 13px;
    font-weight: 700;
    color: #299deb;
    text-decoration: none;
    white-space: nowrap;
}
.art-photos-widget .art-pw-slider-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 8px 8px;
}
.art-photos-widget .art-pw-track {
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.art-photos-widget .art-pw-slide {
    min-width: 100%;
    padding: 12px 12px 14px;
    box-sizing: border-box;
}
.art-photos-widget .art-pw-grid3 {
	*display: grid;
    *grid-template-columns: repeat(3, 1fr);
    *gap: 3px;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}
.art-photos-widget .art-pw-grid3 img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.art-photos-widget .art-pw-caption {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    line-height: 1.6;
    margin: 0;
}
.art-photos-widget .art-pw-arrow {
    position: absolute;
    top: 50%;
    *transform: translateY(-80%);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid 8px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 12px;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, color 0.2s;
    z-index: 4;
    flex-shrink: 0;
}
.art-photos-widget .art-pw-prev {
    left: 18px;
}
.art-photos-widget .art-pw-next {
    right: 18px;
}
.art-photos-widget .art-pw-next.blaze-next::before,
.art-photos-widget .art-pw-prev.blaze-prev::before {
    margin-top: -5px;
    font-size: 26px;
}