/* ========================================
   HANDYLUUP - TECHCRUNCH STYLE
   Clean, Modern, DIY-Friendly Design
   ======================================== */

/* CSS Variables */
:root {
  --tc-primary: #ff9800;
  --tc-primary-dark: #f57c00;
  --tc-text-primary: #1a1a1a;
  --tc-text-secondary: #666666;
  --tc-text-tertiary: #999999;
  --tc-border: #e5e5e5;
  --tc-bg-gray: #f7f7f7;
  --tc-bg-white: #ffffff;
  --tc-link-hover: #f57c00;
  --tc-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --tc-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --tc-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --tc-transition: all 0.2s ease;
  --tc-font-sans: -apple-system, BlinkMacSystemFont, 'Aktiv Grotesk', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --tc-font-serif: 'PT Serif', Georgia, 'Times New Roman', serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.tc-body {
  font-family: var(--tc-font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--tc-text-primary);
  background-color: var(--tc-bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--tc-text-primary);
  text-decoration: none;
  transition: var(--tc-transition);
}

a:hover {
  color: var(--tc-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==================== TOPBAR ==================== */

.tc-topbar {
  background-color: var(--tc-text-primary);
  border-bottom: 1px solid #333;
  padding: 8px 0;
}

.tc-topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tc-date {
  color: #999;
  font-size: 13px;
  font-weight: 500;
}

.tc-social-links {
  display: flex;
  gap: 15px;
}

.tc-social-links a {
  color: #999;
  font-size: 14px;
  transition: var(--tc-transition);
}

.tc-social-links a:hover {
  color: #fff;
}

/* ==================== HEADER ==================== */

.tc-header {
  background: var(--tc-bg-white);
  border-bottom: 1px solid var(--tc-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* Default state - white header with menu visible */
.tc-header .tc-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  transition: all 0.3s ease;
}

.tc-header .tc-logo h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--tc-text-primary);
  letter-spacing: -0.5px;
  transition: all 0.3s ease;
}

.tc-logo-img {
  height: 50px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
}

.tc-header.homepage-hero .tc-logo-img {
  height: 60px;
}

/* Show menu toggle by default */
.tc-header .tc-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Homepage unscrolled state - blue centered logo only */
.tc-header.homepage-hero {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  border-bottom: none;
}

.tc-header.homepage-hero .tc-header-content {
  justify-content: center;
}

.tc-header.homepage-hero .tc-logo h1 {
  font-size: 36px;
  color: #ffffff;
}

.tc-header.homepage-hero .tc-header-right {
  display: none;
}

.tc-header.scrolled .tc-menu-toggle span {
  background-color: var(--tc-text-primary) !important;
}

.tc-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tc-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.tc-menu-toggle span {
  width: 25px;
  height: 2px;
  background-color: #ffffff;
  transition: var(--tc-transition);
}

/* Mobile Menu */
.tc-mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 320px;
  height: 100vh;
  background-color: var(--tc-bg-white);
  border-right: 1px solid var(--tc-border);
  transition: left 0.3s ease;
  z-index: 2000;
  overflow-y: auto;
}

.tc-mobile-menu.active {
  left: 0;
}

.tc-mobile-menu.active::before {
  content: '';
  position: fixed;
  top: 0;
  left: 320px;
  width: calc(100vw - 320px);
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.tc-mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--tc-border);
}

.tc-mobile-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--tc-text-primary);
}

.tc-mobile-logo-img {
  height: 45px;
  width: auto;
  display: block;
}

.tc-mobile-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--tc-text-secondary);
  cursor: pointer;
  padding: 5px;
  transition: var(--tc-transition);
}

.tc-mobile-close:hover {
  color: var(--tc-text-primary);
}

.tc-mobile-nav {
  padding: 10px 0;
}

.tc-mobile-nav-list {
  list-style: none;
}

.tc-mobile-nav-link {
  display: block;
  padding: 15px 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--tc-text-primary);
  text-transform: capitalize;
  border-bottom: 1px solid var(--tc-border);
  transition: var(--tc-transition);
}

.tc-mobile-nav-link:hover {
  background-color: var(--tc-bg-gray);
  color: var(--tc-primary);
}

.tc-mobile-divider {
  height: 1px;
  background-color: var(--tc-border);
  margin: 10px 0;
}

/* ==================== MAIN CONTENT ==================== */

.tc-main {
  min-height: calc(100vh - 300px);
  padding: 0;
}

/* ==================== HERO SECTION ==================== */

.tc-hero {
  margin-bottom: 50px;
}

.tc-hero-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background-color: var(--tc-bg-white);
  border: 1px solid var(--tc-border);
  border-bottom: 2px solid var(--tc-border);
  transition: border-color 0.2s ease;
}

.tc-hero-card:hover {
  border-color: var(--tc-text-secondary);
}

.tc-hero-image {
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.tc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tc-transition);
}

.tc-hero-card:hover .tc-hero-image img {
  transform: scale(1.05);
}

.tc-hero-content {
  padding: 30px;
}

.tc-hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 15px 0 10px;
  color: var(--tc-text-primary);
}

/* ==================== CATEGORY TAG ==================== */

.tc-category-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--tc-primary);
  padding: 4px 0;
}

.tc-card .tc-category-tag {
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tc-category-tag-large {
  font-size: 13px;
  padding: 6px 0;
}

/* ==================== META INFO ==================== */

.tc-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--tc-text-tertiary);
}

.tc-card .tc-meta {
  color: rgba(255,255,255,0.9);
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.tc-meta-item {
  font-weight: 500;
}

.tc-meta-divider {
  color: var(--tc-border);
}

.tc-card .tc-meta-divider {
  color: rgba(255,255,255,0.6);
}

/* ==================== SECTIONS ==================== */

.tc-section {
  margin-bottom: 0;
  padding: 15px 0;
}

.tc-section:first-child {
  padding-top: 0;
}

.tc-section-header {
  margin-bottom: 20px;
}

.tc-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--tc-text-primary);
  margin-bottom: 10px;
}

.tc-section-line {
  width: 60px;
  height: 3px;
  background-color: var(--tc-primary);
}

/* Alternating section backgrounds */
.tc-top-featured {
  background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.tc-categories-section {
  background-color: var(--tc-bg-gray);
  margin-left: -20px;
  margin-right: -20px;
  padding-left: 20px;
  padding-right: 20px;
}

/* Full-width background sections */
@media (min-width: 769px) {
  .tc-top-featured {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }

  .tc-categories-section {
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    padding-left: calc(50vw - 50%);
    padding-right: calc(50vw - 50%);
  }
}

/* ==================== GRID ==================== */

.tc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

/* Top Featured Grid - 1 large vertical + 2 side cards + top headlines all in same row */
.tc-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.75fr 0.75fr;
  gap: 20px;
}

/* Main Featured Card */
.tc-main-card {
  grid-column: 1;
  grid-row: 1;
}

.tc-main-card .tc-card-title {
  font-size: 28px;
  line-height: 1.3;
}

/* Side Content Container - displays vertically in column 2 */
.tc-side-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  grid-column: 2;
  grid-row: 1;
}

/* Side Cards */
.tc-side-card {
  height: 300px;
}

.tc-side-card .tc-card-title {
  font-size: 16px;
  -webkit-line-clamp: 3;
}

/* Top Headlines in column 3 */
.tc-top-headlines {
  grid-column: 3;
  grid-row: 1;
  height: 620px;
  overflow-y: auto;
}

.tc-related-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

/* ==================== CARDS ==================== */

.tc-card {
  background-color: var(--tc-bg-white);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.2s ease;
  border: 1px solid #000000;
  position: relative;
  height: 300px;
}

.tc-main-card {
  height: 620px;
  border: none;
}

.tc-side-card {
  border: none;
}

.tc-card:hover {
  border-color: var(--tc-text-secondary);
}

.tc-card-link {
  display: block;
  color: var(--tc-text-primary);
  position: relative;
  height: 100%;
  width: 100%;
}

.tc-card-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--tc-bg-gray);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.tc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tc-card-content {
  padding: 20px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.tc-card-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0 12px;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

/* ==================== TOP HEADLINES ==================== */

.tc-top-headlines {
  background-color: var(--tc-bg-white);
  border: none;
  padding: 20px;
}

.tc-headlines-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--tc-text-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tc-primary);
}

.tc-headlines-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.tc-headline-item {
  border-bottom: 1px solid var(--tc-border);
  padding: 12px 0;
}

.tc-headline-item:last-child {
  border-bottom: none;
}

.tc-headline-link {
  display: block;
  color: var(--tc-text-primary);
  transition: var(--tc-transition);
}

.tc-headline-link:hover .tc-headline-title {
  color: var(--tc-primary);
}

.tc-headline-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--tc-text-primary);
}

.tc-headline-meta {
  font-size: 11px;
  color: var(--tc-text-tertiary);
}

/* ==================== LIST VIEW ==================== */

.tc-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-list-item {
  border-bottom: 1px solid var(--tc-border);
  padding-bottom: 20px;
}

.tc-list-link {
  display: flex;
  gap: 20px;
  color: var(--tc-text-primary);
}

.tc-list-link:hover .tc-list-title {
  color: var(--tc-primary);
}

.tc-list-image {
  width: 200px;
  height: 120px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--tc-bg-gray);
}

.tc-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--tc-transition);
}

.tc-list-link:hover .tc-list-image img {
  transform: scale(1.05);
}

.tc-list-content {
  flex: 1;
}

.tc-list-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  margin: 10px 0 12px;
  transition: var(--tc-transition);
}

/* ==================== CATEGORIES ==================== */

.tc-categories-section {
  background-color: var(--tc-bg-gray);
  margin-left: -20px;
  margin-right: -20px;
  padding: 50px 20px;
}

.tc-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 15px;
}

.tc-category-card {
  background-color: var(--tc-bg-white);
  border: 1px solid var(--tc-border);
  border-radius: 0;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
  color: var(--tc-text-primary);
}

.tc-category-card:hover {
  border-color: var(--tc-primary);
  background-color: var(--tc-bg-gray);
}

.tc-category-icon {
  font-size: 32px;
  color: var(--tc-primary);
  margin-bottom: 10px;
}

.tc-category-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--tc-text-primary);
}

/* ==================== ARTICLE PAGE ==================== */

.tc-article-container {
  max-width: 780px;
}

.tc-article {
  margin-bottom: 50px;
}

.tc-breadcrumb {
  font-size: 14px;
  color: var(--tc-text-secondary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tc-breadcrumb a {
  color: var(--tc-text-secondary);
}

.tc-breadcrumb a:hover {
  color: var(--tc-primary);
}

.tc-breadcrumb-divider {
  color: var(--tc-border);
}

.tc-article-header {
  margin-bottom: 30px;
}

.tc-article-title {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 15px 0 20px;
  color: var(--tc-text-primary);
  font-family: var(--tc-font-serif);
}

.tc-article-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-top: 1px solid var(--tc-border);
  border-bottom: 1px solid var(--tc-border);
}

.tc-article-stats {
  display: flex;
  gap: 20px;
}

.tc-stat-item {
  font-size: 14px;
  color: var(--tc-text-tertiary);
  display: flex;
  align-items: center;
  gap: 6px;
}

.tc-article-image {
  margin: 30px 0;
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--tc-bg-gray);
}

.tc-article-image img {
  width: 100%;
  height: auto;
}

.tc-article-body {
  font-size: 19px;
  line-height: 1.8;
  color: var(--tc-text-primary);
  font-family: var(--tc-font-serif);
}

.tc-article-body h2,
.tc-article-body h3 {
  font-family: var(--tc-font-sans);
  font-weight: 700;
  margin: 40px 0 20px;
  color: var(--tc-text-primary);
}

.tc-article-body h2 {
  font-size: 32px;
  line-height: 1.3;
}

.tc-article-body h3 {
  font-size: 26px;
  line-height: 1.4;
}

.tc-article-body p {
  margin-bottom: 24px;
}

.tc-article-body ul,
.tc-article-body ol {
  margin: 24px 0;
  padding-left: 30px;
}

.tc-article-body li {
  margin-bottom: 12px;
}

.tc-article-body blockquote {
  border-left: 4px solid var(--tc-primary);
  padding-left: 24px;
  margin: 30px 0;
  font-style: italic;
  color: var(--tc-text-secondary);
}

.tc-article-body a {
  color: var(--tc-primary);
  text-decoration: underline;
}

.tc-article-body a:hover {
  color: var(--tc-primary-dark);
}

.tc-article-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--tc-border);
}

.tc-share-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tc-share-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--tc-text-secondary);
}

.tc-share-buttons {
  display: flex;
  gap: 10px;
}

.tc-share-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: var(--tc-transition);
}

.tc-share-btn:hover {
  opacity: 0.9;
}

.tc-share-fb { background-color: #1877f2; }
.tc-share-tw { background-color: #1da1f2; }
.tc-share-in { background-color: #0077b5; }

.tc-ad-section {
  margin-top: 50px;
}

.tc-related-section {
  margin-top: 60px;
}

/* ==================== CATEGORY PAGE ==================== */

.tc-category-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--tc-border);
}

.tc-category-title {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0 15px;
  color: var(--tc-text-primary);
}

.tc-category-desc {
  font-size: 18px;
  color: var(--tc-text-secondary);
  margin-bottom: 15px;
}

.tc-category-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--tc-text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tc-empty-state {
  text-align: center;
  padding: 80px 20px;
}

.tc-empty-icon {
  font-size: 64px;
  color: var(--tc-text-tertiary);
  margin-bottom: 20px;
}

.tc-empty-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--tc-text-primary);
  margin-bottom: 15px;
}

.tc-empty-text {
  font-size: 18px;
  color: var(--tc-text-secondary);
  margin-bottom: 30px;
}

.tc-btn-primary {
  display: inline-block;
  background-color: var(--tc-primary);
  color: #fff;
  padding: 12px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--tc-transition);
}

.tc-btn-primary:hover {
  background-color: var(--tc-primary-dark);
}

.tc-other-categories {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--tc-border);
}

/* ==================== FOOTER ==================== */

.tc-footer {
  background-color: var(--tc-text-primary);
  color: #999;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.tc-footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.tc-footer-col {
}

.tc-footer-title {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}

.tc-footer-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #999;
}

.tc-footer-heading {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tc-footer-links {
  list-style: none;
}

.tc-footer-links li {
  margin-bottom: 10px;
}

.tc-footer-links a {
  font-size: 14px;
  color: #999;
  transition: var(--tc-transition);
}

.tc-footer-links a:hover {
  color: #fff;
}

.tc-footer-bottom {
  padding-top: 30px;
  border-top: 1px solid #333;
  text-align: center;
  font-size: 13px;
}

.tc-company {
  margin-top: 10px;
  font-size: 12px;
  color: #666;
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  /* Hide the featured top section on mobile */
  .tc-top-featured {
    display: none;
  }

  /* Convert grid cards to compact list */
  .tc-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .tc-card {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: none;
    height: auto;
  }

  .tc-card:last-child {
    border-bottom: none;
  }

  .tc-card:hover {
    transform: none;
    box-shadow: none;
  }

  .tc-card-link {
    display: flex;
    flex-direction: row;
    gap: 15px;
    padding: 15px 0;
    height: auto;
  }

  .tc-card-image {
    width: 120px;
    height: 90px;
    flex-shrink: 0;
    order: 2;
    position: relative;
  }

  .tc-card-image img {
    border-radius: 4px;
  }

  .tc-card-content {
    flex: 1;
    padding: 0;
    order: 1;
    position: relative;
    background: none;
    min-height: auto;
  }

  .tc-card-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 8px;
    -webkit-line-clamp: 3;
    color: var(--tc-text-primary);
    text-shadow: none;
  }

  .tc-card .tc-category-tag {
    color: var(--tc-primary);
    text-shadow: none;
  }

  .tc-card .tc-meta {
    color: var(--tc-text-tertiary);
    text-shadow: none;
  }

  .tc-card .tc-meta-divider {
    color: var(--tc-border);
  }

  .tc-category-tag {
    font-size: 11px;
    padding: 3px 8px;
    margin-bottom: 8px;
  }

  .tc-meta {
    font-size: 12px;
  }

  /* Latest Stories List - make more compact and mobile friendly */
  .tc-list {
    gap: 0;
  }

  .tc-list-item {
    border-bottom: 1px solid var(--tc-border);
    padding-bottom: 15px;
    padding-top: 15px;
  }

  .tc-list-item:first-child {
    padding-top: 0;
  }

  .tc-list-link {
    padding: 0;
    gap: 12px;
  }

  .tc-list-image {
    width: 100px;
    height: 75px;
    flex-shrink: 0;
  }

  .tc-list-title {
    font-size: 16px;
    line-height: 1.4;
  }

  .tc-category-tag {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .tc-meta {
    font-size: 12px;
  }

  .tc-article-title {
    font-size: 32px;
  }

  .tc-article-body {
    font-size: 18px;
  }

  .tc-article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tc-share-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .tc-footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .tc-category-title {
    font-size: 36px;
  }

  /* Browse by Category - compact pills on mobile */
  .tc-categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .tc-category-card {
    padding: 12px 15px;
    font-size: 14px;
    text-align: center;
  }

  .tc-category-name {
    font-size: 14px;
  }

  /* Section headers - more compact */
  .tc-section-title {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .tc-section-line {
    width: 40px;
    height: 2px;
  }

  .tc-section {
    margin-bottom: 30px;
    padding: 15px 0;
  }

  .tc-section-header {
    margin-bottom: 15px;
  }

  /* Container padding */
  .tc-container {
    padding: 0 15px;
  }

  /* Top bar adjustments */
  .tc-topbar {
    font-size: 12px;
  }

  .tc-date {
    font-size: 11px;
  }

  .tc-social-links a {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .tc-logo h1 {
    font-size: 22px;
  }

  .tc-container {
    padding: 0 15px;
  }

  .tc-section-title {
    font-size: 20px;
  }

  .tc-card-title {
    font-size: 15px;
  }

  .tc-card-image {
    width: 100px;
    height: 75px;
  }

  .tc-list-image {
    width: 100px;
    height: 75px;
  }

  .tc-article-title {
    font-size: 26px;
  }

  .tc-category-title {
    font-size: 28px;
  }

  .tc-topbar {
    padding: 8px 0;
  }

  .tc-header {
    padding: 12px 0;
  }

  .tc-meta {
    font-size: 11px;
  }

  .tc-category-tag {
    font-size: 10px;
    padding: 2px 6px;
  }
}
