/* Default Thumbnail Styles - Shared across all pages */

.default-thumbnail {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
}

.default-thumbnail-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.default-thumbnail-content i {
    font-size: 2.5rem;
    color: #03C75A;
    opacity: 0.35;
    z-index: 1;
}

.thumbnail-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(30deg, transparent 12%, rgba(3, 199, 90, 0.05) 12%, rgba(3, 199, 90, 0.05) 14%, transparent 14%),
        linear-gradient(150deg, transparent 12%, rgba(3, 199, 90, 0.05) 12%, rgba(3, 199, 90, 0.05) 14%, transparent 14%);
    background-size: 60px 60px;
    z-index: 0;
}
