/* Redesigned Bookmarks UI - Modern & User-Friendly Design */
:root {
    --primary-color: #e74a3b;
    --primary-hover: #d32f2f;
    --secondary-color: #f8f9fc;
    --accent-color: #1cc88a;
    --danger-color: #e74a3b;
    --text-dark: #343a40;
    --text-muted: #6c757d;
    --border-color: #e3e6f0;
    --card-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.15);
    --transition: all 0.3s ease;
    --radius: 0.5rem;
}

/* Main Containers */
.public-bookmarks-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1.5rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: var(--text-dark);
    box-sizing: border-box;
}

/* Header Section */
.public-bookmarks-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.public-bookmarks-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.public-bookmarks-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0.8rem auto 0;
    border-radius: var(--radius);
}

.public-bookmarks-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.8rem;
}

/* Simple Tab Header - Now just My Bookmarks */
.bookmarks-tabs-container {
    text-align: center;
    margin-bottom: 2rem;
}

.bookmarks-tabs {
    display: inline-block;
    background-color: #f5f5f5;
    border-radius: var (--radius);
    overflow: hidden;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.tab-button {
    padding: 0.75rem 1.5rem;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    border-radius: var(--radius);
}

.tab-content.active {
    display: block;
}

/* Filter and Search Section */
.bookmarks-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: center;
    background: var(--secondary-color);
    padding: 1rem;
    border-radius: var(--radius);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.bookmarks-filter {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.filter-option {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    transition: var(--transition);
}

.filter-option:hover {
    background: var(--secondary-color);
}

.filter-option.active {
    background: var(--primary-color);
    color: white;
}

/* Bookmarks Grid Layout */
.bookmarks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Bookmark Card */
.bookmark-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border: 1px solid var(--border-color);
}

.bookmark-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1.5rem rgba(58, 59, 69, 0.3);
}

.bookmark-thumbnail {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.bookmark-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.bookmark-card:hover .bookmark-thumbnail img {
    transform: scale(1.05);
}

.bookmark-type-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    z-index: 1;
}

.bookmark-card-content {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bookmark-title {
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.bookmark-title a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    transition: var(--transition);
}

.bookmark-title a:hover {
    color: var(--primary-color);
}

.bookmark-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.bookmark-meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bookmark-excerpt {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bookmark-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    margin-top: auto;
}

.bookmark-source-link,
.bookmark-view-link {
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: var(--transition);
}

.bookmark-source-link {
    color: var(--text-muted);
}

.bookmark-view-link {
    color: var(--primary-color);
    font-weight: 500;
}

.bookmark-source-link:hover,
.bookmark-view-link:hover {
    opacity: 0.8;
}

/* Controls for My Bookmarks */
.bookmark-controls {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.edit-bookmark-btn,
.toggle-visibility-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: var(--transition);
}

.edit-bookmark-btn:hover,
.toggle-visibility-btn:hover {
    background: var(--secondary-color);
}

.bookmark-visibility-status {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bookmark-visibility-status.public {
    background-color: rgba(28, 200, 138, 0.2);
    color: var(--accent-color);
}

.bookmark-visibility-status.private {
    background-color: rgba(246, 194, 62, 0.2);
    color: #f6c23e;
}

/* Bookmark Editing Interface */
.bookmark-edit-interface {
    padding: 1rem;
    background: var(--secondary-color);
    border-radius: var(--radius);
    margin: 1rem 0;
}

.bookmark-content-editor {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var (--radius);
    font-family: inherit;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
    resize: vertical;
}

.bookmark-content-editor:focus {
    outline: none;
    border-color: var(--primary-color);
}

.bookmark-visibility {
    margin-bottom: 1rem;
}

.bookmark-visibility label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
}

.bookmark-edit-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
}

.cancel-edit-btn,
.save-content-btn {
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.cancel-edit-btn {
    background: #e3e6f0;
    color: var(--text-dark);
}

.save-content-btn {
    background: var(--primary-color);
    color: white;
}

.cancel-edit-btn:hover {
    background: #d1d3e2;
}

.save-content-btn:hover {
    background: var(--primary-hover);
}

.bookmark-message {
    padding: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.bookmark-message.success {
    background-color: rgba(28, 200, 138, 0.2);
    color: var(--accent-color);
    border: 1px solid rgba(28, 200, 138, 0.3);
}

.bookmark-message.error {
    background-color: rgba(231, 74, 59, 0.2);
    color: var (--danger-color);
    border: 1px solid rgba(231, 74, 59, 0.3);
}

/* No bookmarks message */
.no-bookmarks {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.no-bookmarks-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.no-bookmarks-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.no-bookmarks-subtext {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Single Bookmark Page */
.single-bookmark-container {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.single-bookmark-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--card-shadow);
}

.bookmark-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.bookmark-header .bookmark-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.bookmark-header .bookmark-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.bookmark-type {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
}

.bookmark-date,
.bookmark-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.bookmark-full-content {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.bookmark-full-content p {
    margin-bottom: 1.2rem;
}

.bookmark-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bookmark-source-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition);
}

.bookmark-source-button:hover {
    background: var(--primary-hover);
    color: white;
}

.bookmark-sharing {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.copy-link-container {
    display: flex;
    margin-top: 0.5rem;
}

#bookmark-share-link {
    flex-grow: 1;
    padding: 0.5rem 0.75rem;
    border: 1px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 0.85rem;
}

.copy-link-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: white;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.copy-link-button:hover {
    background: var(--primary-hover);
}

.back-to-bookmarks {
    margin-top: 2rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

/* Styles for Bookmark sharing in BuddyPress Activity */
.bookmark-share-activity {
    margin: 10px 0;
}

.bookmark-user-content {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.bookmark-activity-card {
    background: #f8f9fa;
    border: 1px solid #e3e6f0;
    border-radius: 6px;
    padding: 15px;
    position: relative;
    margin-top: 10px;
}

.bookmark-activity-type {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #4e73df;
    color: white;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: 20px;
}

.bookmark-activity-title {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.bookmark-activity-title a {
    color: #2c3e50;
    text-decoration: none;
}

.bookmark-activity-title a:hover {
    color: #4e73df;
    text-decoration: underline;
}

.bookmark-activity-excerpt {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #5a5c69;
}

.bookmark-activity-footer {
    border-top: 1px solid #e3e6f0;
    padding-top: 12px;
    text-align: right;
}

.bookmark-activity-link {
    display: inline-block;
    color: #4e73df;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
}

.bookmark-activity-link:hover {
    text-decoration: underline;
}

/* BP Share Modal Styles */
.bp-share-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bp-share-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.bp-share-modal-header {
    padding: 15px 20px;
    border-bottom: 1px solid #e3e6f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bp-share-modal-header h3 {
    margin: 0;
    font-size: 18px;
    color: #2c3e50;
}

.bp-share-modal-close {
    font-size: 24px;
    cursor: pointer;
    color: #adb5bd;
    transition: color 0.2s;
}

.bp-share-modal-close:hover {
    color: #dc3545;
}

.bp-share-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex-grow: 1;
}

.bp-share-input-wrapper {
    margin-bottom: 20px;
}

#bp-share-content {
    width: 100%;
    min-height: 80px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
}

.bp-share-bookmark-list {
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid #e3e6f0;
    border-radius: 4px;
}

.bp-share-bookmark-item {
    display: flex;
    padding: 12px;
    border-bottom: 1px solid #e3e6f0;
    cursor: pointer;
    transition: background-color 0.2s;
}

.bp-share-bookmark-item:last-child {
    border-bottom: none;
}

.bp-share-bookmark-item:hover,
.bp-share-bookmark-item.selected {
    background-color: #f8f9fa;
}

.bp-share-checkbox-wrapper {
    padding-right: 10px;
    display: flex;
    align-items: center;
}

.bp-share-bookmark-details {
    flex-grow: 1;
}

.bp-share-bookmark-title {
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: block;
    margin-bottom: 5px;
    color: #2c3e50;
}

.bp-share-bookmark-excerpt {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 5px;
}

.bp-share-bookmark-type {
    font-size: 12px;
    background: #4e73df;
    color: white;
    padding: 2px 6px;
    border-radius: 20px;
    display: inline-block;
}

.bp-share-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #e3e6f0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.bp-share-cancel-btn,
.bp-share-submit-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.bp-share-cancel-btn {
    background-color: #f8f9fa;
    color: #495057;
}

.bp-share-submit-btn {
    background-color: #4e73df;
    color: white;
    display: flex;
    align-items: center;
    gap: 6px;
}

.bp-share-cancel-btn:hover {
    background-color: #e9ecef;
}

.bp-share-submit-btn:hover {
    background-color: #3a5cca;
}

.bp-share-submit-btn:disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
}

.bp-share-success-message {
    text-align: center;
    padding: 30px 20px;
    color: #28a745;
    font-size: 18px;
    font-weight: 500;
}

/* BuddyPress Activity Bookmark Styles - Updated Layout */
.bookmark-activity-wrapper {
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.bookmark-user-message {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

/* Title section with emoji */
.bookmark-activity-title-wrap {
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.bookmark-emoji {
    font-size: 18px;
    margin-right: 6px;
    display: inline-block;
}

.bookmark-title-text {
    font-weight: 600;
}

/* Main content section */
.bookmark-activity-content {
    margin-top: 10px;
    margin-left: 24px; /* Align content with title text */
    color: #333;
}

.bookmark-content-main {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    text-align: justify;
}

/* Tags styling */
.bookmark-activity-tags {
    margin: 12px 0;
}

.bookmark-activity-tag {
    display: inline-block;
    background: #e9eef5;
    color: #4267B2;
    border-radius: 15px;
    padding: 3px 10px;
    font-size: 13px;
    margin-right: 6px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Read more link */
.bookmark-activity-readmore {
    margin-top: 10px;
    text-align: right;
    font-size: 13px;
    font-style: italic;
}

.bookmark-readmore-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.bookmark-readmore-link:hover {
    color: #4267B2;
    text-decoration: underline;
}

/* Activity footer line */
.activity-meta {
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

/* Enhanced BuddyPress Activity Bookmark Styles - Updated Layout */
.bookmark-activity-wrapper {
    margin: 10px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

.bookmark-user-message {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* Title section with emoji */
.bookmark-activity-title-wrap {
    margin: 10px 0 15px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.bookmark-emoji {
    font-size: 18px;
    margin-right: 6px;
    display: inline-block;
}

.bookmark-title-text {
    font-weight: 600;
}

/* Main content section */
.bookmark-activity-content {
    margin-left: 8px;
    color: #333;
}

.bookmark-content-main {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 12px;
    text-align: left;
}

/* Section titles */
.bookmark-section-title {
    display: inline-block;
    font-weight: 600;
    color: #333;
    margin-right: 5px;
    margin-bottom: 6px;
}

.bookmark-summary-title {
    color: #d32f2f;
    font-weight: 600;
}

/* Content sections */
.bookmark-content-section {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

/* Numbered points */
.bookmark-point-number {
    font-weight: 600;
    color: #d32f2f;
    margin-right: 2px;
}

/* Hashtags */
.bookmark-hashtag {
    color: #4267B2;
    font-weight: 500;
}

/* Tags styling */
.bookmark-activity-tags {
    margin: 12px 0;
}

.bookmark-activity-tag {
    display: inline-block;
    background: #e9eef5;
    color: #4267B2;
    border-radius: 15px;
    padding: 3px 10px;
    font-size: 13px;
    margin-right: 6px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* Read more link */
.bookmark-activity-readmore {
    margin-top: 10px;
    text-align: right;
    font-size: 13px;
}

.bookmark-readmore-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.bookmark-readmore-link:hover {
    color: #4267B2;
    text-decoration: underline;
}

/* Custom Read More button for activity posts */
.bookmark-readmore-button {
    margin-top: 15px;
    text-align: right;
}

.bookmark-view-full {
    display: inline-block;
    padding: 6px 15px;
    background-color: #4e73df;
    color: white !important;
    border-radius: 20px;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    transition: background-color 0.2s, transform 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
}

.bookmark-view-full:hover {
    background-color: #3a5cca;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.bookmark-view-full:active {
    transform: translateY(0);
}

/* Override BuddyPress styles that might be hiding content */
.activity-content .activity-inner {
    overflow: visible !important;
    max-height: none !important;
}

/* Ensure emojis display properly */
.activity-content .activity-inner p {
    margin-bottom: 10px;
}

/* Tag styling in activity posts */
.activity-content .activity-inner a {
    color: #4267B2;
    text-decoration: none;
}

.activity-content .activity-inner a:hover {
    text-decoration: underline;
}

/* Make sure the core message and key points stand out */
.activity-content .activity-inner strong {
    color: #d32f2f;
    font-weight: 600;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .single-bookmark-container {
        grid-template-columns: 1fr;
    }
    
    .bookmark-header .bookmark-title {
        font-size: 1.75rem;
    }
    
    .bookmarks-filter-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bookmarks-filter {
        margin-top: 1rem;
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .bookmarks-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bookmarks-tabs {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 0.5rem;
    }
    
    .tab-button {
        flex: 1;
        white-space: nowrap;
    }
    
    .bookmark-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .bookmark-sharing {
        width: 100%;
        justify-content: flex-start;
        margin-top: 1rem;
    }

    .bp-share-modal-content {
        width: 95%;
        max-height: 90vh;
    }
}

@media (max-width: 576px) {
    .public-bookmarks-title {
        font-size: 2rem;
    }
    
    .bookmark-header .bookmark-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}