/* SCDEV Rotating Posts Widget */
.scdev-rotating-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.scdev-rotating-post-item {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.scdev-rotating-post-item:hover {
    border-color: #3498db;
}

.scdev-rotating-post-image {
    display: block;
    width: 100%;
    height: 130px;
    overflow: hidden;
    border-radius: 0;
    position: relative;
}

.scdev-rotating-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.scdev-rotating-post-image:hover img {
    transform: scale(1.05);
}

.scdev-rotating-post-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    background: #fff;
}

.scdev-rotating-post-label {
    position: absolute;
    bottom: 8px;
    right: 8px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    background: rgba(52, 152, 219, 0.9);
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
}

.scdev-rotating-post-title {
    margin: 0;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 1.0 !important;
}

.scdev-rotating-post-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.scdev-rotating-post-title a:hover {
    color: #3498db;
}

/* Night Mode */
body.night-mode .scdev-rotating-post-item {
    border-color: #444;
}

body.night-mode .scdev-rotating-post-item:hover {
    border-color: #64b5f6;
}

body.night-mode .scdev-rotating-post-content {
    background: #2a2a2a;
}

body.night-mode .scdev-rotating-post-label {
    background: rgba(100, 181, 246, 0.9);
}

body.night-mode .scdev-rotating-post-title a {
    color: #f0f0f0;
}

body.night-mode .scdev-rotating-post-title a:hover {
    color: #64b5f6;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .scdev-rotating-post-image {
        height: 110px;
    }
    
    .scdev-rotating-post-title {
        font-size: 14px !important;
    }
}
