/* Resource play button alignment */
.resource-card .resource-content {
    position: relative;
}

.resource-card .resource-link {
    position: absolute;
    top: 8px;
    right: 28px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 50%;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 14px;
}

.resource-card .resource-link:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

[data-theme="dark"] .resource-card .resource-link {
    background: rgba(37, 99, 235, 0.65);
    color:white
}