/**
 * ============================================================================
 * ARTICLE DISPLAY RADIUS - ROUNDED CORNERS FOR ARTICLE CONTENT
 * ============================================================================
 * Border-radius styling for article display components.
 * ============================================================================
 */

/* ========================================================================== */
/* MAIN CONTAINER - ROUNDED CORNERS */
/* ========================================================================== */
.article-display {
  border-radius: 14px; /* Rounded container corners */
}

/* CATEGORY BADGE - ROUNDED CORNERS */
.article-display__category {
  border-radius: 8px; /* Rounded badge corners */
}

/* THUMBNAIL WRAPPER - ROUNDED CORNERS */
.article-display__thumbnail-wrapper {
  border-radius: 12px; /* Rounded wrapper corners */
}

/* THUMBNAIL IMAGE - ROUNDED CORNERS */
.article-display__thumbnail {
  border-radius: 12px; /* Rounded image corners */
}

/* EMPTY STATE LINK - ROUNDED CORNERS */
.article-display__empty-link {
  border-radius: 10px; /* Rounded button corners */
}
