/* Press Kit Button Styles */
.press-kit-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-yellow);
    color: var(--black-primary);
    border: 3px solid var(--black-primary);
    border-radius: 30px;
    width: 30px;
    height: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    overflow: hidden;
    text-indent: -2px; /* Adjust the "i" position */
    font-style: italic;
    font-family: "Times New Roman", serif;
}

.press-kit-btn:before {
    content: "i";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease;
}

.press-kit-btn:after {
    content: "Press Kit";
    position: absolute;
    opacity: 0;
    right: 30px; /* Start from outside the button */
    font-style: normal;
    font-family: "Inter", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.press-kit-btn:hover {
    width: 110px; /* Extend to ellipse shape */
    background: var(--black-primary);
    color: var(--primary-yellow);
    text-indent: 0px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.press-kit-btn:hover:before {
    left: 20px;
    transform: translateX(0);
}

.press-kit-btn:hover:after {
    opacity: 1;
    right: 25px; /* Position inside the extended button */
}

.press-kit-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for the press-kit button */
@media (max-width: 768px) {
    .press-kit-btn {
        width: 26px;
        height: 26px;
        font-size: 0.875rem;
        top: 10px;
        right: 10px;
        border-width: 2px;
    }
    
    .press-kit-btn:hover {
        width: 90px; /* Smaller width for smaller screens */
    }
    
    .press-kit-btn:after {
        font-size: 0.7rem;
    }
    
    .press-kit-btn:hover:before {
        left: 15px;
    }
    
    .press-kit-btn:hover:after {
        right: 20px;
    }
}

@media (max-width: 480px) {
    .press-kit-btn {
        width: 22px;
        height: 22px;
        font-size: 0.75rem;
        border-width: 2px;
    }
    
    .press-kit-btn:hover {
        width: 80px; /* Even smaller width for mobile */
    }
    
    .press-kit-btn:hover:before {
        left: 12px;
    }
    
    .press-kit-btn:hover:after {
        font-size: 0.65rem;
        right: 15px;
    }
}
