/* Press Kit Button Styles */
.press-kit-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 218, 97, 0.3);
    color: var(--black-primary);
    border: 2px solid var(--black-primary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-decoration: none;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2); */
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    font-size: 0;
}

.press-kit-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(2px);
    z-index: -1;
}

.press-kit-btn::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.press-kit-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.press-kit-btn:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFDA61'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 15h-2v-6h2v6zm0-8h-2V7h2v2z'/%3E%3C/svg%3E");
}

.press-kit-btn:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for the press-kit button */
@media (max-width: 768px) {
    .press-kit-btn {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
        border-width: 2px;
    }
    
    .press-kit-btn::after {
        width: 18px;
        height: 18px;
    }
}

@media (max-width: 480px) {
    .press-kit-btn {
        width: 28px;
        height: 28px;
        top: 8px;
        right: 8px;
        border-width: 1.5px;
    }
    
    .press-kit-btn::after {
        width: 16px;
        height: 16px;
    }
}
