.check-also-box {
    position: fixed;
    bottom: -350px;
    right: 20px;
    width: 280px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 12px;
    z-index: 99999;
    transition: bottom 0.4s ease-in-out;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.check-also-box.active {
    bottom: 20px;
}

.check-also-close {
    position: absolute;
    top: 6px;
    right: 10px;
    background: transparent;
    border: none;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    color: #888;
}

.check-also-close:hover {
    color: #000;
}

.check-also-header {
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 8px;
    color: #222;
    border-bottom: 2px solid #e63946;
    padding-bottom: 4px;
    display: inline-block;
}

.check-also-content a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.check-also-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
    display: block;
}

.check-also-category {
    display: inline-block;
    background: #e63946;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.check-also-title {
    font-size: 14px;
    line-height: 1.35;
    margin: 2px 0 0;
    color: #111;
    font-weight: 600;
}

.check-also-content a:hover .check-also-title {
    color: #e63946;
}