/* TheReader.AI – News Grid Styles */
.tr-main-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 30px 0;
    margin: 0 auto;
    min-width: 100%;
}
.tr-news-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 1200px;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
}
.tr-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tr-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}
.tr-card-header {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #f6ad4a 0%, #e05e3e 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tr-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tr-card:hover img {
    transform: scale(1.05);
}
.tr-placeholder-icon {
    font-size: 40px;
    color: #fff;
    opacity: 0.8;
}
.tr-card-content {
    padding: 32px 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.tr-card-title {
    font-size: 20px;
    margin: 0 0 16px;
    line-height: 1.4;
    color: #111827;
    font-weight: 800;
    letter-spacing: -0.4px;
}
.tr-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    flex-wrap: wrap;
    border-bottom: 1px solid #f1f5f9;
}
.tr-card-date {
    font-size: 12px;
    color: #94a3b8;
    font-weight: 500;
}
.tr-card-curated {
    display: flex;
    align-items: center;
}
.tr-card-curated-label {
    font-size: 11px;
    color: #e11d48;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(225, 29, 72, 0.06);
    padding: 6px 10px;
    border-radius: 6px;
    transition: background 0.3s ease;
}
.tr-card-curated-label:hover {
    background: rgba(225, 29, 72, 0.12);
}
.tr-inner-content {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
}
.tr-inner-content ul {
    padding-left: 20px;
    margin: 0;
}
.tr-inner-content li {
    margin-bottom: 12px;
    position: relative;
}
.tr-inner-content li::marker {
    color: #cbd5e1;
}
.tr-watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    z-index: 5;
    letter-spacing: 0.5px;
}