.awh-bookmark-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    direction: rtl;
    border: 1px solid #d0d0d0;
    background: #ffffff;
    color: #222222;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.awh-bookmark-toggle:hover {
    border-color: #2f6fed;
}

.awh-bookmark-icon {
    width: 18px;
    height: 18px;
    display: inline-flex;
}

.awh-bookmark-icon svg {
    width: 100%;
    height: 100%;
}

.awh-bookmark-icon path {
    fill: transparent;
    stroke: currentColor;
    stroke-width: 1.8;
    transition: fill 0.2s ease;
}

.awh-bookmark-toggle.is-bookmarked {
    border-color: #2f6fed;
    color: #2f6fed;
    background: #f2f6ff;
}

.awh-bookmark-toggle.is-bookmarked .awh-bookmark-icon path {
    fill: currentColor;
}

.awh-bookmark-content-end {
    margin-top: 22px;
}

.awh-bookmark-list {
    display: grid;
    gap: 18px;
    direction: rtl;
    text-align: right;
}

.awh-bookmark-item {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: stretch;
    padding: 12px;
    border: 1px solid #e8eaf1;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(34, 47, 62, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.awh-bookmark-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(34, 47, 62, 0.1);
}

.awh-bookmark-item-thumb {
    display: block;
    text-decoration: none;
    width: 360px;
    max-width: 100%;
}

.awh-bookmark-item-image {
    display: block;
    width: 360px;
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    background: #f3f3f3;
}

.awh-bookmark-item-image-placeholder {
    border: 1px solid #e1e1e1;
}

.awh-bookmark-item-title {
    margin: 2px 0 10px;
    font-size: 20px;
    line-height: 1.3;
}

.awh-bookmark-item-title a {
    color: inherit;
    text-decoration: none;
}

.awh-bookmark-item-title a:hover {
    text-decoration: underline;
}

.awh-bookmark-item-excerpt {
    margin: 0;
    color: #4f5665;
    line-height: 1.7;
    text-align: right;
}

.awh-bookmark-list-empty {
    margin: 0;
    color: #4f5665;
    direction: rtl;
    text-align: right;
}

@media (max-width: 640px) {
    .awh-bookmark-item {
        grid-template-columns: 1fr;
    }

    .awh-bookmark-item-thumb {
        width: 100%;
    }

    .awh-bookmark-item-image {
        width: 100%;
        height: auto;
        aspect-ratio: 2 / 1;
    }
}
