/* Media Consumption Page Styles */

/* Constrain media page to match post page width */
.media-container {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.media-section {
    width: 100%;
}


/* Hide preview cards for specific elements */
[data-no-preview="true"] {
    pointer-events: auto !important;
}

[data-no-preview="true"]:hover::after,
[data-no-preview="true"]:hover::before {
    display: none !important;
}

/* Remove preview cards for Spotify domain links */
a[href*="spotify.com"],
a[href*="accounts.spotify.com"] {
    text-decoration: none !important;
}

/* Remove preview cards for auth buttons */
.auth-button {
    text-decoration: none !important;
}

/* Responsive design for smaller screens */
@media (max-width: 1200px) {
    .media-container {
        padding: 0 !important;
    }
    
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }
    
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }
    
    .article-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 12px;
    }
    
    .podcast-subsection h3,
    .article-subsection h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .media-container {
        padding: 0 !important;
    }
    
    .toc-sidebar {
        display: none !important; /* Hide sidebar on mobile */
    }
}

/* Ensure content fills the container properly */
.markdown-body {
    width: 100% !important;
    box-sizing: border-box !important;
}

.markdown-body .prose {
    width: 100%;
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* Ensure images and other content don't exceed container width */
.markdown-body .media-container,
.markdown-body .media-section {
    max-width: 750px !important;
    width: 100%;
    box-sizing: border-box !important;
    margin: 0 auto !important;
}

/* Ensure content respects container boundaries */
.markdown-body .media-container *,
.markdown-body .media-section * {
    max-width: 100%;
    box-sizing: border-box !important;
}

/* Ensure TOC shows all content */
.toc-sidebar {
    height: fit-content !important;
    overflow-y: visible !important;
}

.toc-sidebar .toc-container {
    height: fit-content !important;
    overflow: visible !important;
}

/* Also override prose class if present */
.prose:has(.media-container),
.prose .media-container {
    max-width: 750px !important;
    width: 100%;
    margin: 0 auto !important;
    padding: 0 !important;
}

/* CRITICAL: Ensure media-container works with TOC sidebar layout */
.page-container .media-container {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 30px 16px !important;
    box-sizing: border-box !important;
    background-color: #121212 !important;
    color: #f5f5f5 !important;
    gap: 40px !important;
}

/* Responsive scaling for media container */
@media (max-width: 1400px) {
    .page-container .media-container {
        max-width: 750px !important;
        margin: 0 auto !important;
        padding: 30px 16px !important;
    }
}

@media (max-width: 768px) {
    .page-container .media-container {
        max-width: 100% !important;
        padding: 20px 16px !important;
        gap: 30px !important;
    }
}

.page-container .media-section {
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: 100%;
    max-width: 750px;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

.page-container .media-section h2 {
    color: #bb86fc !important;
    border-bottom: 1px solid #333 !important;
    padding-bottom: 15px !important;
    margin-bottom: 25px !important;
    font-size: 1.8rem !important;
    font-weight: 600 !important;
}

/* Remove old column styles */
.media-column {
    display: none;
}

.media-list {
    padding-right: 15px;
    padding-bottom: 20px;
}

.media-list h2 {
    color: #bb86fc;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: sticky;
    top: 0;
    background-color: #1e1e1e;
    z-index: 10;
}

.media-item {
    background-color: #2d2d2d;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.media-content {
    padding: 15px;
}

.media-content h3 {
    color: #8b5cf6;
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Spotify widget styles */
.spotify-widget {
    width: 100%;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
}

.spotify-widget iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* Book Grid Styles */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.book-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #444;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #bb86fc;
}

.book-cover {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.book-info {
    padding: 15px;
}

.book-info h4 {
    color: #fff;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.book-info .author {
    color: #bb86fc;
    margin: 0 0 5px 0;
    font-size: 0.9rem;
}

.book-info .date {
    color: #888;
    margin: 0;
    font-size: 0.8rem;
}

/* Quarter Section Styles */
.quarter-section {
    margin-bottom: 40px;
}

.quarter-section h3 {
    color: #8b5cf6;
    margin: 0 0 20px 0;
    font-size: 1.3rem;
    font-weight: 600;
    border-bottom: 1px solid #444;
    padding-bottom: 10px;
}

/* Podcast Grid Styles */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.podcast-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #444;
}

.podcast-card h3 {
    color: #8b5cf6;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.podcast-note {
    background-color: #1e1e1e;
    border: 1px solid #444;
    border-radius: 6px;
    padding: 15px;
    color: #888;
    font-style: italic;
}

/* Podcast Subsection Styles */
.podcast-subsection {
    margin-bottom: 40px;
}

.podcast-subsection h3 {
    color: #8b5cf6;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    border-bottom: 2px solid #8b5cf6;
    padding-bottom: 8px;
}

.podcast-subsection .podcast-grid {
    margin-top: 15px;
}

/* Updated Podcast Card Styles */
.podcast-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #bb86fc;
}

.podcast-cover {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.podcast-info h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.podcast-link {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.podcast-link:hover {
    color: #bb86fc;
    text-decoration: none;
}

/* Article Grid Styles */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

/* Legacy Article Card Styles (for old format) */
.article-card.legacy {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 20px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card.legacy:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #bb86fc;
}

.article-card.legacy h4 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
}

.article-card.legacy .date {
    color: #888;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.article-card.legacy .summary {
    color: #ccc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Article Subsection Styles */
.article-subsection {
    margin-bottom: 30px;
}

.article-subsection h4 {
    color: #bb86fc;
    margin: 0 0 15px 0;
    font-size: 1.2rem;
    border-bottom: 1px solid #bb86fc;
    padding-bottom: 5px;
}

.article-subsection .article-grid {
    margin-top: 15px;
}

/* Updated Article Card Styles for Blogs */
.article-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #444;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    border-color: #bb86fc;
}

.article-cover {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

.article-info h5 {
    color: #fff;
    margin: 0 0 10px 0;
    font-size: 1rem;
}

.article-link {
    color: #bb86fc;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #d8b4fe;
    text-decoration: none;
}






/* Book Grid Styles */
.book-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.book-card {
    background-color: #2d2d2d;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.book-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.book-cover {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-bottom: 1px solid #444;
}

.book-info {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.book-info h4 {
    margin: 0 0 5px 0;
    color: #bb86fc;
    font-size: 0.9rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.book-info .author {
    color: #8b5cf6;
    margin: 0 0 5px 0;
    font-style: italic;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.book-info .date {
    color: #888;
    margin: 0;
    font-size: 0.7rem;
    margin-top: auto;
}

/* Podcast Grid Styles */
.podcast-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.podcast-card {
    background-color: #2d2d2d;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.podcast-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.podcast-artwork {
    width: 100%;
    height: 140px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.podcast-artwork.has-image {
    background: none;
}

.podcast-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.podcast-info {
    padding: 12px;
}

.podcast-info h4 {
    margin: 0 0 5px 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.podcast-info .show {
    color: #bb86fc;
    margin: 0 0 5px 0;
    font-size: 0.8rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.podcast-info .time {
    color: #8b5cf6;
    margin: 0;
    font-size: 0.7rem;
    font-weight: bold;
}

.article-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.article-item {
    background-color: #2d2d2d;
    border-radius: 6px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.article-item h4 {
    color: #bb86fc;
    margin: 0 0 10px 0;
}

.article-item .source {
    color: #8b5cf6;
    margin: 0 0 5px 0;
    font-style: italic;
}

.article-item .date {
    color: #888;
    margin: 0 0 10px 0;
    font-size: 0.9rem;
}

.article-link {
    display: inline-block;
    color: #bb86fc;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.article-link:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

.scroll-controls {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.scroll-button {
    background: #bb86fc;
    color: #121212;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.scroll-button:hover {
    opacity: 1;
}

/* Simple Music Section Styles */
.time-range-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    width: fit-content;
}

.time-range-selector label {
    color: #f5f5f5;
    font-weight: 600;
    font-size: 1rem;
}

.time-range-selector select {
    background-color: #2d2d2d;
    color: #f5f5f5;
    border: 1px solid #bb86fc;
    border-radius: 6px;
    padding: 8px 12px;
    font-size: 0.9rem;
    cursor: pointer;
}

.time-range-selector select:focus {
    outline: none;
    border-color: #8b5cf6;
    box-shadow: 0 0 0 2px rgba(139, 92, 246, 0.2);
}

.music-list-section {
    margin-bottom: 40px;
}

.music-list-section h3 {
    color: #8b5cf6;
    margin: 0 0 20px 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.music-list {
    background-color: #1e1e1e;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 20px;
}

.music-list-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    color: #f5f5f5;
}

.music-list-item:last-child {
    border-bottom: none;
}

.music-list-item .rank {
    color: #bb86fc;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 30px;
}

.music-list-item .name {
    color: #ffffff;
    font-weight: 600;
    flex: 1;
}

.music-list-item .artist {
    color: #8b5cf6;
    font-style: italic;
}

.music-list-item .play-count {
    color: #888;
    font-size: 0.9rem;
}

.loading, .error, .no-data {
    text-align: center;
    color: #8b5cf6;
    padding: 20px;
    font-style: italic;
}

.error {
    color: #cf6679;
}

.no-data {
    color: #888;
}

/* Location Box Styles */
.location-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: rgba(30, 30, 30, 0.8);
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 100;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(187, 134, 252, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.location-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-icon {
    font-size: 1.2rem;
}

#current-location {
    color: #f5f5f5;
    font-size: 0.9rem;
    font-weight: 500;
}


/* Responsive Design */
@media (max-width: 1200px) {
    .book-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .location-box {
        bottom: 70px;
    }
}

@media (max-width: 768px) {
    .book-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 8px;
    }
    
    .podcast-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 10px;
    }
    
    .book-cover {
        height: 120px;
    }
    
    .podcast-artwork {
        height: 100px;
    }
    
    .location-box {
        padding: 8px 12px;
    }
    
    #current-location {
        font-size: 0.8rem;
    }
}





/* Podcast Note Styles */
.podcast-note {
    background: rgba(187, 134, 252, 0.1);
    border: 1px solid rgba(187, 134, 252, 0.3);
    border-radius: 6px;
    padding: 15px;
    text-align: center;
}

.podcast-note p {
    color: #bb86fc;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== Responsive Banner ===== */
.media-banner {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.media-banner-img {
    width: 100%;
    max-width: 600px !important;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

@media (max-width: 768px) {
    .media-banner {
        max-width: 100%;
        padding: 0 16px;
        box-sizing: border-box;
    }
    .media-banner-img {
        max-width: 100% !important;
        border-radius: 8px;
    }
}

/* ===== Twitter/X Section ===== */
.section-subtitle {
    color: #888;
    font-size: 0.95rem;
    margin-top: -8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.tweet-handle {
    color: #bb86fc !important;
    text-decoration: none !important;
    font-weight: 600;
}

.tweet-handle:hover {
    text-decoration: underline !important;
}

.tweets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.tweet-card {
    background: #1e1e1e;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: border-color 0.2s ease, transform 0.2s ease;
    min-height: 80px;
}

.tweet-card:hover {
    border-color: #bb86fc;
    transform: translateY(-2px);
}

.tweet-text {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 12px;
    word-break: break-word;
}

.tweet-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tweet-date {
    color: #666;
    font-size: 0.8rem;
}

.tweet-link {
    color: #bb86fc !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.tweet-link:hover {
    opacity: 1;
}

@media (max-width: 599px) {
    .tweets-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .tweet-card {
        padding: 14px 16px;
    }
}

/* ===== Book Rating Stars ===== */
.book-card .rating {
    color: #ffd700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ===== Clickable Book Cards ===== */
a.book-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

a.book-card-link .book-card {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.book-card-link:hover .book-card {
    transform: translateY(-3px);
    border-color: #bb86fc;
    box-shadow: 0 4px 16px rgba(187, 134, 252, 0.2);
}

a.book-card-link .book-info h4::after {
    content: " ↗";
    font-size: 0.7em;
    opacity: 0;
    transition: opacity 0.2s ease;
}

a.book-card-link:hover .book-info h4::after {
    opacity: 0.6;
}

/* ===== Track Embed Cards ===== */

/* --- Artist Image Display Fixes --- */
.media-container .music-list-item .artist-image {
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    background-color: #1a1a1a !important;
    display: block !important;
}

.media-container .music-list-item .artist-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    display: block !important;
}

/* Override grid to single column list for tracks */
.media-container .music-list-section .music-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    grid-template-columns: unset !important;
    padding: 0 !important;
    background: none !important;
    border: none !important;
}

/* Artist grid: compact rows */
.media-container .music-list-section .music-list .music-list-item:not(.track-embed-card) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 4px 0 !important;
    margin: 0 !important;
    background: none !important;
    border: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
    border-radius: 0 !important;
    min-height: auto !important;
}

/* Track embed cards: flush, no box, tight spacing */
.track-embed-card {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 0 2px 0 !important;
    min-height: auto !important;
    display: block !important;
}

.track-embed-card iframe {
    display: block;
    margin: 0;
}

.track-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1px 0;
}

.track-meta-row .rank {
    color: #bb86fc !important;
    font-weight: 700 !important;
    font-size: 11px !important;
}

.track-meta-row .play-count {
    color: #666 !important;
    font-size: 10px !important;
    background: none !important;
    padding: 0 !important;
    border: none !important;
}

.track-embed-wrapper {
    width: 100%;
}

.track-embed-wrapper iframe {
    border-radius: 8px;
}

/* ===== Clickable Tweet Cards ===== */
a.tweet-card-link {
    text-decoration: none !important;
    color: inherit !important;
    display: block;
}

a.tweet-card-link .tweet-card {
    transition: border-color 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

a.tweet-card-link:hover .tweet-card {
    border-color: #bb86fc;
    transform: translateY(-2px);
}


